@charset "utf-8";
/* CSS Document */
/******************************
Main Color #2E5984
[Table of Contents]
1. Fonts
2. Body and some general stuff
3. Overall Header
	3.1 Navbar Top Menu
	3.2 Main Header
	3.3 Main Navigation
	3.4 Search
	3.5 Shopping Cart
  3.6 Off Canvas Items
4. Carousel/Banner
  4.1 Carousel
  4.2 Banners
5. Characteristics
  5.1 Product Card
6. Deals of the week
	6.1 Deals
	6.2 Featured
7. Popular Categories
8. Banner 2
9. Hot New Arrivals
10. Hot Best Sellers
11. Adverts
12. Trends
13. Latest Reviews
14. Recently Viewed
15. Brands
16. Newsletter
17. Shopping Cart
18. Footer

******************************/
/*
If you are designing your layout with a mobile-first approach, then use min-width breakpoints and work your way up.
Bootstrap has breakpoints at 576px, 768px, 992px, and 1200px.
This breakpoint means the CSS will apply when the device width is 768px and above.
@media only screen (min-width: 768px){
...
}
This breakpoint means the CSS will apply when the device width is 767px and below.
@media only screen (max-width: 767px){
...
}
*/
:root {
  --color-primary--darker-3: #152d42;
  --color-primary--darker-2: #19354e;
  --color-primary--darker-1: #1c3d59;
  --color-primary: #204565;
  --color-primary--lighter-1: #244d71;
  --color-primary--lighter-2: #27557c;
  --color-primary--lighter-3: #2b5d88;
  
  --color-accent--darker-3: #395c7c;
  --color-accent--darker-2: #3d6486;
  --color-accent--darker-1: #426c91;
  --color-accent: #47749b;
  --color-accent--lighter-1: #4c7ca5;
  --color-accent--lighter-2: #5184af;
  --color-accent--lighter-3: #5c8bb4;
  
  --color-footer-bg: #525a5d;
}
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
#common-home, #account-login, #account-return, #checkout-cart, #checkout-checkout,
#information-contact, #information-information, #information-sitemap, #product-product,
#product-search, #product-category, #error-not-found {
  margin-top: 160px;
}
@media (min-width: 1401px) {
  .container {
    width: 1400px;
  }
}

.form-control, .input-lg,
.navbar,
.breadcrumb,
.well
{
  border-radius: 3px;
}

.form-control {
  border: 1px solid #e9e9e9;
}
/*********************************
3. Overall Header
*********************************/
header {
  background-color: #fff;
  /*border-bottom: 1px solid #ddd;*/
  padding: 0;
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: top 0.3s;
}
/*********************************
3.1 Navbar Top Menu
*********************************/
#navbar-top {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  transition: transform 0.3s;
}
#navbar-top.hide {
  top: -40px;
}
#navbar-top.pushed-up {
  transform: translateY(-32px);
}
#navbar-top #form-currency .currency-select, #navbar-top #form-language .language-select {
  text-align: left;
  color: #333;
  font-size: 13px;
  padding: 3px 16px;
}
#navbar-top #form-currency .currency-select:hover, #navbar-top #form-language .language-select:hover {
  text-shadow: none;
  text-decoration: none;
  color: var(--color-primary);
}
#navbar-top .btn-group > .btn-link, #navbar-top > ul > li, #navbar-top > ul > li > a {
  color: #fff;
  background: none;
  text-decoration: none;
}
#navbar-top .btn-group > .btn-link:hover, #navbar-top > ul > li > a:hover {
  color: #E0E0E0;
}
#navbar-top .dropdown-menu a {
  text-shadow: none;
  font-size: 13px;
}
#navbar-top .btn-link strong {
  font-size: 14px;
  line-height: 14px;
}
#navbar-top .language-currency {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar-top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.navbar-top-section {
  display: flex;
  align-items: center;
}
.navbar-top-section > ul > li, .navbar-top-section > ul > li > a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}
.navbar-top-item {
  padding: 5px;
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 0;
}
.navbar-top-item i {
  margin-right: 5px;
}
.navbar-top-item > li > a:hover {
  color: #E0E0E0;
}
@media (max-width: 576px) {
  .contact-section {
    display: none;
  }
  .offcanvas {
    width: 98%;
  }
}
/* Add this to your CSS to fix the dropdown z-index issue */
.navbar-top-section.currency-section .btn-group {
  position: relative;
}

/* Optionally, ensure the dropdown menu is above other content */
.navbar-top-section.currency-section .dropdown-menu {
  z-index: 1050 !important;
}


/*********************************
3.2 Main Header
*********************************/
#header.sticky-header {
  top: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.header-section {
  display: flex;
}
.header-item {
  padding: 0px 15px;
  font-size: 14px;
  margin-top: auto;
  margin-bottom: auto;
}
.header-item a {
  text-decoration: none;
}
.header-item a:hover {
  color: #6C6C6C;
}
.header-item + .header-item {
  margin-left: 5px;
}
/*.header-item .is-site-header-item-selected {
  color: #1D1C1C;
  background-color: #415F69;
  border-radius: 4px;
}*/
.header-logo {
  min-width: 180px;
}
.header-logo img {
  max-height: 50px;
}
@media (max-width: 767px) {
  .header-logo img {
    max-height: 32px;
  }
  .header-icon {
    display: none;
  }
  /*.category-header {
    display: block;
    min-height: 40px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 10px;
  }*/
}
.header-button {
  cursor: pointer;
  color: #1D1C1C;
}  
.header-mobile-button {
  display: none;
  cursor: pointer;
  color: #1D1C1C;
}  
.header-mobile-button button {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}
.header-mobile-button button i {
  font-size: 24px;
  color: #1D1C1C;
  display: block;
  margin: 0 auto;
}
.header-mobile-button .btn {
  border: none;
  background: none;
  padding: 0;
}
.header-icon {
  color: var(--color-primary);
}
.fa-stack .header-icon {
  /*height: 1.7em;*/
  font-size: 20px;
}
.fa-heart-o.header-icon {
  line-height: 1em;
}
@media (max-width: 1200px) {
  .header-icon-label {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-icon {
    display: none;
  }
}
@media (max-width: 1400px) {
  .header-icon-label {
    display: none;
  }
}

/*********************************
3.4 Search
*********************************/
.header-search {
  overflow: hidden;
}
.header-section.header-search {
  flex: 2 1 0;
  min-width: 220px;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .header-section.header-search {
    flex: 3 1 0;
    max-width: 900px;
  }
}
.header-search .search-box {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 10px;
  background: #fff;
  min-height: 40px;
  position: relative;
  box-sizing: border-box;
  padding: 0;
}
.header-search .search-box input {
  flex: 1 1 0;
  padding: 8px 12px;
  border: none;
  outline: none;
  background: transparent;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  font-size: 16px;
  margin: 0;
}
.header-search .search-box .input-group-btn {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: 0;
}
.header-search .search-box button {
  background-color: #204565;
  color: white;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  height: 100%;
  box-sizing: border-box;
  border-radius: 0 5px 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header-search .search-box button i {
  font-size: 18px;
  line-height: 1;
}
.header-search .search-box button:hover {
  background-color: #2b5d88;
}
.header-search .search-box .input-group-btn,
.header-search .search-box .input-group-btn:last-child > .btn {
  width: auto;
  white-space: nowrap;
  float: none;
  display: flex;
  align-items: stretch;
}



@media (max-width: 991px) {
  .header-mobile-button {
    display: block;
  }
  #header {
    top: 32px;
  }
  .content {
    margin-top: 122px;
  }
  .header-section + .header-section {
    margin-left: 10px;
  }
  .header-item {
    padding: 5px 5px;
  }
  .header-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(0);
    max-height: 0;
    transition: transform 0.5s ease-in-out, max-height 0.5s ease-in-out;
    z-index: 9;
    border-top: 1px solid #ddd;
    background-color: #f8f9fa;
  }
  .header-search.mobile-hidden {
    transform: translateY(0);
    max-height: 0;
    margin-left: 0;
  }
  .header-search.mobile-visible {
    transform: translateY(0);
    max-height: 200px;
    margin-left: 0;
    border-bottom: 1px solid #ccc;
  }
  .header-search form {
    width: 100%;
  }
  .header-search input {
    width: 100%;
    box-sizing: border-box;
  }
  .header-search button {
    flex-shrink: 0;
  }
  #menu.navbar {
    display: none !important;
  }
  #common-home, #account-login, #account-return, #checkout-cart, #checkout-checkout,
  #information-contact, #information-information, #information-sitemap, #product-product,
  #product-search, #product-category, #error-not-found  {
    margin-top: 100px;
  }
}






/*********************************
3.5 Shopping Cart
*********************************/
#cart {
  margin-top: 10px;
}
@media (min-width: 575px) {
  #cart {
    max-width: 280px;
  }
}

@media (min-width: 992px) {
  #cart {
    max-width: 100%;
  }
}

.cart-button {
  /*reset default button styles*/
  /*https://css-tricks.com/overriding-default-button-styles/*/
  margin: 0; 
  overflow: visible;
  text-transform: none;
  background: none;
  border: none;
  
  line-height: 26px; /*vertical alignment*/
}

.cart-button:hover {
  background: none;
  border: none;
}

.cart-quantity-wrapper {
  position: relative;
  width: 28px;
  float: left;
  margin-right: 20px;
}

.cart-icon {
  font-size: 32px;
}
#cart-quantity {
  position: absolute;
  display: inline-block;
  top: -4px;
  right: -15px;
  width: 20px;
  height: 20px;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
  color: #f3f3f3;
}

.cart-icon {
  color: var(--color-primary);
}

#cart-quantity {
  background: var(--color-primary);
}

.cart-button:hover .cart-icon {
  color: var(--color-primary);
}

.cart-button:hover #cart-quantity {
  background: var(--color-primary);
}

.cart-total-wrapper {
  float: right;
}

#cart-total {
  font-size: 18px;
}

.cart-dropdown-container {
  background: #f8f8f9;
  z-index: 1001;
  overflow-y: auto;
  max-height: 650px;
  scrollbar-width: thin;
  overflow-x: hidden;
  
  padding: 28px;
}
@media (max-width: 509px) {
  .cart-dropdown-container {
    width: calc(100vw - 20px);
  }
}
@media (min-width: 510px) {
  .cart-dropdown-container {
    min-width: 500px;
  }
}

#cart .img-thumbnail {
  min-width: 50px;
}

.cart-table {
  margin-bottom: 6px;
}

.cart-table td {
  padding: 6px var(--space-1) !important;
}

.cart-table tr:first-child td {
  border-top: none;
  padding-top: 0 !important;
}

.cart-table td:first-child {
  padding-left: 0 !important;
}
.cart-table td:last-child {
  padding-right: 0 !important;
}

.cart-table--column-quantity {
  width: 12px;
  white-space: nowrap;
}

.cart-dropdown-container li > div {
  min-width: 427px;
}
@media (max-width: 478px) {
  .cart-dropdown-container li > div {
    min-width: 100%;
  }
}
.cart-dropdown-container li p {
  margin: 20px 0;
}


.cart-btn-remove {
  /*padding: 0;*/
  border: none;
  background: none;
}

.cart-btn-remove .fa {
  font-size: 22px;
  color: #D2042D;
  opacity: 0.7;
}

/*********************************
4. Carousel/Banner
  4.1 Carousel
  4.2 Banners
*********************************/

/*********************************
4.1 Carousel
*********************************/

/*********************************
4.2 Banners
*********************************/
/* Owl Banner */
#adv-banner-slideshow {
	margin-top: 20px;
}
.owl-banner {
	border: 2px solid #fff;
	box-shadow: 0 0 3px 0 #dee2e6;
}
.banner-promotion {
	border: 2px solid #fff;
	box-shadow: 0 0 3px 0 #dee2e6;
}
.owl-banner .owl-nav {
  position: absolute;
  top: 35%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.owl-banner .owl-nav > button.owl-prev {
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
  width: 35px;
  height: 35px;
  border-radius: 0;
}
.owl-banner .owl-nav > button.owl-next {
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
  width: 35px;
  height: 35px;
  border-radius: 0;
}
.owl-banner .owl-nav > button.owl-prev span{
	font-size: 20px;
}
.owl-banner .owl-nav > button.owl-next span{
	font-size: 20px;
}

/* Extra Small Devices(Smaller than 767px wide) Styles Starts */
@media (max-width: 767px) {
  .navbar-contact {
    display: none;
  }
  .breadcrumb {
    display: none;
  }
  .cart-icon {
  font-size: 26px;
  }

}

#navbar-top .list-inline {
  margin-bottom: 0;
}

#navbar-top .btn-link {
  padding: 3px 5px;
  margin-left: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  vertical-align: middle; /* for line */
}
#navbar-top .btn-link a {
  color: #333333;
}
#navbar-top .btn-link-2 {
  color: #000000;
}

#menu-top .navbar-nav > li > a:hover, #menu-top .navbar-nav > li > a:focus,
#navbar-top .btn-link:hover, .top-links a:hover,
#navbar-top .btn-link:focus, .top-links a:focus {
  color: #E0E0E0;
}

#form-currency .currency-select,
#form-language .language-select {
  text-align: left;
  color: #000000;
}
#form-currency .currency-select:hover,
#form-language .language-select:hover {
  text-shadow: none;
  color: var(--color-primary);
  /*background-color: var(--color-primary);
  background-repeat: repeat-x;*/
}
.dropdown-menu > li > a {
    font-size: 14px;
}

.btn-link, .btn-link:active, .btn-link[disabled] {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  box-shadow: none;
}



/* Small Devices(Larger than 768px wide) Styles Starts */
@media (min-width: 768px) {
  .header-mobile-button {
    /*display: none;*/
  }
  .header-icons-container > .mobile-buttons {
    display: none;
  }
}
/* Extra Small Devices(Smaller than 767px wide) Styles Starts */
@media (max-width: 767px) {
  .header {
    padding: 0;
  }
  .logo img {
    /*max-height: 40px;*/
  }
  #cart {
    margin-top: 5px;
  }
  .foot-col-head .footer-toggle > i {
    float: right;
  }  
  footer a {
    color: #2E5984;
  }
  footer a:hover {
    color: #2E5984;
  }

  .foot-col-head {
    margin-bottom: 15px;
    font-size: 16px;
    cursor: pointer;
  }
  .footer-links li {
    padding-top: 3px;
    padding-bottom: 3px;
  }
  
  
  /* Footer Styles */
  .main-footer {
    padding-top: 5px;
    padding-bottom: 10px;
  }
  .foot-col {
    padding-top: 0;
    padding-bottom: 0;
  }
  .foot-col > button {
    float: right;
    color: #000;
    border: none;
  }
  .foot-col.last {
    border: none;
  }
  .foot-col-body {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dbdbdb;
  }
  /* Footer nav for mobile */    
  .footer-mobile {
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 100%;
    height: 55px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #ececec;
    display: flex;
    overflow-x: auto;
  }
  .footer-mobile-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-family: sans-serif;
    font-size: 12px;
    color: #444444;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
  }
  .footer-mobile-link:hover {
    background-color: #eeeeee;
    text-decoration: none;
  }
  .footer-mobile-icon {
    font-size: 18px;
  }
  #menu {
    display: none;
  }  
}

#menu.navbar {
  background: #204565;
  border-bottom: 1px solid #ddd;
  color: #fff;
  border-radius: 0;
  margin: 0;
}



/* A! on 1501 change margins between elements in header */
@media (min-width: 1200px) and (max-width: 1501px) {
}
@media (min-width: 1600px) {
}

/* Extra Small Devices(Smaller than 478px wide) Styles Starts */
@media (max-width: 478px) {
  #header > .container {
    padding-right: 5px;
    padding-left: 5px;
  }
  .categories-icon {
    font-size: 24px;
  }
  .search-icon {
    font-size: 24px;
  }
  .cart-button {
    line-height: 0;
  }
  .cart-quantity-wrapper {
    margin-right: 10px;
  }
  #cart-quantity {
      top: -5px;
      right: -8px;
  }
}


.cart-btn-remove:hover .fa {
  opacity: 1;
}



/** NEW CSS FROM THE OFFCANVAS-DESKTOP.HTML **/
.offcanvas-active {
	overflow: hidden;
}

.screen-overlay {
  width: 0%;
  height: 100%;
  z-index: 30;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition: opacity .2s linear, visibility .1s, width 1s ease-in;
   }
.screen-overlay.show {
    transition: opacity .5s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.offcanvas.offcanvas-right {
   right: 0;
   left: auto;
   transform: translateX(100%); 
 }



/*********************************
17. Modal Dialog Box
*********************************/
.modal-dialog {
  top: 148px;
}
.modal-title {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
}
.modal-header {
  padding: 12px;
  padding-bottom: 6px;
}
.modal-body .alert {
  margin-bottom: 0;
}
.modal-btn-close i, .modal-btn-cart i {
  margin-right: 5px;
}

/*********************************
18. Footer
*********************************/
footer a {
  color: #2E5984;
}
footer a:hover {
  color: var(--color-primary);
}
.main-footer {
  margin-top: 15px;
  padding-top: 25px;
  padding-bottom: 35px;
  border-top: 1px solid #dbdbdb;
  background-color: #ececec;
}
.foot-col-head {
  color: black;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 20px;
}
.footer-links {
  margin-bottom: 20px;
}
.footer-links li {
  margin-top: 6px;
}
.footer-contact-links li {
  margin-bottom: 12px;
}
.footer-links li, .footer-links li a, .footer-contact-links li {
  color: #484848;
}
.footer-links li i {
  margin-right: 10px;
  color: #0f75bc;
}
.footer-links li::before, .footer-contact-links .fa {
  margin-right: 6px;
}
.footer-links li a:hover, .footer-links li a:focus, .footer-contact-links li a:hover, .footer-contact-links li a:focus {
  text-decoration: underline;
}
.footer-links li a:hover, .footer-links li a:focus, .footer-links li::before, .footer-contact-links li .fa, .footer-contact-links li .fa {
  color: #0f75bc;
}
.footer-contact-links .fa-map-marker {
  font-size: 18px;
}
.footer-contact-links .fa-phone {
  font-size: 16px;
}
/* Copyright */
.copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #2c2c2c;
}
.copyright, .copyright a {
  color: #fff;
}
.copyright-text br {
  display: none;
}
.copyright-text a:hover, .copyright-text a:focus {
  text-decoration: underline;
}
.copyright ul > li:not(:last-child) {
  padding-right: 14px;
}
.copyright ul > li a:hover, .copyright ul > li a:focus {
  color: #0f75bc;
}
/* Scroll to Top */
#scrollTop {
  position: fixed;
  bottom: 85px;
  z-index: 999;
  right: 35px;
  opacity: 0.3;
  background: var(--color-primary);
  border-radius: 3px;
  cursor: pointer;
  padding: 9px 12px;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  display: none;
}
#scrollTop:hover {
  opacity: 0.95;
  background-color: var(--color-primary);
}



/* INPUT SPINNER CSS */
.spinner input {
  text-align: right;
}
.input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}
.input-group-btn-vertical > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 8px;
  margin-left: -1px;
  position: relative;
  border-radius: 0;
}
.input-group-btn-vertical > .btn:first-child {
  border-top-right-radius: 4px;
}
.input-group-btn-vertical > .btn:last-child {
  margin-top: -2px;
  border-bottom-right-radius: 4px;
}
.input-group-btn-vertical i{
  position: absolute;
  top: 0;
  left: 4px;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-group .d-flex .btn-primary {
  margin-left: 10px; /* Adjust spacing as needed */
  margin-right: 10px;
}

#button-cart i {
  margin-right: 5px;
}

@media (max-width: 992px) {
  .offcanvas-header {
    display: block;
    background-color: #ccc;
    margin: 0px;
    padding-left: 10px;
  }
  .offcanvas-categories {
    visibility: hidden;
    transform: translateX(-100%);
    /*transform: translateX(100%);*/
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1200;
    width: 85%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility .2s ease-in-out, transform .2s ease-in-out;
    background-color: #666;
  }
  .offcanvas-categories .show {
    visibility: visible;
    transform: translateX(0);
  }
  .offcanvas-cart {
    visibility: hidden;
    /*transform: translateX(-100%);*/
    transform: translateX(100%);
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1200;
    width: 85%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility .2s ease-in-out, transform .2s ease-in-out;
    background-color: #666;
  }
  .offcanvas-cart.show {
    visibility: visible;
    transform: translateX(0);
  }
  .bg-primary {
    background-color: #ccc;
  }
  .navbar {
    padding: 0px;
  }
}

/*********************************
100. Off Canvas Categories
*********************************/
