/* 
CSS SECTIONS
1. Typography
2. Preloader
3. General styles
4. Modal
5. Header
6. Footer
7. Homepage
8. Contact
9. Shop
10. Autocomplete
*/


/* 
===========================================================
1. Typography
===========================================================
*/
@font-face {
    font-family: 'avenir-light';
	src:url('../fonts/avenir-light.otf');
}

@font-face {
    font-family: 'basic';
	src:url('../fonts/basic_grotesque.woff');
}

@font-face {
	font-family: 'opti';
	src: url('../fonts/opti.otf'),
	url('../fonts/opti.otf')
}

@font-face {
	font-family: 'poppins';
	src: url('../fonts/Poppins-Regular.ttf'),
	url('../fonts/Poppins-Regular.ttf')
}

@font-face {
	font-family: 'poppins-bold';
	src: url('../fonts/Poppins-Bold.ttf'),
	url('../fonts/Poppins-Bold.ttf')
}



body, html {
	font-size: 14px;
	line-height: 28px;
	color: #666666;
    font-family: 'Lato', sans-serif;
}

/* 
===========================================================
2. Preloader
===========================================================
*/
#preloader {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999999;
    background: rgba(255,255,255,0.9);
}
  
.loader {
    position: absolute;
    width: 5rem;
    height: 10rem;
    top: 50%;
    margin: 0 auto;
    left: 0;
    right: 0;
    transform: translateY(-50%); 
}
  
.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; 
}
  
.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round; 
}
  
@keyframes rotate {
    100% {
        transform: rotate(360deg); 
    } 
}
  
@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0; 
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -3.5rem; 
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -12.4rem; 
    } 
}
  
@keyframes color {
    100%,
    0% {
        stroke: #d62d20; 
    }
    40% {
        stroke: #0057e7; 
    }
    66% {
        stroke: #008744; 
    }
    80%,
    90% {
        stroke: #ffa700; 
    } 
}

/* 
===========================================================
3. General Styles
===========================================================
*/
.header_3 {
    color: #000;
    font-family: 'Lato', sans-serif;
}

header {
    background: transparent;
    background: #F3F3F3;
    padding-top:10px;
}

.header-space {
    padding-left: 30px;
    padding-right: 30px;
}

.home-carousel-border {
    padding: 0px 30px;
    margin-top: 30px;
}

.mt-100 {
    margin-top:100px;
}

.mt-150 {
    margin-top:100px;
}

.space-left-right-15 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.space-left-right-20 {
    padding-left: 28px !important;
    padding-right: 28px !important;
}

.space-left-right-30 {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.hoverable {
  -webkit-transition: -webkit-box-shadow .25s;
  transition: -webkit-box-shadow .25s;
  transition: box-shadow .25s;
  transition: box-shadow .25s, -webkit-box-shadow .25s;
}

.hoverable:hover {
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-1 {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

a {
    text-decoration: none;
    outline: 0;
}

.clearfix {
    clear: both;
    display: block;
}

.relative {
	position:relative;
}

.autocomplete-input {
    background-color: #fff;
    background-image: url(../img/search-interface-symbol.png);
    background-size: 16px 16px;
    background-position: 12px;
    background-repeat: no-repeat;
	border: 1px solid rgb(204,204,204);
    border-radius: 18px;
    box-sizing: border-box;
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    padding: 8px 8px 8px 40px;
    position: relative;
	
    width: 100%;
}

.autocomplete-input::placeholder {
	color:#666666;
}

.autocomplete-input:focus, 
.autocomplete-input[aria-expanded=true] {
    background-color: #fff;
    border-color: rgba(0,0,0,.12);
    box-shadow: 0 2px 2px rgba(0,0,0,.16);
    outline: none;
}





.autocomplete-input2 {
    background-color: #fff;
    background-image: url(../img/search-interface-symbol.png);
    background-size: 16px 16px;
    background-position: 12px;
    background-repeat: no-repeat;
	border: 1px solid rgb(204,204,204);
    border-radius: 6px;
    box-sizing: border-box;
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    padding: 8px 8px 8px 40px;
    position: relative;
	
    width: 100%;
}

.autocomplete-input2::placeholder {
	color:#666666;
}

.autocomplete-input2:focus, 
.autocomplete-input2[aria-expanded=true] {
    background-color: #fff;
    border-color: rgba(0,0,0,.12);
    box-shadow: 0 2px 2px rgba(0,0,0,.16);
    outline: none;
}


.brand-color-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.brand-color-box {
    padding: 3px 8px; 
    border: 1px solid #999;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
}

.brand-select {
    width: 100%;
    height: 41px;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid rgb(204,204,204);
    padding: 8px;
    font-size: 16px;
}


.black-text {
    color: #000000;
}
.white-text {
    color: #ffffff !important;
}

.green-text {
    color: #008744;
}

.red-text {
    color: #cc0000;
}

.grey-text {
    color: #666666;
}

.theme-color {
	color: #B93D59;
}

.block {
	display: block;
}

.breadcrumb {
    font-size: 17px;
    color: #000;
    font-family: 'Lato', 'sans-serif';
}

.breadcrumb a {
    color:#000;
    transition: all 0.3s;
    font-weight: 600;
    margin-right: 10px;
}

.breadcrumb a:hover {
    color:#E02870
}


.default-button-brown {
    display: inline-block;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 44px;
    padding: 0px 25px;
    line-height: 44px;
}
.default-button-brown:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #CD9933;
    border-radius: 4px;
    z-index: -2;
}
.default-button-brown:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #ffffff;
    transition: all 0.3s;
    border-radius: 4px;
    z-index: -1;
}
.default-button-brown:hover {
    color: #000;
}
.default-button-brown:hover:before {
    width: 100%;
}


.default-button {
    display: inline-block;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 44px;
    padding: 0px 25px;
    line-height: 44px;
}
.default-button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E02870;
    border-radius: 4px;
    z-index: -2;
}
.default-button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #CD9933;
    transition: all 0.3s;
    border-radius: 4px;
    z-index: -1;
}
.default-button:hover {
    color: #fff;
}
.default-button:hover:before {
    width: 100%;
}

.header-404  {
    font-size: 50px;
    line-height: 65px;
    color: #000;
}

.header-404-description {
    font-size: 15px;
}

.page-bg {
	height: 450px;
	background-size: cover;
	padding-top: 75px;
	position: relative;
}

.page-bg-2 {
	height: 250px;
	background-size: cover;
	padding-top: 75px;
	position: relative;
    background-position-y: 0;
}

.page-header-text {
	font-family: 'poppins', sans-serif;
    font-size: 19px;
    color: #000;
    margin-right: 30px;
    background: #DE1313;
    display: inline-block;
    padding: 5px 20px;
    margin-top: 100px;
}

.page-content-text {
    font-size:16px;
}

.page-content-text2 {
    font-size:17px;
    line-height: 36px;
}
/* 
===========================================================
custom popup
===========================================================
*/

.black_overlay
{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index:999;
    -moz-opacity: 0.8;
    opacity:.80;
    filter: alpha(opacity=80);
}

.black_overlay2
{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index:999;
    -moz-opacity: 0.8;
    opacity:.80;
    filter: alpha(opacity=80);
}



.white_content 
{
    display: none;
    position: fixed;
    top: 15%;
    left: 29%;
    width: 39%;
    height: 52%;
    padding: 16px 10px;
    background-color: white;
    z-index:1000;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: white_content;
    animation-name: white_content;


}
@keyframes white_content{
    from {
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }
  
    to {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.white_content2 
{
    display: none;
    position: fixed;
    top: 15%;
    left: 29%;
    width: 39%;
    height: 52%;
    padding: 16px 10px;
    background-color: white;
    z-index:1000;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: white_content2;
    animation-name: white_content2;


}

@keyframes white_content2{
    from {
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }
  
    to {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

#sic2
{
  overflow-y: auto;
  height: 100%;
  padding-left: 20px;
  padding-right: 30px;
}

#sic2a
{
  overflow-y: auto;
  height: 100%;
  padding-left: 20px;
  padding-right: 30px;
}




#closebox {
   position: absolute;
    right: 15px;
    top: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
    z-index: 10;
    background: #fff;
    color: #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 27px;
    border:none;
    border: 2px solid #333;
}

#closebox:hover {
    background: #FF6600;
    color: #fff;
    border: 2px solid #FF6600;
}

#closebox2 {
    position: absolute;
    right: 15px;
    top: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
    z-index: 10;
    background: #fff;
    color: #666666;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 27px;
    border:none;
    border: 2px solid #ddd;
}

#closebox2:hover {
    background: #FF6600;
    color: #fff;
    border: 2px solid #FF6600;
}


.close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
    z-index: 10;
    background: #fff;
    color: #666666;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 27px;
    border:none;
    border: 2px solid #ddd;
}

.close-button:hover {
    background: #FF6600;
    color: #fff;
    border: 2px solid #FF6600;
}


/* 
===========================================================
5. Header
===========================================================
*/

/* Hover & focus open */
.navbar .dropdown:hover > .dropdown-menu,
.navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover > .dropdown-submenu-menu,
.dropdown-submenu:focus-within > .dropdown-submenu-menu {
    display: block;
}

.dropdown-menu > li > a {
    color: #333;
}

.dropdown-menu > li > a:hover {
    color: #B93D59;
}

/* --- Sidebar --- */
aside {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.list-group-item a {
    color: #333;
}
.list-group-item a:hover {
    text-decoration: none;
    color: #007bff;
}


.navbar-custom {
    border-top: 1px solid #F5F5F5;
    border-bottom: 1px solid #F5F5F5;
}
.navbar-nav .dropdown-menu {
    position: static;
    padding: 0 16px;
}

.navbar-nav .dropdown-menu a {
    color: #333;
}
.navbar-brand img {
    height: 45px;
    margin-top: 0px;
    transition: all 0.3s;
}


nav.sticky ul {
    padding-top: 7px !important;
    padding-left: 7% !important;
    padding-right: 7% !important;
}

nav.sticky .navbar-brand img {
    height: 50px;
}

.secondbag {
    display: none;
    transition: all 0.3s;
}

nav.sticky .secondbag {
    display: block;
    margin-right: 12px;
}

nav.sticky .shopping-circle-count {
    top:-3px;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:#fff !important;
    border-bottom:1px solid #ddd;
    min-height:95px;
    z-index: 16;
}


.sticky ul li a {
    color: #333333;
    font-family: 'poppins', 'verdana';
}

.sticky ul li a:hover {
    background: transparent;
}

.sticky .top-create-button {
    color: #333;
}

.sticky .top-login-button {
    color: #333;
}

.sticky .logged-in-user {
    background: #42AEF7;
    color: #fff !important;
}

.sticky .logged-in-user-name {
    margin-right: 26px;
    color: #42AEF7;
}

.sticky .custom-dropdown-content {
    display: none;
    position: absolute;
    min-width: 190px;
    z-index: 1;
    right: -20px;
    width: auto;
    text-align: left;
    margin-top:-15px !important;
    padding:0;
}


.sticky div.shopping-cart-2 {
    display: inline-block;
}

.sticky .nav-logo-holder {
    width: 120px;
    height: 45px;
}

.uppercase {
    text-transform: uppercase;
}
.top-white-links {
	color: #666666;
	font-family: 'poppins', sans-serif;
	line-height: 40px;
	font-size: 15px;
	font-weight: 400;
	text-transform: capitalize;
	display: inline-block;
    position: relative;
    z-index: 10;
}

.top-white-links a {
	color: #000;
} 

.top-white-links a:hover {
	color: #B93D59;
}

.top-white-links span {
    margin-left:13px;
}
.top-white-links i {
    margin-right:5px;
}

.shopping-bag {
    position: relative;
    margin-top: 3px;
    display: inline-block;
    margin-right: 8px;
    margin-left: 15px;
}

.shopping-bag-height {
    height: 30px;
    margin-left: 20px;
    margin-top: -12px;
}

.shopping-circle-count {
    background: #000000;
    border: 2px solid #000000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    position: absolute;
    right: 13px;
    top: -8px;
    line-height: 20px;
}

.slash {
    margin-left: 7px !important;
    margin-right: 7px;
}




.custom-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-dropdown:hover .custom-dropdown-content {
    display: block;
}


.custom-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 190px;
    -webkit-box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.2);
    box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.2);
    padding: 0px 0px;
    z-index: 1;
    right: 0;
    width: auto;
    text-align: left;
    margin-top:0px;
}

.custom-dropdown-content a {
    color: black;
    padding: 0px 16px;
    text-decoration: none;
    display: block;
    line-height: 50px;
    transition: all 0.2s;
}

.custom-dropdown-content a:hover,
.custom-dropdown-content a:focus {
    background-color: #b93d59;
    color: #fff;
    display: block;
}


/*  
===========================================================
6. Footer
===========================================================
*/
footer {
    background-color: #222222;
    color: #fff;
    font-size: 15px;
}

hr.footerline {
    border-top: 2px solid #ADADAD;
}

.fueling-dreams {
    font-size:19px;
    color: #B7B7B7;
    line-height: 27px;
    margin-top: 10px;
}

.footer-link-title { 
    text-transform:uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 500;
    margin-top: 3px;
    margin-bottom: 10px;
}

.footer-link {
    list-style-type: none;
    padding-left: 0px;
}

.footer-link li {
    margin-bottom: 7px;
}
.footer-link li a {
    color:#BCBEC0;
}

.footer-link li a:hover {
    color:#E02870;
}

.footer-newsletter-desc {
   color: #BCBEC0;
   font-size: 16px;
   line-height: 26px;
}

.footer-newsletter-form {
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    width: 100%;
    color: #fff;
    padding: 5px 10px;
}

.footer-newsletter-form::placeholder {
    color: #fff;
}


.social-media-links a {
    width: 40px;
    height: 40px;
    text-align: center;
    display: inline-block;
	border: 1px solid #b93d59;
	background: #b93d59;
	background:#fff;
	border: 1px solid #fff;
    color: #333;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-media-links a:hover {
    color: #fff;
	border: 1px solid #F90496;
	background-color: #F90496;
}


.footer-logo {
    height: 42px;
    background: #fff;
    padding: 0px;
    border-radius: 0px;
}

.footer-feature {
    color: #BCBEC0;
	/* border-top: 1px solid rgba(255,255,255, 0.1); */
	padding-top:5px;
	padding-bottom: 5px;
	padding-right: 20px;
}
/* 
===========================================================
7. Homepage
===========================================================
*/
.special-feature-product {
    background:#f5f5f5; 
    padding: 30px; 
    border-radius:10px; 
    margin-left:5px;
}

.two-slider {
    overflow: hidden;
    border-radius: 18px;
}

.two-slider img {
    height: 450px;
    object-fit: cover;
    width: 100%;
}

.one-slider {
    overflow: hidden;
    border-radius: 18px;
}

.one-slider img {
    height: 750px;
    object-fit: cover;
    width: 100%;
}



.out-of-stock-banner {
  position: absolute;
  top: 18px;
  left: -46px;                 /* was right:-45px */
  background: #b80000;         /* deep red */
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  padding: 0px 40px;
  transform: rotate(-45deg);   /* flipped direction */
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 10;
}

#WAButton {
    z-index: 99;
}


.product-flow-item-2 {
    position: relative;
    overflow: hidden;
    
}


.product-flow-item-2 img {
     border: none;
    width: 100%;
}

.product-flow-item-2 h4 {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    font-family: 'poppins', 'sans-serif';
    text-transform: capitalize !important;
    margin-top:10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    height: 4.2em; /* 2 lines × 1.4em */
}

.product-flow-item-2 .price {
    display: block;
    font-family: 'poppins', 'sans-serif';
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.product-flow-item-2 a {
    color: #000;
}

.product-flow-item-2 .cartbutton {
    display: block;
    font-size: 16px;
    color: #000;
    border-radius: 23px;
    border: 1px solid #000;
    padding: 5px 15px;
    text-align: center;
    margin-top: 10px;
}

.product-flow-item-2 .disabled .cartbutton {
    border: 1px solid #ccc !important;
    cursor: not-allowed
}


.product-flow-item {
    position: relative;
    overflow: hidden;
}

.product-flow-item img {
    border: none;
}

.product-flow-item h4 {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    font-family: 'poppins', 'sans-serif';
    text-transform: capitalize !important;
    margin-top:10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    height: 4.2em; /* 2 lines × 1.4em */
}

.product-flow-item .price {
    display: block;
    font-family: 'poppins', 'sans-serif';
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.product-flow-item a {
    color: #000;
}

.product-flow-item .cartbutton {
    display: block;
    font-size: 16px;
    color:#000;
    border-radius: 23px;
    border: 1px solid #000;
    padding: 5px 15px;
    text-align: center;
    margin-top: 10px;
}

.product-flow-item .disabled .cartbutton {
    border: 1px solid #ccc !important;
    cursor: not-allowed
}

.product-flow-item .color-area {
  min-height: 2px;  
}

.product-flow-item .product-size-styles {
  min-height: 2px; 
  display: block;
}


.view-product-detail-black {
    background-color: #000;
    color:#fff;
    border-radius: 18px;
    padding: 10px 20px;
}
.view-product-detail-black:hover,
.view-product-detail-black:focus
 {
    background-color: #999;
    color:#fff;
}

.cat-item {
    background-color: #f8f8f8;
    width: 100%;
    height: 170px;
    position: relative;
    overflow: hidden;
    background-size: cover !important; 
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 10px;
}

.cat-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.1) 50%,     /* left side = transparent */
        rgba(0, 0, 0, 0.5) 100%  /* right side = dark tint */
    );
    z-index: 0;
    pointer-events: none;
}

.cat-item:hover h4 {
    bottom: 30px;
    z-index: 1;
}
.cat-item:hover .sub {
    display: inline-block;
    position: absolute;
    bottom: 10px;
    z-index: 1;
}

.cat-item h4  {
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    color: #fff;
    letter-spacing: 1px;
    bottom: 5px;
    right:10px;
    font-weight: 700;
    width: 100%;
    text-align: right;
    font-family: 'Lato', 'sans-serif';
    transition: all 0.3s;
}

.cat-item .sub {
    position: absolute;
    bottom: -30px;
    width: 100%;
    right:10px;
    text-align: right;
    font-family: 'poppins', 'sans-serif';
    color: #fff;
    transition: all 0.3s;
}

.cat-item img {
    position: absolute;
    right: 0;
    top: 0;
    left:0;
    right: 0;
    transition: all 0.3s;
    transform: scale(1);
}

.cat-item:hover img {
    transform: scale(0.85);
    top: -25%;
}


#categoriesDisplay {
    position: relative;
    min-height: 250px;
    z-index: 0;
}

.categoriesDisplay .item {
    background-color: #f8f8f8;
    width: 98%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background-size: cover !important; 
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.categoriesDisplay .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 0;
}

.categoriesDisplay .item:hover h4 {
    bottom: 30px;
    z-index: 1;
}
.categoriesDisplay .item:hover .sub {
    display: inline-block;
    position: absolute;
    bottom: 10px;
    z-index: 1;
}

.categoriesDisplay .item h4  {
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    color: #fff;
    letter-spacing: 1px;
    bottom: 10px;
    left:0px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    font-family: 'Lato', 'sans-serif';
    transition: all 0.3s;
}

.categoriesDisplay .item .sub {
    position: absolute;
    bottom: -30px;
    width: 100%;
    left:0px;
    text-align: center;
    font-family: 'poppins', 'sans-serif';
    color: #fff;
    transition: all 0.3s;
}

.categoriesDisplay .item img {
    position: absolute;
    right: 0;
    top: 0;
    left:0;
    right: 0;
    transition: all 0.3s;
    transform: scale(1);
}

.categoriesDisplay .item:hover img {
    transform: scale(0.85);
    top: -25%;
}


#categoriesDisplay .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
    padding: 11px;
}

#categoriesDisplay .owl-nav button.owl-next, 
#categoriesDisplay .owl-nav button.owl-prev, 
#categoriesDisplay button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
    font-size: 49px;
    font-weight: 100 !important;
}

#categoriesDisplay .owl-nav {
    margin-top: -45%;
    margin-left: -10%;
}

#categoriesDisplay .owl-prev {
    position: absolute;
    left: -12%;
}

#categoriesDisplay .owl-next {
    position: absolute;
    right: -12%;
}

.arrivals {
    font-size: 16px;
}

.arrival-subheader {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 0px;
}

.arrival-header {
    font-size: 28px;
    color: #000;
    text-transform: uppercase;
    font-family: 'Lato', 'sans-serif';
    font-weight: 700;
}

.cliptext {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit !important;
}

.product-area {
	position: relative;
	cursor: pointer;
	font-family: 'Lato', sans-serif;
	padding: 18px 15px !important;
	transition: all 0.3s;
	background: #242424;
	background: #fff;
	margin-bottom: 0px;
	transition: all 0.3s;
}

.product-area:hover {
	box-shadow: 2px 2px 15px #999;
	z-index: 12;
	position: absolute;
	left:0;
	right: 0;
	top: 0;
	z-index: 15;
}

.product-area:hover .product-pic-area img  {
	transform: scale(1.2);
}

.product-area:hover .product-price {
	transform: translateY(0px);
}

.product-area:hover .actual-price {
	transform: translateY(-40px);
}

.product-area:hover .add-to-cart {
	transform: translateY(-30px);
}

.product-area:hover .product-size-style {
	transform: translateY(-30px);
}

.product-area:hover .product-size-style2 {
	transform: translateY(-30px);
}

.product-area:hover .product-name {
	border-bottom: none;
}

.product-area:hover .product-description {
	display: block;
	opacity: 1;
}

.product-area:hover .product-description-text {
	transform: translateY(0px);
}

.product-area:hover .product-wishlist {
	transform: translateY(0px);
}

.product-area:hover .product-details {
	transform: translateY(0px);
}

.out-of-stock {
	background:#cc0000; 
	color:#fff; 
	font-size:10px; 
	display:inline-block; 
	padding:0 10px; 
	position:absolute; 
	right: 19px;
    top: 27px;
	z-index:10; 
}

.product-pic-area {
	height: 250px;
	width: 100%;
	overflow: hidden;
	text-align: right;
	background: transparent;
	text-align: center;	
}

.product-pic-area img {
	height: 100%;
	width: auto;
	transition: all 0.5s;
}

.product-category {
	font-size: 12px;
	text-align: center;
	color: #ccc;
	padding-top: 5px;
}

.product-name{
	font-size: 20px;
	color: #fff;
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 4px;
	padding-top: 0px;
	text-align: center;
	color:#b93d59;
    
}

.product-price {
	font-size: 18px;
	text-align: center;
	color:  #fd9800;
	color:#4c8689;
	padding-top: 5px;
	height: 50px;
	overflow: hidden;
}

.product-description {
	text-align: center;
	display: none;
	opacity: 0;
}

.product-description-text {
	font-size: 13px;
	font-family: 'Lato', sans-serif;
	color: #666666;
	padding-bottom: 10px;
	border-bottom: 1px solid #f1f1f1;
	margin-bottom: 10px;
	transform: translateY(-40px);
	transition: all 0.3s;

}

.product-wishlist {
	padding: 5px 15px;
	background: #333;
	color: #fff;
	border-radius: 5px;
	display: inline-block;
	font-size: 12px;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	transform: translateY(-80px);
	transition: all 0.3s;
}

.product-wishlist:hover {
	background: #b93d59;
	color: #fff;
}


.product-details {
	padding: 5px 15px;
	background: #333;
	color: #fff;
	border-radius: 5px;
	display: inline-block;
	font-size: 12px;
	font-family: 'Lato', sans-serif;
	margin-left: 10px;
	text-transform: uppercase;
	transform: translateY(-80px);
	transition: all 0.3s;
}

.product-details:hover { 
	background: #b93d59;
	color: #fff;
}

.subcategory-display-box {
	padding:45px 35px 15px 35px;
}

.color-circle {
    width:25px;
    height:25px;
    display: inline-block;
    border:1px solid #666666;
	border-radius:50%;
	cursor:pointer;
	margin-right:10px;
	
}

.color-circle:hover {
    box-shadow: 2px 2px 10px #999;
	border:2px solid #fff;
}

.color-area-holder {
	position:relative; 
	display:inline-block;
}

.color-slash {
	height: 1px;
	background: #000;
	transform: rotate(125deg);
    position: absolute;
    top: 32%;
    left: -5px;
    right: 5px;
}

.color-slash2{
	height: 1px;
    background: #000;
    transform: rotate(125deg);
    position: absolute;
    top: 51%;
    left: -3px;
    right: 2px;
}



.size-circle {
	border:1px solid #ddd;
	color: #666666;
	padding:2px 15px;
	border-radius:15px;
	background:#fff;
	display:inline-block;
	margin-right:5px;
	cursor:pointer;
	font-size:14px;
	font-family:'Lato';
	line-height:25px;
}

.size-circle:hover {
	border:1px solid #999;
	background:#999;
	color: #fff;
}

.size-circle-active {
   	border:1px solid #999;
	background:#999;
	color: #fff;
}
.detail-title {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.strike-through {
	text-decoration: line-through;
}

.color-circle2 {
    width:16px;
    height:16px;
    display: inline-block;
    border:1px solid #ddd;
	border-radius:50%;
	cursor:pointer;
	margin-right:5px;
	
}

.color-circle2:hover {
    box-shadow: 1px 1px 4px #999;
	border:1px solid #fff;
	padding:2px;
}

.color-selection {
    cursor: pointer;
    text-align:center;
}
.color-selection:hover {
    padding:10px;
    box-shadow: 2px 2px 10px #ddd;
    border-radius:5px;
}

.color-selection-active {
    border:3px solid #F90496;
    border-radius:50%;
}

.color-selection-active2 {
	border: 3px solid #b93d59;
    border-radius: 50%;
}



.actual-price {
	display: block;
	transition: all 0.3s;
}

.add-to-cart {
	background: #b93d59;
	color: #fff;
	padding: 8px 10px;
	border-radius: 3px;
	font-size: 12px;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	display: inline-block;
	transform: translateY(40px);
	transition: all 0.3s;
	line-height:22px;
}

.add-to-cart:hover {
	background: #999;
	color: #fff;
}

.product-size-style {
	transform: translateY(40px);
	transition: all 0.3s;
	display: inline-block;
	color:#333;
	font-size: 12px;
	font-family: 'Lato', sans-serif;
	line-height: 20px;
}

.product-size-style select {
	display:inline-block;
	width:70px;
	background: #fff;
	text-transform: uppercase;
	height:39px;
	padding-left:3px;
}

.product-size-style select:hover,
.product-size-style select:focus {
	background:#fff;
	color:#333;

}


.product-size-style2 {
	transform: translateY(40px);
	transition: all 0.3s;
	display: inline-block;
	color:#333;
	font-size: 12px;
	font-family: 'Lato', sans-serif;
	line-height: 20px;
}


.product-size-style2 select {
	display:inline-block;
	width:120px;
	background: #fff;
	text-transform: uppercase;
	height:39px;

}

.product-size-style2 select:hover,
.product-size-style2 select:focus {
	background:#fff;
	color:#333;
}

.product-size-style2 input {
	height:39px;
	border:1px solid #f2f2f2;
	padding-left:5px;
	font-size:14px;
	width:50px;
	text-transform: uppercase;
}

.product-size-style2 input:hover,
.product-size-style2 input:focus {
	background:#fff;
	color:#333;

} 

.theme-bg-small {
	background-color: #b93d59;
	padding: 10px 15px;
	color:#fff;
	text-transform: uppercase;
	border-radius:3px;
}

.theme-bg-small:hover {
	background-color: #666666;
	color:#fff;
}

.login-form-space {
    font-family: 'Lato', 'sans-serif';
    /* color: #333333; */
}

.login-form-space h4 {
    font-size: 30px;
    font-weight: 700;
}

.login-form-space input[type=submit]{
	color:#fff;
	background:#b93d59;
	border:1px solid #b93d59;
	padding: 10px 30px;
	margin-left:2px;
	text-transform: uppercase;
	margin-top:15px;
	z-index:10000;
}
.login-form-space input[type=submit]:hover {
	color:#ccc;
	background:transparent;
	border:1px solid #ccc;
}

.login-form-space textarea {
	background:#f1f1f4;
	height: 70px;
	color: #333;
	width: 100%;
	border-radius: 5px;
	border:none;
	padding: 5px 10px;
	margin-bottom: 20px;
}

.login-form-space select {
	background:#f1f1f4;
	height: 40px;
	color: #333;
	width: 100%;
	border-radius: 5px;
	border:none;
	padding: 5px 10px;
	margin-bottom: 20px;
}

.login-form-space ::-webkit-input-placeholder {
	color: #666666;
}
.login-form-space ::-moz-placeholder {
	color: #666666;
}
.login-form-space:-ms-input-placeholder {
	color: #666666;
}
.login-form-space::placeholder {
	color: #666666;
}


.login-form-space input[type=text],
.login-form-space input[type=email],
.login-form-space input[type=number],
.login-form-space input[type=password] {
	background: #F1F1F4;
    color: #333;
    padding: 5px 15px;
    border: 1px solid #F1F1F4;
    height: 40px;
    width: 100%;
    margin-bottom: 20px;
}


.login-form-space label {
	font-size:14px;
	color: #000;
	font-weight: bold;
}

.login-area-border {
	border: 1px solid #fff;
	padding: 20px 30px;
	margin-top:50px;
	background:#fff;
	color:#666666;
	border-radius:15px;
}

/* CAROUSEL */

#heroCarousel .owl-nav {
    font-size: 40px;
    font-weight: 200;
    position: absolute;
    top: 41%;
    left:0;
    right:0;
}

#heroCarousel .owl-nav .owl-next {
    position: absolute;
    right: 1%;
    background: #b93d59;
    background: rgba(0, 0, 0, 0.30);
    width: 41px;
    height: 41px;
    border-radius: 50%;
    color: #fff;
}

#heroCarousel .owl-nav .owl-prev {
    position: absolute;
    left: 1%;
    background: #b93d59;
    background: rgba(0, 0, 0, 0.30);
    width: 41px;
    height: 41px;
    border-radius: 50%;
    color: #fff;
}

#heroCarousel {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

#heroCarousel .item {
  height: 650px;
  position: relative;
  overflow: hidden;
}

#heroCarousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* crop rather than stretch */
  object-position: center;
}

#heroCarousel .text-area {
    position: absolute;
    left: 7%;
    top: 24%;
}

#heroCarousel .caption {
    color: #fff;
    font-size: 3.6rem;
    line-height: 3.9rem;
    font-weight: 700;
    width: 600px;
    text-align: left;
    /* text-shadow: 1px 1px #333; */
}

#heroCarousel .subtext {
    color: rgba(255,255,255,0.9);
    font-family: 'Lato', 'sans-serif';
    font-size: 1.5rem;
    line-height: 34px;
    font-weight: 200;
    width: 600px;
    text-align: left;
    /* text-shadow: 1px 1px #333; */
}

#heroCarousel .cta {
    background-color: #B93D59;
    color: #fff;
    padding: 7px 20px;
    border-radius: 5px;
    font-weight: 200;
    text-transform: capitalize;
    display: inline-block;
    font-size: 16px;
    font-family: 'poppins', 'sans-serif';
}

#heroCarousel .cta:hover {
   
    background-color: #ffffff;
    color: #000000;
}

[id^="carousel-"] .owl-nav .owl-prev.disabled,
[id^="carousel-"] .owl-nav .owl-next.disabled {
  opacity: 0.5;
  pointer-events: auto;
}


[id^="carousel-"] .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
[id^="carousel-"] .owl-nav .owl-prev,
[id^="carousel-"] .owl-nav .owl-next {
    pointer-events: auto;
    background: rgba(185, 61, 81, 0.9) !important;
    color: #fff !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: 0.3s;
    text-align: center;
}

[id^="carousel-"] .owl-nav .owl-prev:hover,
[id^="carousel-"] .owl-nav .owl-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .9;
    transition: opacity .15s ease;
}

.carousel-control-prev-icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .9;
    transition: opacity .15s ease;
}


.carousel-control-next-icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.carousel-caption {
    position: absolute;
    right: 10%;
    top: 1.25rem;
    bottom: initial;
    left: 10%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}


.carousel-container {
    margin-top: 0;
    position: absolute;
    top: 20%;
    left: 6%;
    right: 0%;
}


.coloured-top {
	color:#000;
	font-size:53px !important;
	font-family: 'opti', serif !important;
	line-height: 56px;
	font-weight: 200;
	width:450px;
}

.under-text {
	color: #000;
	font-size:22px !important;
    line-height: 32px;
	font-family: 'avenir-light', serif !important;
	width:500px;
}

a.slider-call-to-action{
	color:#fff;
	background: #000000;
	border: 1px solid #000000;
	padding: 10px 30px;
	margin-left:2px;
	text-transform: uppercase;
	margin-top:15px;
	z-index:10000;
	display: inline-block;
	border-radius: 5px;
}
a.slider-call-to-action:hover {
	color:#fff;
	background:#666666;
	border:1px solid #666666;
}

.welcome-home-header {
	font-family: 'opti', serif;
	font-size: 40px;
	font-weight: 400;
	color:#000;
}

.welcome-home-text {
	font-family: 'Lato', serif;
	font-size:16px;
	line-height: 24px;
	color:#000;
}

a.slider-call-to-action2{
	color:#fff;
	background: #b93d59;
	border: 1px solid #b93d59;
	padding: 10px 30px;
	margin-left:2px;
	text-transform: uppercase;
	margin-top:15px;
	z-index:10000;
	display: inline-block;
	border-radius: 5px;
}
a.slider-call-to-action2:hover {
	color:#fff;
	background:#666666;
	border:1px solid #666666;
}

a.slider-call-to-action3{
	color:#000;
	background: #fff;
	border: 1px solid #999;
	padding: 10px 30px;
	margin-left:2px;
	text-transform: uppercase;
	margin-top:15px;
	z-index:10000;
	display: inline-block;
	border-radius: 5px;
}
a.slider-call-to-action3:hover {
	color:#fff;
	background:#666666;
	border:1px solid #666666;
}

.light-pink-section {
	background:#F9F8F3;
	padding: 60px 0px !important;
	display: block;
}

.link-pink-section-form  .header {
	font-size: 2.5rem;
	font-weight: 700;
	color: #000;
	margin-top: 0px;
	margin-bottom: 5px;
	text-transform: capitalize;
}

.link-pink-section-form .description {
	font-family: 'Lato', serif !important;
    font-size: 17px;
    line-height: 27px;
    color: #000;
}

.link-pink-section-form input[type=text] {
	height: 40px;
	background:#fff;
	color:#666;
	width:100%;
	padding-left:10px;
	border:1px solid #ccc;
	outline:none;
}

.link-pink-section-form input[type=submit] {
	color: #fff;
    background: #b93d59;
    border: 1px solid #b93d59;
    padding: 10px 30px;
    margin-left: 2px;
    text-transform: uppercase;
    margin-top: 15px;
	border-radius: 5px;
}

.link-pink-section-form input[type=submit]:hover,
.link-pink-section-form input[type=submit]:focus {
	color:#fff;
	background:#666666;
	border:1px solid #666666;
}


.more-details {
    border-bottom: 1px dashed #333;
    color: #333;
}

.showmore {
	font-size:13px;
	font-family:'Lato';
	color:#b93d59;
}

.popup-logo {
	margin-top: 20px;
    height: 80px;
}

#popup-close {
	position: absolute;
	right: 15px;
	top: 15px;
	margin-left: 15px;
	margin-bottom: 15px;
	z-index: 10;
	background: #fff;
	color: #333;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	border:none;
	border: 2px solid #ccc;
	text-align: center;
	line-height: 55px;
}
 
#popup-close:hover {
	background: #b93d59;
	color: #fff;
	border: 2px solid #b93d59;
}

.popup-box {
    width: 60%;
    height: 80%;
    position: fixed;
    left: 19%;
    top: 11%;
    background-color: #fff;
    z-index: 1501;
    box-shadow: 1px 1px 10px #333;
    display: none;
    color: #333;
    text-align: center;
    overflow: hidden;
}

.popup-box ::placeholder {
	color:#666666;
}
.popup-box input[type=text] {
	width:100%;
	height:35px;
	color:#ddd;
	padding:5px 10px;
	color:#000;
	font-family:'Lato', sans-serif;
	font-size:14px;
	margin-bottom:10px;
}

.popup-box-space-in {
	padding: 4% 4%;
}

.popup-box input[type=submit] { 
	width:100%;
	height:35px;
	background:#a21f41;
	color:#fff;
	text-align:center;
	border:none;
}
.popup-box input[type=submit]:hover,
.popup-box input[type=submit]:focus
{ 
	background:#666666;
	color:#fff;
}

.popup-background {
    background: #000;
    opacity: 0.9;
    position: fixed;
    top:0;
    left:0;
    right: 0;
    bottom:0;
    z-index: 1500;
    display: none;
}

.popup-small-text {
	font-size: 15px;
	font-family: 'Lato', verdana;
	margin-bottom:0px;

}

.popup-big-text { 
	font-size: 40px;
	line-height:48px;
	font-weight:600;
	font-family: 'opti', verdana;
    margin-bottom: 0px;
}


.popup-side-bg {
    background: url('../img/popup-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height:90vh;
}

.productsByCategory .nav-tabs {
    display: flex;
    justify-content: center;
}

/* 
============================================
8. Contact us
============================================
*/

.scatter a {
    background: transparent;
    border: 1px solid #999;
    color: #999;
    padding: 11px;
    line-height: 17px;
    width: 40px !important;
    height: 40px !important;;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 10px;
    text-align: center;
    display:inline-block;
}
.scatter a:hover {
    color: #D0940D;
    border: 1px solid #D0940D;
}

/* 
============================================
9. Shop
============================================
*/


.filter-area {
    color: #000;
    font-family: 'Lato', 'sans-serif';
    font-size: 15px;
    padding-top:55px;
}

.filter-area a {
    color: #000;
}

.filter-area a:hover {
    color: #E02870;
}

.filter-area h4 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}

.filter-area .category {
    font-weight: 600;
    line-height: 30px;
}

.filter-area .box {
    background-color: #F3F3F3;
    padding: 15px 15px;
    border-radius: 10px;
}

.filter-btn {
    background: #EFEFEF;
    color: #000;
    padding: 10px 20px;
    font-family: 'Lato', 'sans-serif';
    font-weight: 700;
    transition: all 0.3s;
}
.filter-btn:hover {
    background: #E02870;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Lato', 'sans-serif';
    font-weight: 700;
}

.filter-fields select {
    height: 40px;
    /* border-top:none;
    border-right:none;
    border-left:none; */
    border:2px solid #ccc;
    margin-right: 15px;
    padding: 3px 10px;
}

.filter-fields select:focus {
    outline: none;
}


/*PRODUCTS*/
.cart-displayer {
    padding: 15px; 
    padding-left: 15px; 
    display: none; 
    position: fixed; 
    top:7%; 
    right:5%; 
    z-index:11000;
    width: 350px !important;
    border-radius:15px;
    background: #fff;
}

.view-shopping-button {
	background: #b93d59;
	color: #fff;
	padding: 10px 15px;
	box-shadow: 2px 2px 5px #ccc; 
	text-align: center;
}

.view-shopping-button:hover {
	background: #666666;
	color: #fff;
}

.checkout-button {
	background: transparent;
	color: #b93d59;
	border: 1px solid #b93d59;
	padding: 10px 15px;
	box-shadow: 2px 2px 5px #ccc; 
	text-align: center;
}

.checkout-button:hover {
	background: #666666;
	border: 1px solid #666;
	color: #fff;
}

.shopping-cart-table {
	color: #333;
	font-family: 'Lato',sans-serif;
}


.shopping-cart-table input {
	background: #f1f1f5;
	padding: 10px 15px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	border: none; 
	width: 80px;
	height: 50px;
	font-size: 20px;
}

.decrease {
	border-bottom-right-radius: 10px;
	height:25px;
	background: #f1f1f5;
	color:#333;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
	border-left: 1px solid #ccc;
	text-align: center;
	cursor: pointer;
	display: inline-block;
}
.decrease:hover {
	background: #b93d59;
	color:#fff;
}

.increase {
	border-top-right-radius: 10px;
	height: 25px;
	background: #f1f1f4;
	color:#333;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	text-align: center;
	cursor: pointer;
	display: inline-block;
}

.increase:hover {
	background: #b93d59;
	color:#fff;
}

.input-width {
	width: 80px;
	float: left;
}

.input-width input {
	width: 100%;
}

.quantity-min{
	min-width:160px;
}

.buttons-width {
	width: 40px;
	float: left;
	line-height: 25px;
}


.overline {
	border-top: 1px solid #ddd;
}

.underline {
	border-bottom: 1px solid #ddd;
	line-height: 10px;
}



.cart-totals-display {
	background: #F9F8F3;
	padding: 30px;
	min-height: 200px;
	color:#333;
}

.cart-header {
	font-size:25px;
	color: #333;
	border-bottom: 4px solid #ccc;
	padding-bottom: 10px;
}

.cart-subitems {
	font-size: 15px;
	color: #333;
	padding-top: 10px;
}

.cart-subtotal {
	font-size: 18px;
}

.cart-total {
	font-size: 24px;
}

.shipping-location-form input[type=text],
.shipping-location-form select {
	background:#4B4B4B;
	color:#fff;
	height: 30px;
	margin-bottom: 10px;
	width:100%;
	border:none;
	padding:6px;
}


.shipping-location-form input[type=text]:focus,
.shipping-location-form select:focus {
	background: #fff;
	color: #000;
}

[type="radio"]:checked+label:after, [type="radio"].with-gap:checked+label:after {
    background-color: #FF9900;
}

[type="radio"]:checked+label:after, [type="radio"].with-gap:checked+label:before, [type="radio"].with-gap:checked+label:after {
    border: 2px solid #FF9900;
}

.product-thumbnail {
	height: 80px;
	border:1px solid #ddd;
	text-align:center;
	background: #F1F2F0;
}

.small-description {
	font-size:14px;
	font-family:'Lato', 'sans-serif';
}


.space-in {
	padding-left:55px !important;
	padding-right:55px !important;
}

.zoom-area img {
    width:100%;
    height:auto;
}




#product-magnify .item img {
	border:1px solid #ddd;
	padding:5px;
	background:#fff;
	cursor:pointer;
	opacity:1.0;
	transition:all 0.3s linear;
}

#product-magnify .item img:hover {
	opacity:0.6;
	box-shadow:2px 2px 10px #ccc;
}

.ash-page-bg {
	background:#F9F8F3;
	color:#000;
	min-height: 350px;
}

.ash-page-bg  .category-header-text {
	font-family: 'opti', sans-serif;
	font-size: 54px;
	line-height: 56px;
	color: #000;
	text-align: center;
	margin-top:9%;
	position: relative;
	margin-bottom: 10px;
}

.ash-page-bg  .category-header-text2 {
	font-family: 'opti', sans-serif;
	font-size: 20px;
	line-height: 32px;
	color: #000;
	text-align: center;
	margin-top:9%;
	position: relative;
	margin-bottom: 10px;
}


.product-detail-add-area {
	/* border: 4px solid #b93d59;
	border-radius: 10px;
	padding:20px 25px; */
}

.product-detail-add-area-inner {
	display: block;
}

.product-detail-add-area-inner .action {
	background: #b93d59;
	color:#fff;
	border-radius: 10px;
	padding: 10px 20px;
	display: inline-block;
	margin-left: 10px;
}
.product-detail-add-area-inner .action:hover {
	background: #666666;
	color:#fff;
}

.product-detail-add-area-inner input {
    background: #f1f1f4;
    padding: 10px 15px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: none;
    width: 80px;
    height: 50px;
    font-size: 20px;
}

.product-detail-name {
	font-size:25px;
	color:#333;
	font-family: 'Lato', sans-serif;
	text-transform: capitalize;
}

.product-detail-price {
	font-size: 20px;
	font-family: sans-serif;
	font-weight: 200;
    color: #4c8689;
}
.include {
	font-family: 'Lato', 'sans-serif';

	font-size:16px;
	line-height:27px;
}

.sub-head {
	font-size:13px;
	font-family:'Lato';
	color:#333;
}

.sub-desc {
	font-size:16px;
	line-height: 27px;
	color:#333;
	text-align:center;
	padding-left:55px;
	padding-right:55px;
	font-family:'Lato';
}
.product-detail-description {
	margin-top:10px;
	font-size:14px;
	font-family: 'Lato';
	line-height:22px;
    color: #000;
}

/* 
CHECKOUT
*/
.login-show-area {
	font-size:20px;
	color: #333;
	font-family: 'Lato', sans-serif;
	font-weight: 200;
	margin-top:20px;

}
.login-show-area .header {
	font-size:20px;
	color: #333;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
}	

.login-show-area a {
	color: #E02870;
}	

.login-show-area a:hover {
	color: #666666;
}

.login-show-area2 {
	font-size:20px;
	color: #333;
	font-family: 'Lato', sans-serif;
	font-weight: 200;
	margin-bottom: 10px;

}

.field-icon {
    float: right;
    margin-left: -25px;
    margin-top: -47px;
    position: relative;
    z-index: 2;
    color: #666666;
    padding-right: 12px;
}

.field-icon2 {
    float: right;
    margin-left: -25px;
    margin-top: -47px;
    position: relative;
    z-index: 2;
    color: #666666;
    padding-right: 12px;
}

.field-icon3 {
    float: right;
    margin-left: -25px;
    margin-top: 11px;
    position: relative;
    z-index: 2;
    color: #666666;
    padding-right: 12px;
}

.toggle-password {
    cursor: pointer;
}


.checkout-link {
	color:#b93d59;
}

.checkout-link:hover {
	color:#333;
}


.disabled {
	cursor:not-allowed;
}


.delItem {
    color: #cc0000;
}

.show_login_form {
    color: #E02870;
}

.delivery-background {
    background-color: #b93d59; 
    padding:20px;
}

#delivery-options {
    display: none;
}

#delivery-options h4 {
    font-size: 20px;
    width: 550px;
    margin-right: 30px;
}

#delivery-options p {
    font-size: 15px;
    width: 550px;
    margin-right:30px;
}

.list-group .badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
}

.badge-primary {
    background-color: #7571f9;
}

.badge {
    font-weight: 400;
}

.green-notification-area {
	padding: 40px;
	font-size: 18px;
	background: #8CBD8C;
	color:#ffffff;
}

.dotted-lines {
	border: 3px dashed #666666;
	padding: 25px;
}

.side-dotted {
	border-right: 1px dashed #666666;
}

.side-line{
	border-right: 1px solid #ddd !important;
}


.side-line2{
	border-left: 1px solid #ddd !important;
}

.side-line:last-child{
	border-right: none;
}

.bottom-line{
	border-bottom: 1px solid #ddd;
}

.make-payment {
	background: #8CBD8C;
    color: #fff;
    padding: 0px 10px;
    border-radius: 10px;
    margin-top: 5px;
    display: inline-block;
    font-size: 14px;
}

.make-payment:hover {
	background: #666666;
	color: #fff;
}

.received-item {
	display: inline-block;
	padding: 15px 30px;
	min-height: 80px;
	color: #000;
} 

/*  
========================================
10. Autocomplete
========================================
*/

/* Custom style for autocomplete dropdown */
.ui-menu .ui-menu-item{
    background-color: #fff;
    margin-right: 20px;
    width: initial;
    border-bottom: 1px solid #ccc;
    padding:10px;
    z-index: 10000;
    list-style-type: none;
}
.ui-menu {
    margin: 3px;
    width: 600px;
    z-index: 10000;
}
.ui-autocomplete-row a{
    display: inline-block;
    text-decoration: none;
    width: 100%;
    color: #333;
}
.ui-autocomplete-row a span{
    padding: 10px;
    font-size: 15px;
    text-align: center;
}
.ui-autocomplete-row a img{
    vertical-align: middle;
}
.ui-state-active, .ui-widget-content .ui-state-active {
    border: none;
    background: #EFEFEF;
    color: inherit;
}
.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
    margin: 0;
}

.trackList {
    list-style-type: none;
}

.trackList li{
    display: block;
    color: #ccc;
    line-height: 45px;
}

.hh-grayBox {
	background-color: #F8F8F8;
	margin-bottom: 20px;
	padding: 35px;
  margin-top: 20px;
}
.pt45{padding-top:45px;}
.order-tracking{
	text-align: center;
	width: 33.33%;
	position: relative;
	display: block;
}
.order-tracking .is-complete{
	display: block;
	position: relative;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	border: 0px solid #AFAFAF;
	background-color: #f7be16;
	margin: 0 auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
	z-index: 2;
}
.order-tracking .is-complete:after {
	display: block;
	position: absolute;
	content: '';
	height: 14px;
	width: 7px;
	top: -2px;
	bottom: 0;
	left: 5px;
	margin: auto 0;
	border: 0px solid #AFAFAF;
	border-width: 0px 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
}
.order-tracking.completed .is-complete{
	border-color: #27aa80;
	border-width: 0px;
	background-color: #27aa80;
}
.order-tracking.completed .is-complete:after {
	border-color: #fff;
	border-width: 0px 3px 3px 0;
	width: 7px;
	left: 11px;
	opacity: 1;
}
.order-tracking p {
	color: #A4A4A4;
	font-size: 16px;
	margin-top: 8px;
	margin-bottom: 0;
	line-height: 20px;
}
.order-tracking p span{font-size: 14px;}
.order-tracking.completed p{color: #000;}
.order-tracking::before {
	content: '';
	display: block;
	height: 3px;
	width: calc(100% - 40px);
	background-color: #f7be16;
	top: 13px;
	position: absolute;
	left: calc(-50% + 20px);
	z-index: 0;
}
.order-tracking:first-child:before{display: none;}
.order-tracking.completed:before{background-color: #27aa80;}

.secondbag {
    display: none;
    transition: all 0.3s;
}

nav.sticky ul {
    padding-top: 7px !important;
    padding-left: 0% !important;
    padding-right: 0% !important;
}

nav.sticky .navbar-brand img {
    height: 40px;
}

nav.sticky .secondbag {
    display: block;
    margin-right: 50px;
}

nav.sticky .shopping-circle-count {
    top:-13px;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:#f3f3f3 !important;
    border-bottom:1px solid #ddd;
    min-height:65px;
    z-index: 16;
    padding-bottom: 10px;
}


.sticky ul li a {
    color: #333333;
    font-family: 'poppins', 'verdana';
}

.sticky ul li a:hover {
    background: transparent;
}

.sticky .top-create-button {
    color: #333;
}

.sticky .top-login-button {
    color: #333;
}

.sticky .logged-in-user {
    background: #42AEF7;
    color: #fff !important;
}

.sticky .logged-in-user-name {
    margin-right: 26px;
    color: #42AEF7;
}

.sticky .custom-dropdown-content {
    display: none;
    position: absolute;
    min-width: 190px;
    z-index: 1;
    right: -20px;
    width: auto;
    text-align: left;
    margin-top:-15px !important;
    padding:0;
}


.sticky div.shopping-cart-2 {
    display: inline-block;
}

.sticky .nav-logo-holder {
    width: 120px;
    height: 45px;
}

.page-bg-2 {
    height: 250px;
    background-size: cover;
    padding-top: 75px;
    position: relative;
    background-position-y: -94px;
}

.navbar-brand {
    margin-right: 0px;
}

.navbar-brand img {
    height: 66px;
    margin-top: 0px;
    transition: all 0.3s;
}

.nav-link {
    color: #000;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    min-width: 220px;
}

.navbar-custom {
    border-top: 1px solid #ede6e6;
    border-bottom: 1px solid #ede6e6;

    border: none;
}

.navbar-brand {
    margin-right: 0px;
}

.navbar-brand img {
    height: 36px;
    margin-top: 0px;
    transition: all 0.3s;
}

.navbar-expand-lg .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.nav-link {
    color: #000;
}

nav ul li a {
    display: inline-block;
    color: #000000;
    font-family: 'poppins', 'verdana';
    margin-top:5px;
    border-radius: 0px;
    font-size: 14px !important;
    font-weight: 500;
    padding-left:20px; 
    padding-right:20px;
    padding-left: initial; 
    padding-right: initial;
    position:relative;
    line-height:25px;
    opacity: 1;
    transition: all 0.3s;
}

nav ul li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #333;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

nav ul li a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

nav ul li a:hover {
    background:transparent;
}


.shopping-bag-height {
    height: 24px;
    margin-left: 0px;
    margin-top: -12px;
}

footer h4 {
    font-size: 35px;
    line-height: 43px;
    font-weight: 500;
    color: #fff;
}


.navbar-brand img {
    height:36px;
    width: auto;
}

/* Default (desktop + tablet) */
.page-bg-2 {
    background-repeat: no-repeat;
    background-color: #740D16;
    background-position-y: 48%;
    background-size: cover;
    background-image: url('../img/lighthouse-product-pic.jpg'); 
}


/* RESPONSIVE */

@media screen and (min-width: 320px) and (max-width: 535px)  { 

    .page-bg-2 {
        background-image: url('../img/mobile-banner.png');
        background-position: center;
        background-size: cover;
    }

    .page-header-text {
        font-family: 'poppins', sans-serif;
        font-size: 19px;
        color: #000;
        margin-right: 2px;
        background: #DE1313;
        display: inline-block;
        padding: 5px 20px;
        margin-top: 126px;
    }

    .page-header-text {
        font-family: 'poppins', sans-serif;
        font-size: 16px;
        color: #000;
        margin-right: 2px;
        background: #DE1313;
        display: inline-block;
        padding: 5px 20px;
        margin-top: 130px;
    }


    .top-white-links span {
        margin-left: 6px;
    }

    .shopping-bag {
        position: relative;
        margin-top: 3px;
        display: inline-block;
        margin-right: 8px;
        margin-left: 15px;
    }

    .shopping-circle-count {
        background: #000000;
        border: 2px solid #000000;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: inline-block;
        text-align: center;
        color: #fff;
        font-size: 12px;
        position: absolute;
        right: 8px;
        top: -1px;
        line-height: 16px;
    }

    nav.sticky .navbar-brand img {
        height: 22px;
    }

    nav.sticky .shopping-circle-count {
        top: -1px;
    }

    #heroCarousel .text-area {
        position: absolute;
        left: 7%;
        top: 29%;
        z-index: 11;
    }

    #heroCarousel .caption {
        color: #fff;
        font-size: 1.5rem;
        line-height: 1.6rem;
        font-weight: 700;
        width: 233px;
        text-align: left;
        z-index: 11;
    }

    #heroCarousel .subtext {
        color: rgba(255, 255, 255, 0.9);
        font-family: 'Lato', 'sans-serif';
        font-size: 1.1rem;
        line-height: 20px;
        font-weight: 200;
        width: 230px;
        text-align: left;
        z-index: 10;
    }

    #heroCarousel .cta {
        background-color: #B93D59;
        color: #fff;
        padding: 0px 10px;
        border-radius: 5px;
        font-weight: 200;
        text-transform: capitalize;
        display: inline-block;
        font-size: 12px;
        font-family: 'poppins', 'sans-serif';
    }

    #heroCarousel .owl-nav {
        font-size: 40px;
        font-weight: 200;
        position: absolute;
        bottom: 16%;
        left: 0;
        right: 0;
        top: initial;
        z-index: 10;
    }

    #heroCarousel .owl-nav .owl-prev {
        position: absolute;
        left: auto;
        right: 18%;
        background: #b93d59;
        background: rgba(0, 0, 0, 0.30);
        width: 41px;
        height: 41px;
        border-radius: 50%;
        color: #fff;
    }

    /* Add gradient overlay on each slider item */
    #heroCarousel .item {
        position: relative;
        overflow: hidden;
    }

    #heroCarousel .item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;

        /* DARK gradient from bottom fading up */
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 30%,
            rgba(0, 0, 0, 0.10) 70%,
            rgba(0, 0, 0, 0) 100%
        );

        z-index: 1;
    }


    .shopping-bag-height {
        height: 17px;
        margin-left: 0px;
        margin-top: -5px;
    }

    .navbar-toggler {
        padding: 4px;
    }
    .navbar-brand img {
        height: 22px;
    }

    #heroCarousel .item {
        height: 360px;
    }
    
    .cat-item {
        background-color: #f8f8f8;
        width: 100%;
        height: 95px;
        position: relative;
        overflow: hidden;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        border-radius: 10px;
    }

    .cat-item h4 {
        font-size: 12px;
        text-transform: uppercase;
        position: absolute;
        color: #fff;
        letter-spacing: 1px;
        bottom: 2px;
        right: 7px;
        font-weight: 700;
        width: 100%;
        text-align: right;
        font-family: 'Lato', 'sans-serif';
        transition: all 0.3s;
        width: 100px;
    }


    .special-feature-product {
        background: #f5f5f5;
        padding: 14px;
        border-radius: 10px;
        margin-left: 5px;
    }

    .space-in {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top:20px;
    }

    .two-slider img {
        height: 266px;
        object-fit: cover;
        width: 100%;
        margin-bottom: 20px;
    }

    .one-slider img {
        height: 311px;
        object-fit: cover;
        width: 100%;
    }

    .light-pink-section {
        background:#F9F8F3;
        padding: 40px 15px !important;
        display: block;
    }

    .link-pink-section-form  .header {
        font-size: 1.9rem;
        font-weight: 700;
        color: #000;
        margin-top: 0px;
        margin-bottom: 5px;
        text-transform: capitalize;
    }

    .default-button-brown {
        display: inline-block;
        border-radius: 4px;
        color: #fff;
        font-size: 15px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        z-index: 1;
        height: 44px;
        padding: 0px 10px;
        line-height: 44px;
    }

    footer {
        background-color: #222222;
        color: #fff;
        font-size: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    footer h4 {
        font-size: 15px;
        line-height: 23px;
        font-weight: 500;
        color: #fff;
    }

    .username-truncate {
        max-width: 90px;
        display: inline-block;
        white-space: nowrap; 
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }

    .two-slider {
        overflow: hidden;
        border-radius: 0px;
    }

    .one-slider {
        overflow: hidden;
        border-radius: 16px;
    }

    .one-slider img {
        height: 311px;
        object-fit: initial;
        width: initial;
        margin-left: -24px;
    }

        

}




/* FINAL EDITS */

/* 
==================================================
   Product image frame + hover zoom (FINAL)
================================================== */

/* Fixed image frame (border does NOT scale) */
.product-img-frame {
    display: block;
    height: 165px;
    background: #fff;

    border: 1px solid #ddd;
    border-radius: 6px;

    padding: 6px;
    overflow: hidden;     /* keeps zoom inside frame */
}

/* Image fits cleanly inside frame */
.product-img-frame img {
    width: 100%;
    height: 100%;

    object-fit: contain;  /* no distortion */
    display: block;

    transition: transform 0.35s ease;
}

/* Hover zoom – image only */
.product-flow-item:hover .product-img-frame img {
    transform: scale(1.08);
}

/* Card itself stays clean (no border) */
#carousel-featured-products .product-flow-item,
[id^="carousel-"] .product-flow-item {
    border: none;
    padding: 5px 0;
    border-radius: 0;
}

/* 
==================================================
   Same-height + hover for product-flow-item-2
================================================== */

/* Ensure equal-height cards */
.product-flow-item-2 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Reuse the same image frame */
.product-flow-item-2 .product-img-frame {
    display: block;
    height: 180px;
    background: #fff;

    border: 1px solid #ddd;
    border-radius: 6px;

    padding: 6px;
    overflow: hidden;
}

/* Image behavior */
.product-flow-item-2 .product-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

    transition: transform 0.35s ease;
}

/* Hover zoom (image only) */
.product-flow-item-2:hover .product-img-frame img {
    transform: scale(1.08);
}


/* 
===========================
Floating Cart + Slide Drawer
=========================== 
*/

.floating-cart-btn{
  position: fixed;
  right: 18px;
  top: 20%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #B93D59;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.20);
}

.floating-cart-btn i{
  font-size: 20px;
}

.floating-cart-count{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Overlay */
.cart-drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999998;
  display: none;
}

/* Drawer */
.cart-drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  z-index: 999999;
  transform: translateX(110%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 35px rgba(0,0,0,0.18);
}

.cart-drawer.open{
  transform: translateX(0);
}

.cart-drawer-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid #eee;
}

.cart-drawer-title{
  font-weight: 700;
  color: #111;
}

.cart-drawer-close{
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.cart-drawer-body{
  padding: 12px 14px;
  overflow: auto;
  flex: 1;
}

.cart-drawer-footer{
  border-top: 1px solid #eee;
  padding: 12px 14px;
  display: grid;
  gap: 10px;
}

.cart-drawer-checkout-btn{
  display: block;
  text-align: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: #B93D59;
  color: #fff;
  font-weight: 700;
}

.cart-drawer-viewcart-link{
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  color: #111;
  font-weight: 600;
}

/* Small screens: keep button a bit lower */
@media (max-width: 576px){
  .floating-cart-btn{
    top: auto;
    bottom: 90px;
    transform: none;
  }
}

.clear-cart-button{
    width: 100%;
    margin-top: 0px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.clear-cart-button:hover{
    background: #f5f5f5;
}

.small-line-height {
    line-height: 15px;
}