@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  background-color: white;
}
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: #353535;
}
body::-webkit-scrollbar-thumb {
  background: #5c0011;
  border-radius: 50px;
  opacity: 0.8;
}
body::-webkit-scrollbar-thumb:hover {
  background: #ff896b;
  opacity: 1;
}

a {
  text-decoration: none !important;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

img {
  max-width: 100%;
}

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

section {
  position: relative;
  overflow: hidden;
}

.page-section {
  padding-top: 125px;
  padding-bottom: 50px;
  position: relative;
}

.modal {
  padding: 0 !important;
  z-index: 9050;
}
.modal .modal-dialog {
  margin: auto;
  max-width: 992px;
  padding: 10px;
}
.modal .modal-content {
  border-radius: 0;
  -webkit-box-shadow: 0 0 16px rgb(0, 0, 0);
          box-shadow: 0 0 16px rgb(0, 0, 0);
}
.modal .modal-content .modal-header {
  background: #c4cce4;
}
.modal .modal-content .modal-header h5 {
  color: #3d2c56;
  font-weight: 600;
  font-style: italic;
}
.modal .modal-content .modal-header .close {
  color: white;
}

.modal-backdrop {
  z-index: 9049;
  opacity: 0.75;
}

.lb-nav a.lb-next {
  background: url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.1/images/next.png) right 48% no-repeat;
}

.lb-nav a.lb-prev {
  background: url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.1/images/prev.png) left 48% no-repeat;
}

.page-loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: linear-gradient(10deg, #353535, #24252b, #24252b, #353535);
}
.page-loader .loader-text {
  text-align: center;
  margin-top: 80px;
  top: 100%;
  color: White;
  font-size: 36px;
  position: absolute;
  white-space: nowrap;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.container-loader {
  position: relative;
  height: 210px;
  width: 210px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #3d2c56;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.container-loader div {
  float: left;
  height: 70px;
  width: 70px;
  background: #ff896b;
  -webkit-animation: flip 3s linear infinite;
          animation: flip 3s linear infinite;
}
.container-loader div:nth-of-type(odd) {
  background: #c4cce4;
}

.scroll-down {
  cursor: pointer;
  z-index: 6;
  -webkit-filter: drop-shadow(2px 4px 12px black);
          filter: drop-shadow(2px 4px 12px black);
  margin: 30px auto 0;
}
.scroll-down a {
  height: 90px;
  width: 120px;
}
.scroll-down span {
  font-weight: 400;
  font-size: 16px;
  color: #FEFEFD;
  position: absolute;
  letter-spacing: 2px;
  bottom: 0;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.scroll-down .chevron {
  position: absolute;
  width: 32px;
  height: 2px;
  left: 50%;
  opacity: 0;
  margin-left: -16px;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s ease-out infinite;
          animation: move 3s ease-out infinite;
}
.scroll-down .chevron:first-child {
  -webkit-animation: move 3s ease-out 1s infinite;
          animation: move 3s ease-out 1s infinite;
}
.scroll-down .chevron:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
          animation: move 3s ease-out 2s infinite;
}
.scroll-down .chevron:before,
.scroll-down .chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}
.scroll-down .chevron:before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
          transform: skew(0deg, 30deg);
}
.scroll-down .chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
          transform: skew(0deg, -30deg);
}
@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  8% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  50% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  55% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  8% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  50% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  55% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
.container-loader div:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.container-loader div:nth-child(4) {
  -webkit-animation-delay: 0.1875s;
          animation-delay: 0.1875s;
}

.container-loader div:nth-child(7) {
  -webkit-animation-delay: 0.375s;
          animation-delay: 0.375s;
}

.container-loader div:nth-child(2) {
  -webkit-animation-delay: 0.5625s;
          animation-delay: 0.5625s;
}

.container-loader div:nth-child(5) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.container-loader div:nth-child(8) {
  -webkit-animation-delay: 0.935s;
          animation-delay: 0.935s;
}

.container-loader div:nth-child(3) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.container-loader div:nth-child(6) {
  -webkit-animation-delay: 1.1875s;
          animation-delay: 1.1875s;
}

.container-loader div:nth-child(9) {
  -webkit-animation-delay: 1.375s;
          animation-delay: 1.375s;
}

.form-one {
  padding: 10px;
}
.form-one .form-group {
  padding: 10px 0;
}
.form-one .form-group label {
  display: inline-block;
  padding: 2px 10px;
  color: #353535;
  font-weight: 600;
}
.form-one .form-group label.error {
  color: #ffd400;
}
.form-one .form-group .input-style {
  display: block;
  width: 100%;
  border: 2px solid #353535;
  border-left: 4px solid #ffd400;
  padding: 7px 10px;
  outline: none;
  color: #353535;
}
.form-one .form-group .input-style:focus {
  color: #24252b;
  border-color: #ffd400;
}
.form-one .form-group .select2-container {
  max-width: 100%;
}
.form-one .form-group .select2-container .select2-selection--single {
  height: 42px;
  border: 2px solid #ced4da;
  border-left: 4px solid #ffd400;
  outline: none;
  border-radius: 4px;
}
.form-one .form-group .select2-container .select2-selection--single .select2-selection__arrow {
  top: 5px;
}
.form-one .form-group .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  color: #757575;
}

.btn-one {
  font-weight: 700;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-one:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.btn-one:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn-orange {
  background: #F5B301;
  color: #fff;
  border-color: #F5B301;
}
.btn-orange:hover {
  background: #E5A301;
  border-color: #E5A301;
  color: #fff;
}
.btn-orange:active {
  background: #D59301;
  border-color: #D59301;
}

.btn-red {
  background: #dc3545;
  color: #fff;
  border-color: #dc3545;
}
.btn-red:hover {
  background: #c82333;
  border-color: #c82333;
  color: #fff;
}
.btn-red:active {
  background: #bd2130;
  border-color: #bd2130;
}

.order-confirmation .text-center .btn-one {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.order-confirmation .text-center .btn-one i {
  margin-right: 8px;
}
.order-confirmation .text-center .btn-one:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
          box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-lilac {
  background: #6f42c1;
  color: #fff;
  border-color: #6f42c1;
}
.btn-lilac:hover {
  background: #5a32a3;
  border-color: #5a32a3;
  color: #fff;
}
.btn-lilac:active {
  background: #4c2b8a;
  border-color: #4c2b8a;
}

.breadcrumb {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 15px 0;
  position: relative;
  border-bottom: 3px solid #F5B301;
  border-radius: 0;
}
.breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#F5B301), to(transparent));
  background: linear-gradient(90deg, transparent, #F5B301, transparent);
}
.breadcrumb .direction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0;
}
.breadcrumb .direction .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #f5f5dc;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0;
}
.breadcrumb .direction .link:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #cf5b76;
  font-size: 1.1rem;
  font-weight: 600;
}
.breadcrumb .direction .link a {
  color: #f5f5dc;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0;
}
.breadcrumb .direction .link a:hover {
  color: #cf5b76;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.breadcrumb .direction .link a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #cf5b76 0%, #a83f6e 100%);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.breadcrumb .direction .link a:hover::after {
  width: 100%;
}
.breadcrumb .direction .link.current-page {
  color: #cf5b76;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.breadcrumb .direction .link.current-page::after {
  display: none;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 12px 0;
  }
  .breadcrumb .direction {
    font-size: 0.8rem;
    gap: 6px;
  }
  .breadcrumb .direction .link:not(:last-child)::after {
    margin: 0 6px;
    font-size: 1rem;
  }
}

i.curtain {
  position: fixed;
  z-index: 8998;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
i.curtain.opened {
  top: 0;
  opacity: 1;
  visibility: visible;
}

header {
  position: sticky;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
header .header-curtain {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .header-curtain i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header-curtain i:nth-of-type(odd) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
header .header-curtain i:nth-of-type(even) {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
header .header-top {
  padding: 10px 0;
}
header .right-menu .general-search {
  display: inline-block;
}
header .right-menu .general-search label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
header .right-menu .general-search label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #353535;
  border-right: 2px solid #353535;
  z-index: -1;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .right-menu .general-search label input {
  padding: 9px 40px 9px 10px;
  min-width: 256px;
  font-size: 14px;
  position: relative;
  background: none;
  border: none;
  outline: none;
  font-style: italic;
}
header .right-menu .general-search label button {
  background: none;
  border: none;
  outline: none;
  position: relative;
  padding: 0 6px;
}
header .right-menu .general-search label button:before {
  content: "";
  position: absolute;
  left: -2px;
  top: -6px;
  width: calc(100% + 2px);
  height: calc(100% + 12px);
  border-right: 2px solid #353535;
  background: #ffd400;
  z-index: -1;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .right-menu .site-menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .right-menu .site-menu .dropdown-toggle::after {
  display: none;
}
header .right-menu .site-menu a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  margin: 0 8px;
  color: #fffbed;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .right-menu .site-menu a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #5c0011;
  z-index: -1;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  border-right: 2px solid #353535;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .right-menu .site-menu a:last-of-type {
  margin-right: 0;
}
header .right-menu .site-menu a i {
  margin-right: 5px;
  font-size: 18px;
}
header .right-menu .site-menu a:hover {
  color: #ffd400;
}
header .right-menu .site-menu a:hover:before {
  background: #353535;
}
header .right-menu .site-menu .panel-menu-button {
  display: none;
}
header .right-menu .site-menu .dropdown .dropdown-menu {
  border: none;
  background: transparent;
  overflow: visible;
}
header .right-menu .site-menu .dropdown .dropdown-menu .dropdown-item {
  margin: 5px 0;
  background: transparent;
}
header .right-menu .site-menu .dropdown .dropdown-menu .dropdown-item:before {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
header .main-menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .main-menu nav ul li {
  display: inline-block;
  padding: 4px 5px;
  position: relative;
}
header .main-menu nav ul li a {
  font-size: 15px;
  color: #fffbed;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
header .main-menu nav ul li a:hover {
  color: #ffd400;
}
header .main-menu nav ul li .submenu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-10px);
          transform: translateX(-50%) translateY(-10px);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 720px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}
header .main-menu nav ul li .submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(0, 0, 0, 0.95);
}
header .main-menu nav ul li .submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
}
header .main-menu nav ul li .submenu li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  width: 100%;
  padding: 0;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .main-menu nav ul li .submenu li a {
  padding: 10px 5px;
  display: block;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .main-menu nav ul li .submenu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fffbed;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
header .main-menu nav ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
header .buy-btn .basket-counter {
  background: white;
  padding: 1px 4px;
  display: inline-block;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  margin-left: 3px;
  font-weight: 600;
}
header .logo {
  text-align: center;
}
header .logo a {
  max-width: 182px;
}
header .logo a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
header .menu-button {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 2px;
  padding: 10px 18px 4px;
}
header .menu-button .menu-text {
  color: White;
  margin-left: 42px;
  position: relative;
  bottom: 4px;
  font-size: 14px;
  font-weight: 500;
}
header .menu-button .hamburger-menu,
header .menu-button .hamburger-menu:after,
header .menu-button .hamburger-menu:before {
  width: 32px;
  height: 2px;
}
header .menu-button .hamburger-menu {
  position: relative;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  background: white;
  -webkit-transition: all 0ms 300ms;
  transition: all 0ms 300ms;
}
header .menu-button .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
header .menu-button .hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: white;
  -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header .menu-button .hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: white;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header .menu-button .hamburger-menu.animate:after {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header .menu-button .hamburger-menu.animate:before {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header.affix {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header.affix .menu-button .menu-text {
  color: #3d2c56;
}
header.affix .menu-button {
  border-color: #3d2c56;
}
header.affix .menu-button .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
header.affix .menu-button .hamburger-menu,
header.affix .menu-button .hamburger-menu:before,
header.affix .menu-button .hamburger-menu:after {
  background: #3d2c56;
}
header.affix .header-curtain {
  opacity: 1;
  visibility: visible;
}
header.affix .header-curtain i {
  background: rgba(255, 255, 255, 0.97);
  border-color: transparent;
}
header.affix .header-curtain i:nth-of-type(odd) {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
header.affix .header-curtain i:nth-of-type(even) {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
header.opened {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header.opened .buy-btn {
  color: #ffd400;
  border-color: #3d2c56;
}
header.opened .buy-btn:hover {
  background: #3d2c56;
  border-color: #ffd400;
}
header.opened .menu-button .menu-text {
  color: #3d2c56;
}
header.opened .menu-button {
  border-color: #3d2c56;
}
header.opened .menu-button .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
header.opened .menu-button .hamburger-menu,
header.opened .menu-button .hamburger-menu:before,
header.opened .menu-button .hamburger-menu:after {
  background: #3d2c56;
}
header.opened .header-curtain {
  opacity: 1;
  visibility: visible;
}
header.opened .header-curtain i {
  background: rgba(255, 255, 255, 0.97);
  border-color: transparent;
}
header.opened .header-curtain i:nth-of-type(odd) {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
header.opened .header-curtain i:nth-of-type(even) {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
header:not(.modern-header) a {
  color: #333 !important;
}
header:not(.modern-header) .logo-text h1, header:not(.modern-header) .logo-text span {
  color: #333 !important;
}
header:not(.modern-header) .header-actions .action-btn {
  color: #333 !important;
}
header:not(.modern-header) .header-actions .action-btn i {
  color: #333 !important;
}
header:not(.modern-header) .search-input input {
  color: #333 !important;
}
header:not(.modern-header) .search-input input::-webkit-input-placeholder {
  color: #666 !important;
}
header:not(.modern-header) .search-input input::-moz-placeholder {
  color: #666 !important;
}
header:not(.modern-header) .search-input input:-ms-input-placeholder {
  color: #666 !important;
}
header:not(.modern-header) .search-input input::-ms-input-placeholder {
  color: #666 !important;
}
header:not(.modern-header) .search-input input::placeholder {
  color: #666 !important;
}

.panel-menu {
  min-height: 60vh;
  background: linear-gradient(15deg, #24252b, #353535);
  padding: 200px 0 40px;
  z-index: 8999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.panel-menu nav {
  max-width: 1200px;
}
.panel-menu nav ul {
  text-align: center;
}
.panel-menu nav ul li {
  display: inline-block;
  padding: 10px 12px;
  text-align: center;
}
.panel-menu nav ul li a {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  padding: 5px;
}
.panel-menu nav ul li a i {
  margin-right: 5px;
}
.panel-menu nav ul li a:hover {
  color: #ffd400;
}
.panel-menu.opened {
  top: 0;
  visibility: visible;
  opacity: 1;
}

footer {
  padding: 20px 0 20px 0;
  background: linear-gradient(340deg, #24252b, #353535, #222428, black);
  position: relative;
}
footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}
footer .bottom {
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 20px 0;
  font-size: 16px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
}
footer .bottom a {
  color: rgba(255, 255, 255, 0.8);
}
footer .back-top .line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
footer .back-top .icon {
  padding: 0 10px;
}
footer .back-top .icon a {
  color: rgba(255, 255, 255, 0.8);
  width: 64px;
  height: 64px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
footer .footer-top {
  padding: 40px 0;
}
footer .footer-top .footer-card {
  margin: 15px 0;
}
footer .footer-top .footer-card i {
  min-width: 16px;
  text-align: center;
}
footer .footer-top .footer-card p {
  font-size: 13px;
  font-weight: 600;
}
footer .footer-top .footer-card .title {
  font-size: 20px;
  font-weight: 600;
  color: #ffd400;
  margin: 15px 0;
}
footer .footer-top .footer-card address {
  font-size: 15px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
footer .footer-top .footer-card p,
footer .footer-top .footer-card a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin: 3px 0;
  padding: 2px;
}
footer .footer-top .footer-card a:hover {
  color: #ffd400;
}
footer .footer-top .footer-card .footer-social li {
  display: inline-block;
  padding: 6px;
}
footer .footer-top .footer-card .footer-social li a {
  font-size: 20px;
}

.welcome-section {
  padding: 40px 0;
}
.welcome-section .show-box a {
  padding: 15px 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12.5%;
          flex: 0 0 12.5%;
  text-align: center;
}
.welcome-section .show-box a img {
  width: 85%;
  border-radius: 4px 4px 0 0;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.welcome-section .show-box a figcaption {
  margin: 0;
  color: #ffd400;
  display: block;
  position: relative;
  padding: 6px 4px;
  font-size: 14px;
  margin-top: -5px;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.welcome-section .show-box a figcaption:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #353535;
  z-index: -1;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  border-right: 2px solid #ffd400;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.welcome-section .show-box a:hover figure figcaption {
  color: #353535;
}
.welcome-section .show-box a:hover figure figcaption:before {
  background: #ffd400;
  border-right: 2px solid #353535;
}
.welcome-section .main-banner .item-list {
  position: relative;
}
.welcome-section .main-banner .item-list:before {
  content: "";
  position: absolute;
  left: -4px;
  border-left: 4px dashed #ffd400;
  top: 30px;
  height: 50%;
}
.welcome-section .main-banner .item-list:after {
  content: "";
  position: absolute;
  right: -4px;
  border-left: 4px dashed #353535;
  bottom: 30px;
  height: 50%;
}
.welcome-section .main-banner .item-list .item {
  padding: 18px;
  border-radius: 4px;
  background: whitesmoke;
}
.welcome-section .main-banner .item-list .item a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
  height: 720px;
}
.welcome-section .main-banner .item-list .item a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.welcome-section .main-banner .item-list .slick-dots {
  position: absolute;
  right: 40px;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.welcome-section .main-banner .item-list .slick-dots li {
  padding: 4px;
}
.welcome-section .main-banner .item-list .slick-dots li button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 1;
  border-color: transparent;
  font-weight: 600;
  padding: 0;
}
.welcome-section .main-banner .item-list .slick-dots li.slick-active button {
  border-color: #353535;
  color: #353535;
}

.home-about {
  padding: 150px 0;
  position: relative;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home-about:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#1f162b), to(#2e2042));
  background: linear-gradient(to bottom, #1f162b, #2e2042);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.25);
}
.home-about .bg-shape {
  position: absolute;
  width: 360px;
  right: 100px;
  bottom: 10px;
}
.home-about .gif-area {
  text-align: center;
}
.home-about .gif-area img {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.home-about .about-box {
  background: linear-gradient(267.18deg, #1b181f 0%, #332d3b 100%);
  padding: 50px;
  border-radius: 4px;
  position: relative;
  width: calc(100% - 100px);
  margin: 0 auto;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.38);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.38);
}
.home-about .about-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 30px;
  top: 30px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-top: 4px solid white;
  border-left: 4px solid white;
  border-top-left-radius: 4px;
}
.home-about .about-box:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 30px;
  top: 30px;
  width: 100%;
  height: 100%;
  border: 4px solid #1b181f;
  border-radius: 4px;
}
.home-about .about-box .inner {
  position: relative;
  z-index: 3;
  padding: 30px 30px 0;
}
.home-about .about-box .inner h2 {
  color: White;
  font-size: 40px;
  font-weight: 700;
}
.home-about .about-box .inner h2 strong {
  color: #ff896b;
}
.home-about .about-box .inner h2 strong span {
  color: #c4cce4;
}
.home-about .about-box .inner p {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
}
.home-about .about-box .inner .inner-i {
  color: #9cd8ce;
  font-size: 24px;
  letter-spacing: 2px;
}

.home-showcase {
  padding: 20px 0 40px 0;
}
.home-showcase a {
  display: block;
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 13px rgba(0, 0, 0, 0.35);
  margin: 15px 0;
}
.home-showcase a figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  width: 100%;
}
.home-showcase a figure figcaption {
  background: #353535;
  border-bottom: 4px solid #ffd400;
  padding: 4px 10px;
  color: white;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}
.home-showcase a:hover {
  -webkit-box-shadow: 0 0 13px #ffd400;
          box-shadow: 0 0 13px #ffd400;
}

.general-product-list .item {
  margin: 20px 0;
  position: relative;
}
.general-product-list .item .image {
  background: white;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  border-bottom: 4px solid #ffd400;
  position: relative;
  z-index: 2;
}
.general-product-list .item .image a {
  display: block;
  background: white;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}
.general-product-list .item .image img {
  border-radius: 10px;
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.general-product-list .item .content {
  padding: 10px;
  border-bottom: 2px solid #353535;
  background: white;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 10px;
}
.general-product-list .item .content .product-name {
  text-align: center;
}
.general-product-list .item .content .product-name a {
  font-size: 15px;
  display: block;
}
.general-product-list .item .content .product-name a strong {
  color: #24252b;
  font-size: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 36px;
  line-height: 1.2;
}
.general-product-list .item .content .product-name a small {
  color: #353535;
  display: block;
  font-weight: 500;
}
.general-product-list .item .content .product-price {
  padding-top: 5px;
  margin-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
}
.general-product-list .item .content .product-price .discounted-price-end {
  text-align: center;
  color: #ffd400;
  display: inline-block;
  padding: 4px 8px;
  font-size: 28px;
  font-weight: 700;
}
.general-product-list .item .content .product-price .base-price {
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  font-weight: 500;
  display: inline-block;
}
.general-product-list .item .content .product-price .base-price:after {
  content: "";
  width: calc(100% + 10px);
  height: 1px;
  left: -5px;
  top: 50%;
  background-color: black;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: inline-block;
}
.general-product-list .item .content .product-price .standard-price {
  text-align: center;
  color: #353535;
  display: inline-block;
  padding: 4px 8px;
  background: #ffd400;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid #353535;
}
.general-product-list .item .content .options {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #353535;
  z-index: 2;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}
.general-product-list .item .content .options a {
  color: white;
  font-weight: 500;
  font-size: 13px;
}
.general-product-list .item .content .options a:hover {
  color: #ffd400;
}
.general-product-list .item:hover .content {
  border-color: #ffd400;
}
.general-product-list .more-button {
  text-align: center;
  margin-top: 20px;
}
.general-product-list .more-button a {
  padding: 12px 20px;
  font-size: 18px;
  border: 2px solid white;
  color: #ff0500;
  border-radius: 2px 2px 8px 8px;
}
.general-product-list .more-button a:hover {
  background: white;
}

.home-products {
  padding: 40px 0;
}
.home-products ul.nav-tabs {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  border-bottom: 1px solid #353535;
}
.home-products ul.nav-tabs .nav-item button {
  background: #353535;
  outline: none !important;
  color: white;
  font-weight: 500;
  border-bottom: 2px solid #353535;
  border-radius: 0;
  border-top: 2px solid #353535;
}
.home-products ul.nav-tabs .nav-item button.active {
  background: #ffd400;
  color: #353535;
}

.home-blog {
  padding: 40px 0 80px 0;
}
.home-blog .section-title {
  position: relative;
}
.home-blog .section-title img {
  position: absolute;
  width: 128px;
  left: 50%;
  top: -45px;
  margin-left: -274px;
}
.home-blog .blog-item {
  margin: 15px 0;
}
.home-blog .blog-item a {
  display: block;
}
.home-blog .blog-item .image {
  position: relative;
  height: 280px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}
.home-blog .blog-item .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.home-blog .blog-item strong {
  display: block;
  padding: 0 10px;
  color: #ffd400;
  font-size: 13px;
}
.home-blog .blog-item h5 {
  font-size: 22px;
  color: #353535;
  letter-spacing: 1px;
  padding: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-blog a:hover .image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 12px #ff0500;
          box-shadow: 0 0 12px #ff0500;
}
.home-blog a:hover h5 {
  color: #ff0500;
}
.home-blog .more-button {
  text-align: center;
  margin-top: 20px;
}
.home-blog .more-button a {
  padding: 12px 20px;
  font-size: 18px;
  border: 2px solid white;
  color: #ffd400;
  background: #353535;
}
.home-blog .more-button a:hover {
  background: #ffd400;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #353535;
}

.auth-pages {
  padding: 80px 0;
}

.auth-forms {
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 30px;
  border: 4px solid #ffd400;
  position: relative;
}
.auth-forms .section-head {
  margin-bottom: 30px;
  text-align: center;
}
.auth-forms .section-head h2 {
  display: inline-block;
  padding: 12px 20px;
  background: #ffd400;
  color: #353535;
}
.auth-forms:before {
  content: "";
  position: absolute;
  left: 15px;
  top: -15px;
  width: 100%;
  height: 100%;
  border-top: 2px solid #353535;
  border-right: 2px solid #353535;
  z-index: -1;
}
.auth-forms:after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: -15px;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #353535;
  border-left: 2px solid #353535;
  z-index: -1;
}
.auth-forms hr {
  border-color: rgba(255, 255, 255, 0.15);
}
.auth-forms p {
  color: #2e313a;
  font-weight: 600;
}
.auth-forms .forgot-pass {
  color: #353535;
  margin-top: 5px;
}
.auth-forms .forgot-pass:hover {
  color: #ffd400;
}
.auth-forms .bottom-content p {
  max-width: 600px;
  margin: 0 auto;
}
.auth-forms .bottom-content p a {
  color: #ffd400;
  border: 1px solid transparent;
  padding: 0 3px;
}
.auth-forms .bottom-content p a:hover {
  border-color: #ffd400;
}

.product-pages {
  padding: 80px 0;
}
.product-pages .category-head {
  margin-bottom: 20px;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 15px;
}
.product-pages .category-head figure {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-bottom: none;
}
.product-pages .category-head figure img {
  -webkit-box-shadow: 0 4px 24px rgba(255, 0, 0, 0.4);
          box-shadow: 0 4px 24px rgba(255, 0, 0, 0.4);
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 390px;
}
.product-pages .category-head figure figcaption {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  padding: 12px 24px;
  font-size: 24px;
  letter-spacing: 1px;
  color: #24252b;
  background: white;
  border-radius: 4px 16px 4px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-pages .category-head .subcategories {
  margin-top: 20px;
}
.product-pages .category-head .subcategories ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-pages .category-head .subcategories ul li {
  display: inline-block;
  padding: 6px 10px;
}
.product-pages .category-head .subcategories ul li a {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.9);
  color: #ff0500;
  border-radius: 4px;
}
.product-pages .category-head .subcategories ul li a:hover {
  background: white;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.product-pages .product-detail .card .card-header {
  background: #353535;
}
.product-pages .product-detail .card .card-header .card-title {
  color: #ffd400;
  font-size: 18px;
  margin: 5px 0;
}
.product-pages .product-detail .product-slider {
  margin: 15px 0;
}
.product-pages .product-detail .product-slider .item-list .item {
  padding: 14px;
  background: #fffbed;
}
.product-pages .product-detail .product-slider .item-list .item a {
  display: block;
  background: white;
}
.product-pages .product-detail .product-slider .item-list .item a img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.product-pages .product-detail .product-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
.product-pages .product-detail .product-slider .slick-dots li {
  padding: 3px;
}
.product-pages .product-detail .product-slider .slick-dots li button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  font-weight: 600;
  background: #ffd400;
  color: #353535;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
}
.product-pages .product-detail .product-slider .slick-dots li.slick-active button {
  background: #ffd400;
}
.product-pages .product-tags {
  margin: 15px 0;
  padding-left: 25px;
}
.product-pages .product-tags .product-variations .variation-group {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: black;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.product-pages .product-tags .product-variations .variation-group .title,
.product-pages .product-tags .product-variations .variation-group .value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 4px 10px;
}
.product-pages .product-tags .product-variations .variation-group .title {
  color: darkgray;
  border-right: 1px dashed darkgray;
}
.product-pages .product-tags .product-variations .variation-group .value {
  color: #fffbed;
  text-align: center;
}
.product-pages .product-tags .order-features {
  margin-top: 15px;
}
.product-pages .product-tags .order-features .features-item {
  background: lightgray;
  color: #353535;
  padding: 6px 10px;
  border-radius: 4px;
  margin: 10px 0;
  height: calc(100% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 13px;
}
.product-pages .product-tags .order-features .features-item .icon {
  margin-bottom: 6px;
  font-size: 20px;
  width: 100%;
  color: #ff0500;
}
.product-pages .product-orders {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.product-pages .product-orders .product-price {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-pages .product-orders .product-price .first-price {
  font-size: 36px;
  color: #ffd400;
  padding: 6px 12px;
  font-weight: 600;
  margin: 10px 20px;
  border: 2px solid #ffd400;
}
.product-pages .product-orders .product-price .second-price {
  color: White;
  position: relative;
  padding: 4px 12px;
  font-size: 26px;
  opacity: 0.7;
}
.product-pages .product-orders .product-price .second-price:after {
  content: "";
  width: calc(100% + 10px);
  height: 2px;
  left: -5px;
  top: 50%;
  background-color: #ffd400;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.product-pages .product-content {
  font-size: 14px;
  background: linear-gradient(45deg, black, #3d2c56);
  padding: 20px 30px;
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.8) !important;
}
.product-pages .product-content p {
  color: rgba(255, 255, 255, 0.8) !important;
}
.product-pages .product-content h1 {
  color: #ffd400;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.product-pages .product-content .buttons .btn-one {
  color: #ffd400;
  font-size: 20px;
}
.product-pages .other-products {
  margin-top: 40px;
}

.item-filters .filter-group {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  position: relative;
  overflow: hidden;
  margin: 15px 0;
}
.item-filters h2 {
  padding: 10px;
  color: #fff;
  background: linear-gradient(35deg, #353535, #24252b);
  border-bottom: 2px solid #ffd400;
  font-size: 15px;
  font-weight: 600;
}
.item-filters ul {
  padding: 5px 5px 15px;
}
.item-filters ul li a {
  font-size: 14px;
  color: #24252b;
}
.item-filters ul li a i {
  margin-right: 4px;
}
.item-filters ul li a.active-link {
  color: #ffd400;
  font-weight: 600;
}

body {
  font-family: "Montserrat", sans-serif;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  background-color: white;
}
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: #353535;
}
body::-webkit-scrollbar-thumb {
  background: #5c0011;
  border-radius: 50px;
  opacity: 0.8;
}
body::-webkit-scrollbar-thumb:hover {
  background: #ff896b;
  opacity: 1;
}

a {
  text-decoration: none !important;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

img {
  max-width: 100%;
}

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

section {
  position: relative;
  overflow: hidden;
}

.page-section {
  padding-top: 125px;
  padding-bottom: 50px;
  position: relative;
}

.modal {
  padding: 0 !important;
  z-index: 9050;
}
.modal .modal-dialog {
  margin: auto;
  max-width: 992px;
  padding: 10px;
}
.modal .modal-content {
  border-radius: 0;
  -webkit-box-shadow: 0 0 16px rgb(0, 0, 0);
          box-shadow: 0 0 16px rgb(0, 0, 0);
}
.modal .modal-content .modal-header {
  background: #c4cce4;
}
.modal .modal-content .modal-header h5 {
  color: #3d2c56;
  font-weight: 600;
  font-style: italic;
}
.modal .modal-content .modal-header .close {
  color: white;
}

.modal-backdrop {
  z-index: 9049;
  opacity: 0.75;
}

.lb-nav a.lb-next {
  background: url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.1/images/next.png) right 48% no-repeat;
}

.lb-nav a.lb-prev {
  background: url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.1/images/prev.png) left 48% no-repeat;
}

.page-loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: linear-gradient(10deg, #353535, #24252b, #24252b, #353535);
}
.page-loader .loader-text {
  text-align: center;
  margin-top: 80px;
  top: 100%;
  color: White;
  font-size: 36px;
  position: absolute;
  white-space: nowrap;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.container-loader {
  position: relative;
  height: 210px;
  width: 210px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #3d2c56;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.container-loader div {
  float: left;
  height: 70px;
  width: 70px;
  background: #ff896b;
  -webkit-animation: flip 3s linear infinite;
          animation: flip 3s linear infinite;
}
.container-loader div:nth-of-type(odd) {
  background: #c4cce4;
}

.scroll-down {
  cursor: pointer;
  z-index: 6;
  -webkit-filter: drop-shadow(2px 4px 12px black);
          filter: drop-shadow(2px 4px 12px black);
  margin: 30px auto 0;
}
.scroll-down a {
  height: 90px;
  width: 120px;
}
.scroll-down span {
  font-weight: 400;
  font-size: 16px;
  color: #FEFEFD;
  position: absolute;
  letter-spacing: 2px;
  bottom: 0;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.scroll-down .chevron {
  position: absolute;
  width: 32px;
  height: 2px;
  left: 50%;
  opacity: 0;
  margin-left: -16px;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s ease-out infinite;
          animation: move 3s ease-out infinite;
}
.scroll-down .chevron:first-child {
  -webkit-animation: move 3s ease-out 1s infinite;
          animation: move 3s ease-out 1s infinite;
}
.scroll-down .chevron:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
          animation: move 3s ease-out 2s infinite;
}
.scroll-down .chevron:before,
.scroll-down .chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}
.scroll-down .chevron:before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
          transform: skew(0deg, 30deg);
}
.scroll-down .chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
          transform: skew(0deg, -30deg);
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  8% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  50% {
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  55% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
.container-loader div:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.container-loader div:nth-child(4) {
  -webkit-animation-delay: 0.1875s;
          animation-delay: 0.1875s;
}

.container-loader div:nth-child(7) {
  -webkit-animation-delay: 0.375s;
          animation-delay: 0.375s;
}

.container-loader div:nth-child(2) {
  -webkit-animation-delay: 0.5625s;
          animation-delay: 0.5625s;
}

.container-loader div:nth-child(5) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.container-loader div:nth-child(8) {
  -webkit-animation-delay: 0.935s;
          animation-delay: 0.935s;
}

.container-loader div:nth-child(3) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.container-loader div:nth-child(6) {
  -webkit-animation-delay: 1.1875s;
          animation-delay: 1.1875s;
}

.container-loader div:nth-child(9) {
  -webkit-animation-delay: 1.375s;
          animation-delay: 1.375s;
}

.form-one {
  padding: 10px;
}
.form-one .form-group {
  padding: 10px 0;
}
.form-one .form-group label {
  display: inline-block;
  padding: 2px 10px;
  color: #353535;
  font-weight: 600;
}
.form-one .form-group label.error {
  color: #ffd400;
}
.form-one .form-group .input-style {
  display: block;
  width: 100%;
  border: 2px solid #353535;
  border-left: 4px solid #ffd400;
  padding: 7px 10px;
  outline: none;
  color: #353535;
}
.form-one .form-group .input-style:focus {
  color: #24252b;
  border-color: #ffd400;
}
.form-one .form-group .select2-container {
  max-width: 100%;
}
.form-one .form-group .select2-container .select2-selection--single {
  height: 42px;
  border: 2px solid #ced4da;
  border-left: 4px solid #ffd400;
  outline: none;
  border-radius: 4px;
}
.form-one .form-group .select2-container .select2-selection--single .select2-selection__arrow {
  top: 5px;
}
.form-one .form-group .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  color: #757575;
}

.btn-one {
  font-weight: 700;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-one:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.btn-one:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn-orange {
  background: #F5B301;
  color: #fff;
  border-color: #F5B301;
}
.btn-orange:hover {
  background: #E5A301;
  border-color: #E5A301;
  color: #fff;
}
.btn-orange:active {
  background: #D59301;
  border-color: #D59301;
}

.btn-red {
  background: #dc3545;
  color: #fff;
  border-color: #dc3545;
}
.btn-red:hover {
  background: #c82333;
  border-color: #c82333;
  color: #fff;
}
.btn-red:active {
  background: #bd2130;
  border-color: #bd2130;
}

.order-confirmation .text-center .btn-one {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.order-confirmation .text-center .btn-one i {
  margin-right: 8px;
}
.order-confirmation .text-center .btn-one:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
          box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-lilac {
  background: #6f42c1;
  color: #fff;
  border-color: #6f42c1;
}
.btn-lilac:hover {
  background: #5a32a3;
  border-color: #5a32a3;
  color: #fff;
}
.btn-lilac:active {
  background: #4c2b8a;
  border-color: #4c2b8a;
}

.breadcrumb {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 15px 0;
  position: relative;
  border-bottom: 3px solid #F5B301;
  border-radius: 0;
}
.breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#F5B301), to(transparent));
  background: linear-gradient(90deg, transparent, #F5B301, transparent);
}
.breadcrumb .direction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0;
}
.breadcrumb .direction .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #f5f5dc;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0;
}
.breadcrumb .direction .link:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #F5B301;
  font-size: 1.1rem;
  font-weight: 600;
}
.breadcrumb .direction .link a {
  color: #f5f5dc;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0;
}
.breadcrumb .direction .link a:hover {
  color: #cf5b76;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.breadcrumb .direction .link a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #cf5b76 0%, #a83f6e 100%);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.breadcrumb .direction .link a:hover::after {
  width: 100%;
}
.breadcrumb .direction .link.current-page {
  color: #cf5b76;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.breadcrumb .direction .link.current-page::after {
  display: none;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 12px 0;
  }
  .breadcrumb .direction {
    font-size: 0.8rem;
    gap: 6px;
  }
  .breadcrumb .direction .link:not(:last-child)::after {
    margin: 0 6px;
    font-size: 1rem;
  }
}

i.curtain {
  position: fixed;
  z-index: 8998;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
i.curtain.opened {
  top: 0;
  opacity: 1;
  visibility: visible;
}

header {
  position: sticky;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
header .header-curtain {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .header-curtain i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header-curtain i:nth-of-type(odd) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
header .header-curtain i:nth-of-type(even) {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
header .header-top {
  padding: 10px 0;
}
header .right-menu .general-search {
  display: inline-block;
}
header .right-menu .general-search label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
header .right-menu .general-search label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #353535;
  border-right: 2px solid #353535;
  z-index: -1;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .right-menu .general-search label input {
  padding: 9px 40px 9px 10px;
  min-width: 256px;
  font-size: 14px;
  position: relative;
  background: none;
  border: none;
  outline: none;
  font-style: italic;
}
header .right-menu .general-search label button {
  background: none;
  border: none;
  outline: none;
  position: relative;
  padding: 0 6px;
}
header .right-menu .general-search label button:before {
  content: "";
  position: absolute;
  left: -2px;
  top: -6px;
  width: calc(100% + 2px);
  height: calc(100% + 12px);
  border-right: 2px solid #353535;
  background: #ffd400;
  z-index: -1;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .right-menu .site-menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .right-menu .site-menu .dropdown-toggle::after {
  display: none;
}
header .right-menu .site-menu a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  margin: 0 8px;
  color: #fffbed;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .right-menu .site-menu a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #5c0011;
  z-index: -1;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  border-right: 2px solid #353535;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .right-menu .site-menu a:last-of-type {
  margin-right: 0;
}
header .right-menu .site-menu a i {
  margin-right: 5px;
  font-size: 18px;
}
header .right-menu .site-menu a:hover {
  color: #ffd400;
}
header .right-menu .site-menu a:hover:before {
  background: #353535;
}
header .right-menu .site-menu .panel-menu-button {
  display: none;
}
header .right-menu .site-menu .dropdown .dropdown-menu {
  border: none;
  background: transparent;
  overflow: visible;
}
header .right-menu .site-menu .dropdown .dropdown-menu .dropdown-item {
  margin: 5px 0;
  background: transparent;
}
header .right-menu .site-menu .dropdown .dropdown-menu .dropdown-item:before {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
header .main-menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .main-menu nav ul li {
  display: inline-block;
  padding: 4px 5px;
  position: relative;
}
header .main-menu nav ul li a {
  font-size: 15px;
  color: #fffbed;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
header .main-menu nav ul li a:hover {
  color: #ffd400;
}
header .main-menu nav ul li .submenu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-10px);
          transform: translateX(-50%) translateY(-10px);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 720px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}
header .main-menu nav ul li .submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(0, 0, 0, 0.95);
}
header .main-menu nav ul li .submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
}
header .main-menu nav ul li .submenu li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  width: 100%;
  padding: 0;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .main-menu nav ul li .submenu li a {
  padding: 10px 5px;
  display: block;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .main-menu nav ul li .submenu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fffbed;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
header .main-menu nav ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
header .buy-btn .basket-counter {
  background: white;
  padding: 1px 4px;
  display: inline-block;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  margin-left: 3px;
  font-weight: 600;
}
header .logo {
  text-align: center;
}
header .logo a {
  max-width: 182px;
}
header .logo a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
header .menu-button {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 2px;
  padding: 10px 18px 4px;
}
header .menu-button .menu-text {
  color: White;
  margin-left: 42px;
  position: relative;
  bottom: 4px;
  font-size: 14px;
  font-weight: 500;
}
header .menu-button .hamburger-menu,
header .menu-button .hamburger-menu:after,
header .menu-button .hamburger-menu:before {
  width: 32px;
  height: 2px;
}
header .menu-button .hamburger-menu {
  position: relative;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  background: white;
  -webkit-transition: all 0ms 300ms;
  transition: all 0ms 300ms;
}
header .menu-button .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
header .menu-button .hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: white;
  -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header .menu-button .hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: white;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header .menu-button .hamburger-menu.animate:after {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header .menu-button .hamburger-menu.animate:before {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header.affix {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header.affix .menu-button .menu-text {
  color: #3d2c56;
}
header.affix .menu-button {
  border-color: #3d2c56;
}
header.affix .menu-button .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
header.affix .menu-button .hamburger-menu,
header.affix .menu-button .hamburger-menu:before,
header.affix .menu-button .hamburger-menu:after {
  background: #3d2c56;
}
header.affix .header-curtain {
  opacity: 1;
  visibility: visible;
}
header.affix .header-curtain i {
  background: rgba(255, 255, 255, 0.97);
  border-color: transparent;
}
header.affix .header-curtain i:nth-of-type(odd) {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
header.affix .header-curtain i:nth-of-type(even) {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
header.opened {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header.opened .buy-btn {
  color: #ffd400;
  border-color: #3d2c56;
}
header.opened .buy-btn:hover {
  background: #3d2c56;
  border-color: #ffd400;
}
header.opened .menu-button .menu-text {
  color: #3d2c56;
}
header.opened .menu-button {
  border-color: #3d2c56;
}
header.opened .menu-button .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
header.opened .menu-button .hamburger-menu,
header.opened .menu-button .hamburger-menu:before,
header.opened .menu-button .hamburger-menu:after {
  background: #3d2c56;
}
header.opened .header-curtain {
  opacity: 1;
  visibility: visible;
}
header.opened .header-curtain i {
  background: rgba(255, 255, 255, 0.97);
  border-color: transparent;
}
header.opened .header-curtain i:nth-of-type(odd) {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
header.opened .header-curtain i:nth-of-type(even) {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
header:not(.modern-header) a {
  color: #333 !important;
}
header:not(.modern-header) .logo-text h1, header:not(.modern-header) .logo-text span {
  color: #333 !important;
}
header:not(.modern-header) .header-actions .action-btn {
  color: #333 !important;
}
header:not(.modern-header) .header-actions .action-btn i {
  color: #333 !important;
}
header:not(.modern-header) .search-input input {
  color: #333 !important;
}
header:not(.modern-header) .search-input input::-webkit-input-placeholder {
  color: #666 !important;
}
header:not(.modern-header) .search-input input::-moz-placeholder {
  color: #666 !important;
}
header:not(.modern-header) .search-input input:-ms-input-placeholder {
  color: #666 !important;
}
header:not(.modern-header) .search-input input::-ms-input-placeholder {
  color: #666 !important;
}
header:not(.modern-header) .search-input input::placeholder {
  color: #666 !important;
}

.panel-menu {
  min-height: 60vh;
  background: linear-gradient(15deg, #24252b, #353535);
  padding: 200px 0 40px;
  z-index: 8999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.panel-menu nav {
  max-width: 1200px;
}
.panel-menu nav ul {
  text-align: center;
}
.panel-menu nav ul li {
  display: inline-block;
  padding: 10px 12px;
  text-align: center;
}
.panel-menu nav ul li a {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  padding: 5px;
}
.panel-menu nav ul li a i {
  margin-right: 5px;
}
.panel-menu nav ul li a:hover {
  color: #ffd400;
}
.panel-menu.opened {
  top: 0;
  visibility: visible;
  opacity: 1;
}

footer {
  padding: 20px 0 20px 0;
  background: linear-gradient(340deg, #24252b, #353535, #222428, black);
  position: relative;
}
footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}
footer .bottom {
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 20px 0;
  font-size: 16px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
}
footer .bottom a {
  color: rgba(255, 255, 255, 0.8);
}
footer .back-top .line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
footer .back-top .icon {
  padding: 0 10px;
}
footer .back-top .icon a {
  color: rgba(255, 255, 255, 0.8);
  width: 64px;
  height: 64px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
footer .footer-top {
  padding: 40px 0;
}
footer .footer-top .footer-card {
  margin: 15px 0;
}
footer .footer-top .footer-card i {
  min-width: 16px;
  text-align: center;
}
footer .footer-top .footer-card p {
  font-size: 13px;
  font-weight: 600;
}
footer .footer-top .footer-card .title {
  font-size: 20px;
  font-weight: 600;
  color: #ffd400;
  margin: 15px 0;
}
footer .footer-top .footer-card address {
  font-size: 15px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
footer .footer-top .footer-card p,
footer .footer-top .footer-card a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin: 3px 0;
  padding: 2px;
}
footer .footer-top .footer-card a:hover {
  color: #ffd400;
}
footer .footer-top .footer-card .footer-social li {
  display: inline-block;
  padding: 6px;
}
footer .footer-top .footer-card .footer-social li a {
  font-size: 20px;
}

.welcome-section {
  padding: 40px 0;
}
.welcome-section .show-box a {
  padding: 15px 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12.5%;
          flex: 0 0 12.5%;
  text-align: center;
}
.welcome-section .show-box a img {
  width: 85%;
  border-radius: 4px 4px 0 0;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.welcome-section .show-box a figcaption {
  margin: 0;
  color: #ffd400;
  display: block;
  position: relative;
  padding: 6px 4px;
  font-size: 14px;
  margin-top: -5px;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.welcome-section .show-box a figcaption:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #353535;
  z-index: -1;
  -webkit-transform: skewX(-12deg);
          transform: skewX(-12deg);
  border-right: 2px solid #ffd400;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.welcome-section .show-box a:hover figure figcaption {
  color: #353535;
}
.welcome-section .show-box a:hover figure figcaption:before {
  background: #ffd400;
  border-right: 2px solid #353535;
}
.welcome-section .main-banner .item-list {
  position: relative;
}
.welcome-section .main-banner .item-list:before {
  content: "";
  position: absolute;
  left: -4px;
  border-left: 4px dashed #ffd400;
  top: 30px;
  height: 50%;
}
.welcome-section .main-banner .item-list:after {
  content: "";
  position: absolute;
  right: -4px;
  border-left: 4px dashed #353535;
  bottom: 30px;
  height: 50%;
}
.welcome-section .main-banner .item-list .item {
  padding: 18px;
  border-radius: 4px;
  background: whitesmoke;
}
.welcome-section .main-banner .item-list .item a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
  height: 720px;
}
.welcome-section .main-banner .item-list .item a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.welcome-section .main-banner .item-list .slick-dots {
  position: absolute;
  right: 40px;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.welcome-section .main-banner .item-list .slick-dots li {
  padding: 4px;
}
.welcome-section .main-banner .item-list .slick-dots li button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 1;
  border-color: transparent;
  font-weight: 600;
  padding: 0;
}
.welcome-section .main-banner .item-list .slick-dots li.slick-active button {
  border-color: #353535;
  color: #353535;
}

.home-about {
  padding: 150px 0;
  position: relative;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home-about:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#1f162b), to(#2e2042));
  background: linear-gradient(to bottom, #1f162b, #2e2042);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.25);
}
.home-about .bg-shape {
  position: absolute;
  width: 360px;
  right: 100px;
  bottom: 10px;
}
.home-about .gif-area {
  text-align: center;
}
.home-about .gif-area img {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.home-about .about-box {
  background: linear-gradient(267.18deg, #1b181f 0%, #332d3b 100%);
  padding: 50px;
  border-radius: 4px;
  position: relative;
  width: calc(100% - 100px);
  margin: 0 auto;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.38);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.38);
}
.home-about .about-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 30px;
  top: 30px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-top: 4px solid white;
  border-left: 4px solid white;
  border-top-left-radius: 4px;
}
.home-about .about-box:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 30px;
  top: 30px;
  width: 100%;
  height: 100%;
  border: 4px solid #1b181f;
  border-radius: 4px;
}
.home-about .about-box .inner {
  position: relative;
  z-index: 3;
  padding: 30px 30px 0;
}
.home-about .about-box .inner h2 {
  color: White;
  font-size: 40px;
  font-weight: 700;
}
.home-about .about-box .inner h2 strong {
  color: #ff896b;
}
.home-about .about-box .inner h2 strong span {
  color: #c4cce4;
}
.home-about .about-box .inner p {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
}
.home-about .about-box .inner .inner-i {
  color: #9cd8ce;
  font-size: 24px;
  letter-spacing: 2px;
}

.home-showcase {
  padding: 20px 0 40px 0;
}
.home-showcase a {
  display: block;
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 13px rgba(0, 0, 0, 0.35);
  margin: 15px 0;
}
.home-showcase a figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  width: 100%;
}
.home-showcase a figure figcaption {
  background: #353535;
  border-bottom: 4px solid #ffd400;
  padding: 4px 10px;
  color: white;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}
.home-showcase a:hover {
  -webkit-box-shadow: 0 0 13px #ffd400;
          box-shadow: 0 0 13px #ffd400;
}

.general-product-list .item {
  margin: 20px 0;
  position: relative;
}
.general-product-list .item .image {
  background: white;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  border-bottom: 4px solid #ffd400;
  position: relative;
  z-index: 2;
}
.general-product-list .item .image a {
  display: block;
  background: white;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}
.general-product-list .item .image img {
  border-radius: 10px;
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.general-product-list .item .content {
  padding: 10px;
  border-bottom: 2px solid #353535;
  background: white;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 10px;
}
.general-product-list .item .content .product-name {
  text-align: center;
}
.general-product-list .item .content .product-name a {
  font-size: 15px;
  display: block;
}
.general-product-list .item .content .product-name a strong {
  color: #24252b;
  font-size: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 36px;
  line-height: 1.2;
}
.general-product-list .item .content .product-name a small {
  color: #353535;
  display: block;
  font-weight: 500;
}
.general-product-list .item .content .product-price {
  padding-top: 5px;
  margin-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
}
.general-product-list .item .content .product-price .discounted-price-end {
  text-align: center;
  color: #ffd400;
  display: inline-block;
  padding: 4px 8px;
  font-size: 28px;
  font-weight: 700;
}
.general-product-list .item .content .product-price .base-price {
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  font-weight: 500;
  display: inline-block;
}
.general-product-list .item .content .product-price .base-price:after {
  content: "";
  width: calc(100% + 10px);
  height: 1px;
  left: -5px;
  top: 50%;
  background-color: black;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: inline-block;
}
.general-product-list .item .content .product-price .standard-price {
  text-align: center;
  color: #353535;
  display: inline-block;
  padding: 4px 8px;
  background: #ffd400;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid #353535;
}
.general-product-list .item .content .options {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #353535;
  z-index: 2;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}
.general-product-list .item .content .options a {
  color: white;
  font-weight: 500;
  font-size: 13px;
}
.general-product-list .item .content .options a:hover {
  color: #ffd400;
}
.general-product-list .item:hover .content {
  border-color: #ffd400;
}
.general-product-list .more-button {
  text-align: center;
  margin-top: 20px;
}
.general-product-list .more-button a {
  padding: 12px 20px;
  font-size: 18px;
  border: 2px solid white;
  color: #ff0500;
  border-radius: 2px 2px 8px 8px;
}
.general-product-list .more-button a:hover {
  background: white;
}

.home-products {
  padding: 40px 0;
}
.home-products ul.nav-tabs {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  border-bottom: 1px solid #353535;
}
.home-products ul.nav-tabs .nav-item button {
  background: #353535;
  outline: none !important;
  color: white;
  font-weight: 500;
  border-bottom: 2px solid #353535;
  border-radius: 0;
  border-top: 2px solid #353535;
}
.home-products ul.nav-tabs .nav-item button.active {
  background: #ffd400;
  color: #353535;
}

.home-blog {
  padding: 40px 0 80px 0;
}
.home-blog .section-title {
  position: relative;
}
.home-blog .section-title img {
  position: absolute;
  width: 128px;
  left: 50%;
  top: -45px;
  margin-left: -274px;
}
.home-blog .blog-item {
  margin: 15px 0;
}
.home-blog .blog-item a {
  display: block;
}
.home-blog .blog-item .image {
  position: relative;
  height: 280px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}
.home-blog .blog-item .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.home-blog .blog-item strong {
  display: block;
  padding: 0 10px;
  color: #ffd400;
  font-size: 13px;
}
.home-blog .blog-item h5 {
  font-size: 22px;
  color: #353535;
  letter-spacing: 1px;
  padding: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-blog a:hover .image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 12px #ff0500;
          box-shadow: 0 0 12px #ff0500;
}
.home-blog a:hover h5 {
  color: #ff0500;
}
.home-blog .more-button {
  text-align: center;
  margin-top: 20px;
}
.home-blog .more-button a {
  padding: 12px 20px;
  font-size: 18px;
  border: 2px solid white;
  color: #ffd400;
  background: #353535;
}
.home-blog .more-button a:hover {
  background: #ffd400;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #353535;
}

.auth-pages {
  padding: 80px 0;
}

.auth-forms {
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 30px;
  border: 4px solid #ffd400;
  position: relative;
}
.auth-forms .section-head {
  margin-bottom: 30px;
  text-align: center;
}
.auth-forms .section-head h2 {
  display: inline-block;
  padding: 12px 20px;
  background: #ffd400;
  color: #353535;
}
.auth-forms:before {
  content: "";
  position: absolute;
  left: 15px;
  top: -15px;
  width: 100%;
  height: 100%;
  border-top: 2px solid #353535;
  border-right: 2px solid #353535;
  z-index: -1;
}
.auth-forms:after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: -15px;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #353535;
  border-left: 2px solid #353535;
  z-index: -1;
}
.auth-forms hr {
  border-color: rgba(255, 255, 255, 0.15);
}
.auth-forms p {
  color: #2e313a;
  font-weight: 600;
}
.auth-forms .forgot-pass {
  color: #353535;
  margin-top: 5px;
}
.auth-forms .forgot-pass:hover {
  color: #ffd400;
}
.auth-forms .bottom-content p {
  max-width: 600px;
  margin: 0 auto;
}
.auth-forms .bottom-content p a {
  color: #ffd400;
  border: 1px solid transparent;
  padding: 0 3px;
}
.auth-forms .bottom-content p a:hover {
  border-color: #ffd400;
}

.product-pages {
  padding: 80px 0;
}
.product-pages .category-head {
  margin-bottom: 20px;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 15px;
}
.product-pages .category-head figure {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-bottom: none;
}
.product-pages .category-head figure img {
  -webkit-box-shadow: 0 4px 24px rgba(255, 0, 0, 0.4);
          box-shadow: 0 4px 24px rgba(255, 0, 0, 0.4);
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 390px;
}
.product-pages .category-head figure figcaption {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  padding: 12px 24px;
  font-size: 24px;
  letter-spacing: 1px;
  color: #24252b;
  background: white;
  border-radius: 4px 16px 4px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-pages .category-head .subcategories {
  margin-top: 20px;
}
.product-pages .category-head .subcategories ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-pages .category-head .subcategories ul li {
  display: inline-block;
  padding: 6px 10px;
}
.product-pages .category-head .subcategories ul li a {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.9);
  color: #ff0500;
  border-radius: 4px;
}
.product-pages .category-head .subcategories ul li a:hover {
  background: white;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.product-pages .product-detail .card .card-header {
  background: #353535;
}
.product-pages .product-detail .card .card-header .card-title {
  color: #ffd400;
  font-size: 18px;
  margin: 5px 0;
}
.product-pages .product-detail .product-slider {
  margin: 15px 0;
}
.product-pages .product-detail .product-slider .item-list .item {
  padding: 14px;
  background: #fffbed;
}
.product-pages .product-detail .product-slider .item-list .item a {
  display: block;
  background: white;
}
.product-pages .product-detail .product-slider .item-list .item a img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.product-pages .product-detail .product-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
.product-pages .product-detail .product-slider .slick-dots li {
  padding: 3px;
}
.product-pages .product-detail .product-slider .slick-dots li button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  font-weight: 600;
  background: #ffd400;
  color: #353535;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
}
.product-pages .product-detail .product-slider .slick-dots li.slick-active button {
  background: #ffd400;
}
.product-pages .product-tags {
  margin: 15px 0;
  padding-left: 25px;
}
.product-pages .product-tags .product-variations .variation-group {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: black;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.product-pages .product-tags .product-variations .variation-group .title,
.product-pages .product-tags .product-variations .variation-group .value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 4px 10px;
}
.product-pages .product-tags .product-variations .variation-group .title {
  color: darkgray;
  border-right: 1px dashed darkgray;
}
.product-pages .product-tags .product-variations .variation-group .value {
  color: #fffbed;
  text-align: center;
}
.product-pages .product-tags .order-features {
  margin-top: 15px;
}
.product-pages .product-tags .order-features .features-item {
  background: lightgray;
  color: #353535;
  padding: 6px 10px;
  border-radius: 4px;
  margin: 10px 0;
  height: calc(100% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 13px;
}
.product-pages .product-tags .order-features .features-item .icon {
  margin-bottom: 6px;
  font-size: 20px;
  width: 100%;
  color: #ff0500;
}
.product-pages .product-orders {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.product-pages .product-orders .product-price {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-pages .product-orders .product-price .first-price {
  font-size: 36px;
  color: #ffd400;
  padding: 6px 12px;
  font-weight: 600;
  margin: 10px 20px;
  border: 2px solid #ffd400;
}
.product-pages .product-orders .product-price .second-price {
  color: White;
  position: relative;
  padding: 4px 12px;
  font-size: 26px;
  opacity: 0.7;
}
.product-pages .product-orders .product-price .second-price:after {
  content: "";
  width: calc(100% + 10px);
  height: 2px;
  left: -5px;
  top: 50%;
  background-color: #ffd400;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.product-pages .product-content {
  font-size: 14px;
  background: linear-gradient(45deg, black, #3d2c56);
  padding: 20px 30px;
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.8) !important;
}
.product-pages .product-content p {
  color: rgba(255, 255, 255, 0.8) !important;
}
.product-pages .product-content h1 {
  color: #ffd400;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.product-pages .product-content .buttons .btn-one {
  color: #ffd400;
  font-size: 20px;
}
.product-pages .other-products {
  margin-top: 40px;
}

.item-filters .filter-group {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  position: relative;
  overflow: hidden;
  margin: 15px 0;
}
.item-filters h2 {
  padding: 10px;
  color: #fff;
  background: linear-gradient(35deg, #353535, #24252b);
  border-bottom: 2px solid #ffd400;
  font-size: 15px;
  font-weight: 600;
}
.item-filters ul {
  padding: 5px 5px 15px;
}
.item-filters ul li a {
  font-size: 14px;
  color: #24252b;
}
.item-filters ul li a i {
  margin-right: 4px;
}
.item-filters ul li a.active-link {
  color: #ffd400;
  font-weight: 600;
}

.complex-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px;
}
.complex-input button {
  padding: 8px 12px;
  background: black;
  border: 1px solid #fffbed;
  margin: 0 5px;
  color: #fffbed;
}
.complex-input button:hover {
  border-color: #ffd400;
}
.complex-input input {
  color: #fffbed;
  width: 100px;
  text-align: center;
  padding: 8px 12px;
  background: black;
  border: 1px solid #fffbed;
}

ul.pagination {
  margin-top: 20px;
}
ul.pagination .page-item .page-link {
  color: #F5B301;
}
ul.pagination .page-item .page-link:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(245, 179, 1, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(245, 179, 1, 0.25);
}
ul.pagination .page-item.disabled .page-link {
  color: #6c757d;
}
ul.pagination .page-item.active .page-link {
  border-color: #F5B301;
  background: #F5B301;
  color: white;
}

.shopping-pages {
  padding: 80px 0;
}
.shopping-pages .order-item-list {
  padding: 20px 10px;
  border: 2px solid rgba(245, 179, 1, 0.3);
  margin: 15px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 8px;
}
.shopping-pages .order-item-list h2 {
  color: #F5B301;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.shopping-pages .order-item-list .item-list {
  padding: 15px 0;
  margin: 15px 0;
  border-top: 1px solid rgba(245, 179, 1, 0.2);
  border-bottom: 1px solid rgba(245, 179, 1, 0.2);
}
.shopping-pages .order-item-list .other-operations a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.shopping-pages .order-item-list .other-operations a:hover {
  color: #F5B301;
}
.shopping-pages .order-item-list .item {
  margin: 10px 0;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(245, 179, 1, 0.2);
}
.shopping-pages .order-item-list .item:last-of-type {
  border-bottom: none;
}
.shopping-pages .order-item-list .item .image img {
  max-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  border: 2px solid rgba(245, 179, 1, 0.2);
}
.shopping-pages .order-item-list .item .name {
  text-align: center;
}
.shopping-pages .order-item-list .item .name a {
  color: #fff;
  font-weight: 600;
}
.shopping-pages .order-item-list .item .name a:hover {
  color: #F5B301;
}
.shopping-pages .order-item-list .item .total-number {
  text-align: center;
  color: white;
}
.shopping-pages .order-item-list .item .total-number .complex-input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  border: 2px solid rgba(245, 179, 1, 0.3);
  border-radius: 4px;
  overflow: hidden;
}
.shopping-pages .order-item-list .item .total-number .complex-input input {
  width: auto;
  max-width: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  font-weight: 600;
  color: #fff;
  padding: 4px 6px;
  font-size: 13px;
}
.shopping-pages .order-item-list .item .total-number .complex-input button {
  font-size: 13px;
  padding: 4px 6px;
  background: rgba(245, 179, 1, 0.2);
  border: none;
  color: #F5B301;
  cursor: pointer;
}
.shopping-pages .order-item-list .item .total-number .complex-input button:hover {
  background: #F5B301;
  color: #1a1a1a;
}
.shopping-pages .order-item-list .item .price {
  margin: 10px 15px;
  color: #F5B301;
  font-size: 20px;
  font-weight: 700;
  min-width: 100px;
  text-align: center;
}
.shopping-pages .order-item-list .item .item-delete button {
  background: rgba(220, 53, 69, 0.2);
  border: 2px solid rgba(220, 53, 69, 0.5);
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}
.shopping-pages .order-item-list .item .item-delete button:hover {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}
.shopping-pages .order-summary {
  padding: 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  margin: 15px 0;
  border: 2px solid rgba(245, 179, 1, 0.3);
  border-radius: 8px;
}
.shopping-pages .order-summary h2 {
  background: linear-gradient(135deg, #F5B301, #FFC933);
  color: #1a1a1a;
  font-size: 20px;
  padding: 10px 5px;
  border-bottom: 2px solid rgba(245, 179, 1, 0.3);
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.shopping-pages .order-summary .content {
  text-align: center;
  color: #fff;
}
.shopping-pages .order-summary .content .count-item {
  padding: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(245, 179, 1, 0.2);
  color: rgba(255, 255, 255, 0.8);
}
.shopping-pages .order-summary .content .price-inner {
  color: rgba(255, 255, 255, 0.8);
}
.shopping-pages .order-summary .content .price-inner .part {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 179, 1, 0.1);
}
.shopping-pages .order-summary .content .total-price {
  border-top: 2px solid rgba(245, 179, 1, 0.3);
  margin: 15px 0;
  padding: 10px 0;
}
.shopping-pages .order-summary .content .total-price h3 {
  font-size: 20px;
  margin: 0;
  color: #F5B301;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.shopping-pages .order-summary .content .total-price .amount {
  padding-top: 5px;
  font-size: 24px;
  color: #F5B301;
  font-weight: 700;
}
.shopping-pages .order-summary .content .total-price .amount span {
  display: inline-block;
  background: rgba(245, 179, 1, 0.1);
  padding: 8px 15px;
  border-radius: 4px;
  border: 2px solid rgba(245, 179, 1, 0.3);
}
.shopping-pages .auth-control .auth-forms {
  height: calc(100% - 30px);
  margin: 15px 0;
}
.shopping-pages .order-confirmation .form-group label {
  color: rgba(0, 0, 0, 0.85);
}
.shopping-pages .order-confirmation .btn-one {
  background: linear-gradient(135deg, #F5B301, #FFC933) !important;
  color: #1a1a1a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
}
.shopping-pages .order-confirmation .btn-one:hover {
  background: linear-gradient(135deg, #E5A301, #F5B301) !important;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
}
.shopping-pages .order-confirmation hr {
  border-color: rgba(0, 0, 0, 0.25);
}
.shopping-pages .order-confirmation .confirmation-group {
  padding: 20px 10px;
  margin: 30px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
}
.shopping-pages .order-confirmation .confirmation-group h2 {
  font-size: 20px;
  color: #353535;
  border-bottom: 2px dashed rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  text-align: center;
}
.shopping-pages .order-confirmation .order-form .form-group {
  padding: 8px 0;
}
.shopping-pages .order-confirmation .order-form .form-group input,
.shopping-pages .order-confirmation .order-form .form-group textarea {
  font-size: 14px;
}
.shopping-pages .order-confirmation .address-selection {
  padding: 10px;
}
.shopping-pages .order-confirmation .address-selection .address-group {
  height: calc(100% - 30px);
  margin: 15px 0;
}
.shopping-pages .order-confirmation .address-selection .address-group label {
  display: block;
  height: 100%;
  padding: 20px 12px;
  text-align: center;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid rgba(245, 179, 1, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  color: white;
  border-radius: 4px;
}
.shopping-pages .order-confirmation .address-selection .address-group label:hover {
  -webkit-box-shadow: 0 0 14px rgba(245, 179, 1, 0.5);
          box-shadow: 0 0 14px rgba(245, 179, 1, 0.5);
  border-color: #F5B301;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shopping-pages .order-confirmation .address-selection .address-group label.checked {
  border-color: #F5B301;
  background: rgba(245, 179, 1, 0.1);
}
.shopping-pages .order-confirmation .address-selection .address-group label strong {
  color: #F5B301;
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.shopping-pages .order-confirmation table {
  border-radius: 6px;
  font-size: 14px;
}
.shopping-pages .order-confirmation table th {
  border-top: none;
}
.shopping-pages .order-confirmation .order-result {
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 15px;
  border-radius: 4px;
  border: 2px solid rgba(245, 179, 1, 0.3);
}
.shopping-pages .order-confirmation .order-result .result-group {
  padding: 8px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  white-space: nowrap;
  min-width: 400px;
}
.shopping-pages .order-confirmation .order-result .result-group .tag,
.shopping-pages .order-confirmation .order-result .result-group .value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  font-size: 14px;
}
.shopping-pages .order-confirmation .order-result .result-group .tag strong,
.shopping-pages .order-confirmation .order-result .result-group .value strong {
  color: #F5B301;
  font-size: 18px;
  font-weight: 700;
}
.shopping-pages .order-confirmation .order-result .result-group .tag {
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  border-right: 1px solid rgba(245, 179, 1, 0.3);
}
.shopping-pages .order-confirmation .order-result .result-group .value {
  text-align: center;
  color: #fff;
}
.shopping-pages .order-confirmation .order-result .result-group .value button {
  border-radius: 4px;
  border: 2px solid #F5B301;
  font-weight: 700;
  color: #F5B301;
  font-size: 14px;
  background: rgba(245, 179, 1, 0.1);
  text-transform: uppercase;
}
.shopping-pages .order-confirmation .order-result .result-group .value button:hover {
  background: #F5B301;
  color: #1a1a1a;
}
.shopping-pages .order-confirmation .confirm-order {
  color: #fff;
  margin-top: 30px;
}
.shopping-pages .order-confirmation .confirm-order a {
  color: #F5B301;
  font-weight: 700;
}

.general-response .content {
  padding: 60px 50px;
  text-align: center;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, left bottom, from(#090a0b), to(#393a3d));
  background: linear-gradient(to bottom, #090a0b, #393a3d);
}
.general-response .content .icon {
  max-width: 100px;
  margin: 0 auto 30px;
}
.general-response .content .icon img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.general-response .content p {
  color: rgba(255, 255, 255, 0.8);
}
.general-response .content strong {
  color: #ffd400;
  letter-spacing: 1px;
}
.general-response .content i {
  color: #ffd400;
}

.customer-panel {
  padding: 80px 0;
}
.customer-panel .user-head {
  position: relative;
  margin-bottom: 50px;
}
.customer-panel .user-head:after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 0;
  width: 100%;
  height: 2px;
  background: #353535;
  z-index: -1;
}
.customer-panel .user-head p {
  margin: 0;
  font-size: 20px;
  color: #fff;
  padding: 5px;
}
.customer-panel .user-head p:first-of-type {
  font-size: 28px;
  color: #1a1a1a;
  font-weight: 700;
}
.customer-panel .user-head p:last-of-type {
  display: inline-block;
  padding-right: 10px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  line-height: 1;
  color: #fff;
}
.customer-panel .user-head p strong {
  color: #F5B301;
  font-weight: 900;
}
.customer-panel .order-status.o-created {
  color: yellow !important;
}
.customer-panel .order-status.o-approved {
  color: springgreen !important;
}
.customer-panel .order-status.o-shipped {
  color: #2ecbff !important;
}
.customer-panel .order-status.o-cancelled {
  color: #ff2f2f !important;
}
.customer-panel .order-status.o-received_by_customer {
  color: lightgray !important;
}
.customer-panel .btn-delete {
  color: #dc3545;
  padding: 3px;
  margin: 3px 6px;
  font-size: 16px;
  font-weight: 600;
}
.customer-panel .btn-delete:hover {
  color: #fff;
  background: #dc3545;
  border-radius: 4px;
}
.customer-panel .btn-edit {
  color: #F5B301;
  padding: 3px;
  margin: 3px 6px;
  font-size: 16px;
  font-weight: 600;
}
.customer-panel .btn-edit:hover {
  color: #1a1a1a;
  background: #F5B301;
  border-radius: 4px;
}
.customer-panel .my-profile .info-category .info-group {
  border: 2px solid rgba(245, 179, 1, 0.3);
  color: #1a1a1a;
  height: calc(100% - 30px);
  margin: 15px 0;
  padding: 15px 25px;
  background: #fff;
  border-radius: 4px;
}
.customer-panel .my-profile .info-category .info-group h5 {
  color: #F5B301;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.customer-panel table.orders-table {
  border-radius: 0;
  font-size: 14px;
}
.customer-panel table.orders-table th {
  border-top: none;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.customer-panel table.orders-table th:last-of-type {
  border-right: none;
}
.customer-panel table.orders-table td {
  text-align: center;
  vertical-align: middle;
}
.customer-panel table.orders-table td .btn-one {
  font-size: 13px;
  padding: 4px 8px;
}
.customer-panel table.orders-table td .btn-one i {
  margin: 0 3px;
}
.customer-panel .my-orders .order-filters {
  margin-bottom: 30px;
}
.customer-panel .my-orders .order-filters ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.customer-panel .my-orders .order-filters ul li {
  padding: 5px;
}
.customer-panel .my-orders .order-filters ul li a {
  padding: 4px 7px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid rgba(245, 179, 1, 0.3);
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.customer-panel .my-orders .order-filters ul li a:hover {
  border-color: #F5B301;
  color: #F5B301;
}
.customer-panel .my-orders .order-filters ul li a.active-filter {
  border-color: #F5B301;
  background: rgba(245, 179, 1, 0.1);
  color: #F5B301;
  -webkit-box-shadow: 0 0 6px rgba(245, 179, 1, 0.5);
          box-shadow: 0 0 6px rgba(245, 179, 1, 0.5);
}
.customer-panel .order-detail-page .order-detail-group {
  padding: 20px 10px;
  border: 2px solid rgba(245, 179, 1, 0.3);
  margin: 15px 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.2);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.2);
  height: calc(100% - 30px);
}
.customer-panel .order-detail-page .order-detail-group h2 {
  font-size: 18px;
  color: #F5B301;
  border-bottom: 2px solid rgba(245, 179, 1, 0.3);
  padding-bottom: 10px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.customer-panel .order-detail-page .order-detail-group table {
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 0;
}
.customer-panel .order-detail-page .order-detail-group table th {
  border-top: none;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.customer-panel .order-detail-page .order-detail-group table td {
  text-align: center;
  vertical-align: middle;
  border-top: none;
}
.customer-panel .order-detail-page .order-detail-group table td {
  color: rgba(255, 255, 255, 0.8);
}
.customer-panel .order-detail-page .order-detail-group table td a {
  color: #F5B301;
  font-weight: 600;
}
.customer-panel .order-detail-page .order-detail-group table td a:hover {
  color: #FFC933;
}
.customer-panel .order-detail-page .order-detail-group table td .btn-one {
  font-size: 13px;
  padding: 4px 8px;
}
.customer-panel .order-detail-page .order-detail-group table td .btn-one i {
  margin: 0 3px;
}
.customer-panel .order-detail-page .order-detail-group table td strong {
  font-size: 16px;
}
.customer-panel .my-favorites .general-product-list .item-list .item {
  overflow: hidden;
}
.customer-panel .my-favorites .general-product-list .item-list .item .discard-item {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -100px;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.customer-panel .my-favorites .general-product-list .item-list .item .discard-item button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px;
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  border-radius: 4px;
  color: White;
  font-size: 13px;
  white-space: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
          box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid rgba(220, 53, 69, 0.5);
}
.customer-panel .my-favorites .general-product-list .item-list .item .discard-item button i {
  margin-right: 5px;
}
.customer-panel .my-favorites .general-product-list .item-list .item:hover .discard-item {
  opacity: 1;
  z-index: 2;
  bottom: 52px;
}

.customer-sidebar {
  margin-bottom: 30px;
}
.customer-sidebar .page-item {
  margin-bottom: 15px;
}
.customer-sidebar .page-item a {
  display: block;
  background: linear-gradient(45deg, black, #24252b);
  padding: 18px 12px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.customer-sidebar .page-item a .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-bottom: 10px;
}
.customer-sidebar .page-item a .title h3 {
  padding: 12px 10px;
  color: white;
  font-size: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  margin: 0;
}
.customer-sidebar .page-item a .content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customer-sidebar .page-item a:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.customer-sidebar .page-item.active-page a {
  background: linear-gradient(-15deg, #353535, #ffd400);
}

.corporate-pages {
  padding: 80px 0;
}
.corporate-pages .about-us .logo {
  background: #fffbed;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 20px #ff0500;
          box-shadow: 0 0 20px #ff0500;
  padding: 50px;
  margin: 30px 0;
}
.corporate-pages .about-us .about-header {
  margin-bottom: 30px;
}
.corporate-pages .about-us .about-header small {
  color: #fffbed;
}
.corporate-pages .about-us .about-header h1 {
  color: #ff0500;
}
.corporate-pages .about-us p {
  color: #a8a8a8;
}
.corporate-pages .about-us .about-blocks {
  margin: 15px 0;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.corporate-pages .about-us .about-blocks:hover {
  -webkit-box-shadow: 0 0 26px #ff0500;
          box-shadow: 0 0 26px #ff0500;
}
.corporate-pages .about-us .about-blocks .icon {
  color: #ff0500;
  font-size: 36px;
}
.corporate-pages .about-us .about-blocks h2 {
  color: #ff0500;
}
.corporate-pages .about-us .about-blocks p {
  color: #a8a8a8;
}
.corporate-pages .contact-us .contact-blocks {
  margin: 15px 0;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100% - 30px);
}
.corporate-pages .contact-us .contact-blocks .icon {
  font-size: 50px;
  color: #ff0500;
  border-right: 2px solid;
  padding-right: 22px;
  margin-right: 20px;
}
.corporate-pages .contact-us .contact-blocks .content h3 {
  font-size: 20px;
  color: white;
}
.corporate-pages .contact-us .contact-blocks .content a,
.corporate-pages .contact-us .contact-blocks .content address {
  color: #a8a8a8;
}
.corporate-pages .contact-us .contact-blocks .content a:hover,
.corporate-pages .contact-us .contact-blocks .content address:hover {
  color: White;
}
.corporate-pages .default-pages {
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
}
.corporate-pages .default-pages a,
.corporate-pages .default-pages p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
}

.general-blog-list .blog-item {
  margin: 20px 0;
}
.general-blog-list .blog-item a {
  display: block;
}
.general-blog-list .blog-item a:hover .image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 12px #ff0500;
          box-shadow: 0 0 12px #ff0500;
}
.general-blog-list .blog-item a:hover h5 {
  color: #ff0500;
}
.general-blog-list .blog-item .image {
  position: relative;
  height: 240px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  border-radius: 5px;
}
.general-blog-list .blog-item .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.general-blog-list .blog-item strong {
  display: block;
  padding: 0 10px;
  color: white;
  font-size: 13px;
}
.general-blog-list .blog-item h5 {
  font-size: 22px;
  color: White;
  letter-spacing: 1px;
  padding: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blogs-page {
  padding: 80px 0;
}
.blogs-page .blog-detail .blog-head {
  max-width: 1140px;
  padding: 0 300px 0 0;
  position: relative;
  margin: 0 auto;
}
.blogs-page .blog-detail .blog-head .banner-image a {
  display: block;
  padding: 15px;
  border-radius: 6px;
  background: #fffbed;
}
.blogs-page .blog-detail .blog-head .banner-image a img {
  -webkit-box-shadow: 0 0 30px dimgrey;
          box-shadow: 0 0 30px dimgrey;
  border-radius: 6px;
}
.blogs-page .blog-detail .blog-head .blog-tag {
  position: absolute;
  right: 0;
  width: 400px;
  top: 50px;
  background: #fffbed;
  border-radius: 6px;
  padding: 30px 20px;
  -webkit-box-shadow: 0 0 40px #b40000;
          box-shadow: 0 0 40px #b40000;
  text-align: center;
}
.blogs-page .blog-detail .blog-head .blog-tag h1 {
  font-size: 28px;
  font-weight: 600;
  color: #ff0500;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.blogs-page .blog-detail .blog-head .blog-tag .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 600;
  color: dimgrey;
}
.blogs-page .blog-detail .blog-content {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}
.blogs-page .blog-detail .blog-content p,
.blogs-page .blog-detail .blog-content a {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1440px) {
  .container {
    max-width: 1340px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}
@media (max-width: 1439px) {
  .welcome-section .main-banner .item-list .item a {
    height: 600px;
  }
  .home-categories .category-list .list-item a figure img {
    height: 300px;
  }
  .general-product-list .item .image img {
    height: 126px;
  }
}
@media (max-width: 1199px) {
  header .header-main .category-menu {
    display: none;
  }
  header .header-main .site-menu {
    padding: 8px 0 8px 0;
    border-left: none;
    margin-left: 0;
  }
  header .header-main .site-menu .panel-menu-button {
    display: inline-block;
  }
  .panel-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .welcome-section .main-banner .item-list .item a {
    height: 500px;
  }
  .home-about .content .head h1 {
    font-size: 36px;
  }
  .home-categories .category-list .list-item a figure img {
    height: 250px;
  }
  .general-product-list .item .image img {
    height: 146px;
  }
  .shopping-pages .order-item-list .item .total-number {
    text-align: center;
    width: 100%;
  }
  .shopping-pages .order-item-list .item .price {
    margin: 10px 0;
    text-align: center;
    width: 100%;
  }
  .shopping-pages .order-item-list .item .item-delete {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 991px) {
  header .logo a {
    max-width: 100px;
  }
  header .header-right .header-main {
    display: none;
  }
  header .header-top {
    border: none;
  }
  header .header-top .contact-menu a {
    font-size: 0;
  }
  header.affix {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    overflow: hidden;
    visibility: hidden;
    top: -200px;
  }
  footer {
    padding-bottom: 50px;
  }
  .mobile-footer-nav {
    display: block;
  }
  .welcome-section .main-banner .item-list .item a {
    height: 360px;
  }
  .welcome-section .main-banner .item-list .slick-dots li button {
    font-size: 14px;
  }
  .panel-menu ul li a {
    font-size: 16px;
  }
  .panel-menu {
    padding: 110px 20px 60px;
  }
  body.affix .panel-menu {
    padding: 30px 20px 60px;
  }
  .home-about .content .head h1 {
    font-size: 32px;
  }
  .section-head h1,
  .section-head h2,
  .section-head h3 {
    font-size: 28px;
  }
  .home-categories .category-list .list-item a figure img {
    height: 180px;
  }
  .general-product-list .item .image img {
    height: 168px;
  }
  .home-categories .category-list .list-item a figure figcaption {
    font-size: 20px;
  }
  .general-product-list .more-button a,
  .home-blog .more-button a {
    font-size: 16px;
  }
  .shopping-pages .order-item-list h2 {
    font-size: 20px;
  }
  .shopping-pages .order-item-list .item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .shopping-pages .order-item-list .item-list .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 20px);
            flex: 0 0 calc(50% - 20px);
    text-align: center;
    margin: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    height: 100%;
  }
  .shopping-pages .order-item-list .item-list .item .image {
    margin-bottom: 10px;
  }
  .shopping-pages .order-item-list .item-list .item .name {
    margin-bottom: 10px;
  }
  .home-about .content {
    padding-right: 0;
  }
  .customer-panel .user-head p:first-of-type {
    font-size: 24px;
  }
  .customer-panel .user-head p {
    font-size: 18px;
  }
  .customer-panel table.orders-table th {
    font-size: 14px;
  }
  .customer-panel table.orders-table td {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .welcome-section .main-banner .item-list .item a {
    height: 260px;
  }
  .welcome-section .main-banner .item-list .slick-dots li button {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
  header .header-top .corporate-menu a {
    font-size: 14px;
  }
  header .header-top .corporate-menu a .icon {
    font-size: 20px;
  }
  .mobile-footer-nav ul li a img {
    width: 24px;
  }
  .mobile-footer-nav ul li .menu-item-title {
    font-size: 13px;
  }
  .panel-menu ul li a {
    font-size: 15px;
  }
  .panel-menu ul li .submenu ul li a {
    font-size: 13px;
  }
  header .logo a {
    max-width: 90px;
  }
  footer .bottom {
    text-align: center;
  }
  .panel-menu {
    padding: 90px 20px 60px;
  }
  body.affix .panel-menu {
    padding: 30px 20px 60px;
  }
  .home-about .content ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .home-about .content .head h1 {
    font-size: 28px;
  }
  .home-about .content .head {
    margin-bottom: 25px;
  }
  .section-head h1,
  .section-head h2,
  .section-head h3 {
    font-size: 24px;
  }
  .section-head .icon {
    max-width: 36px;
  }
  .home-categories .category-list .list-item a figure img {
    height: 280px;
  }
  .general-product-list .item .image img {
    height: 270px;
  }
  .home-categories .category-list .list-item a figure figcaption {
    font-size: 16px;
  }
  .general-product-list .more-button a,
  .home-blog .more-button a {
    font-size: 14px;
  }
  .breadcrumb .direction .link a,
  .breadcrumb .direction .link.current-page {
    font-size: 13px;
  }
  .shopping-pages .order-item-list h2 {
    font-size: 16px;
  }
  .shopping-pages .order-item-list .other-operations a {
    font-size: 14px;
    text-align: center;
    display: block;
    margin: 5px auto;
  }
  .shopping-pages,
  .product-pages,
  .corporate-pages,
  .auth-pages,
  .customer-panel,
  .blogs-page {
    padding: 40px 0;
  }
  .auth-forms p,
  .auth-forms .forgot-pass {
    font-size: 14px;
  }
  .form-one .form-group .input-style {
    font-size: 14px;
  }
  .btn-one {
    font-size: 14px;
  }
  .auth-forms {
    padding: 20px 10px;
  }
  .customer-panel .user-head p:first-of-type {
    font-size: 20px;
  }
  .customer-panel .user-head p {
    font-size: 16px;
  }
  .corporate-pages .contact-us .contact-blocks .content h3 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .welcome-section .main-banner .item-list .slick-dots li button {
    font-size: 12px;
    width: 22px;
    height: 22px;
  }
  header .header-top .contact-menu {
    display: none;
  }
  .mobile-footer-nav ul li .menu-item-title {
    display: none;
  }
  .home-about .content .head h1 {
    font-size: 22px;
  }
  .home-about .content p {
    font-size: 13px;
  }
  .section-head h1,
  .section-head h2,
  .section-head h3 {
    font-size: 20px;
  }
  .section-head .icon {
    max-width: 28px;
  }
  .home-categories .category-list .list-item a figure img {
    height: auto;
    max-height: 200px;
  }
  .general-product-list .item .image img {
    max-height: 270px;
    height: auto;
  }
  .home-categories .category-list .list-item a figure figcaption {
    font-size: 14px;
  }
  .shopping-pages .order-item-list .item-list .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 10px 0;
  }
}
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-box-shadow 0.25s ease, box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease, box-shadow 0.25s ease;
}
.modern-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F5B301, transparent);
  z-index: 1;
}
.modern-header .header-top {
  position: relative;
  z-index: 9999;
  padding: 20px 0;
  border-bottom: 1px solid rgba(245, 179, 1, 0.2);
  background: transparent;
  opacity: 1;
  display: grid;
  grid-template-rows: 1fr;
  -webkit-transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding-block 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, border-color 0.3s ease;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding-block 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, border-color 0.3s ease;
}
.modern-header .header-top > .container {
  min-height: 0;
  overflow: visible;
}
.modern-header.scrolled .header-top > .container {
  overflow: hidden;
}
.modern-header .header-top .header-top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: center;
  gap: 30px;
}
.modern-header .header-top .header-top-content .logo-section {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.modern-header .header-top .header-top-content .logo-section .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 72px;
  padding: 8px 14px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(245, 179, 1, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.modern-header .header-top .header-top-content .logo-section .logo:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.38);
}
.modern-header .header-top .header-top-content .logo-section .logo img {
  max-height: 82px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: none;
          filter: none;
}
.modern-header .header-top .header-top-content .logo-section .logo:hover img {
  -webkit-filter: none;
          filter: none;
}
.modern-header .header-top .header-top-content .logo-section .logo .logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #F5B301, #FFF4D6);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
}
.modern-header .header-top .header-top-content .logo-section .logo .logo-icon i {
  color: #fff;
  font-size: 20px;
}
.modern-header .header-top .header-top-content .logo-section .logo .logo-text h1 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
  letter-spacing: 2px;
  font-family: "Playfair Display", serif;
}
.modern-header .header-top .header-top-content .logo-section .logo .logo-text span {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}
.modern-header .header-top .header-top-content .search-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.modern-header .header-top .header-top-content .search-section .search-input {
  position: relative;
}
.modern-header .header-top .header-top-content .search-section .search-input input {
  width: 280px;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  backdrop-filter: blur(10px);
}
.modern-header .header-top .header-top-content .search-section .search-input input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modern-header .header-top .header-top-content .search-section .search-input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modern-header .header-top .header-top-content .search-section .search-input input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modern-header .header-top .header-top-content .search-section .search-input input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modern-header .header-top .header-top-content .search-section .search-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.modern-header .header-top .header-top-content .search-section .search-input input:focus {
  outline: none;
  border-color: #F5B301 !important;
  background: rgba(255, 255, 255, 0.15) !important;
  -webkit-box-shadow: 0 0 20px rgba(245, 179, 1, 0.3);
          box-shadow: 0 0 20px rgba(245, 179, 1, 0.3);
  color: #fff !important;
}
.modern-header .header-top .header-top-content .search-section .search-btn {
  background: linear-gradient(135deg, #F5B301, #FFC933);
  border: 2px solid #F5B301;
  border-radius: 4px;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
}
.modern-header .header-top .header-top-content .search-section .search-btn i {
  color: #fff;
  font-size: 16px;
}
.modern-header .header-top .header-top-content .search-section .search-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(245, 179, 1, 0.6);
          box-shadow: 0 6px 20px rgba(245, 179, 1, 0.6);
  background: linear-gradient(135deg, #FFC933, #F5B301);
}
.modern-header .header-top .header-top-content .header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.modern-header .header-top .header-top-content .header-actions .action-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 4px;
  padding: 10px 20px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}
.modern-header .header-top .header-top-content .header-actions .action-btn i {
  font-size: 14px;
  color: #fff !important;
}
.modern-header .header-top .header-top-content .header-actions .action-btn span {
  color: #fff !important;
}
.modern-header .header-top .header-top-content .header-actions .action-btn,
.modern-header .header-top .header-top-content .header-actions .action-btn * {
  color: #fff !important;
}
.modern-header .header-top .header-top-content .header-actions .action-btn:hover {
  border-color: #F5B301 !important;
  background: rgba(245, 179, 1, 0.2) !important;
  color: #F5B301 !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
  text-decoration: none;
}
.modern-header .header-top .header-top-content .header-actions .action-btn:hover,
.modern-header .header-top .header-top-content .header-actions .action-btn:hover * {
  color: #F5B301 !important;
}
.modern-header .header-top .header-top-content .header-actions .action-btn.cart-btn {
  position: relative;
}
.modern-header .header-top .header-top-content .header-actions .action-btn.cart-btn .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #F5B301, #FFC933);
  color: #1a1a1a;
  border-radius: 4px;
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid #1a1a1a;
  -webkit-box-shadow: 0 2px 8px rgba(245, 179, 1, 0.5);
          box-shadow: 0 2px 8px rgba(245, 179, 1, 0.5);
}
.modern-header .header-top .header-top-content .header-actions .dropdown {
  position: relative;
  z-index: 100000;
}
.modern-header .header-top .header-top-content .header-actions .dropdown .dropdown-menu {
  border: 2px solid rgba(245, 179, 1, 0.3);
  border-radius: 4px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  margin-top: 10px;
  z-index: 100001;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  pointer-events: auto;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
}
.modern-header .header-top .header-top-content .header-actions .dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F5B301, transparent);
}
.modern-header .header-top .header-top-content .header-actions .dropdown .dropdown-menu.show {
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  display: block !important;
}
.modern-header .header-top .header-top-content .header-actions .dropdown .dropdown-menu:not(.show) {
  opacity: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  display: none !important;
}
.modern-header .header-top .header-top-content .header-actions .dropdown .dropdown-menu .dropdown-item {
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
}
.modern-header .header-top .header-top-content .header-actions .dropdown .dropdown-menu .dropdown-item i {
  font-size: 14px;
  width: 16px;
  text-align: center;
  color: #F5B301;
}
.modern-header .header-top .header-top-content .header-actions .dropdown .dropdown-menu .dropdown-item:hover {
  background: rgba(245, 179, 1, 0.2);
  color: #F5B301;
  text-decoration: none;
  padding-left: 25px;
}
.modern-header .header-top .header-top-content .header-actions .dropdown .dropdown-menu .dropdown-item:first-child {
  border-bottom: 1px solid rgba(245, 179, 1, 0.3);
  margin-bottom: 5px;
  padding-bottom: 15px;
}
.modern-header .main-menu {
  position: relative;
  z-index: 9990;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  border-bottom: none;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  border-top: 1px solid rgba(245, 179, 1, 0.2);
}
.modern-header .main-menu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F5B301, transparent);
}
.modern-header .main-menu nav .main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.modern-header .main-menu nav .main-nav li {
  position: relative;
  padding: 15px 0;
}
.modern-header .main-menu nav .main-nav li a {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.modern-header .main-menu nav .main-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #F5B301, #FFC933);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(245, 179, 1, 0.5);
          box-shadow: 0 2px 8px rgba(245, 179, 1, 0.5);
}
.modern-header .main-menu nav .main-nav li a:hover {
  color: #F5B301;
  background: rgba(245, 179, 1, 0.1);
}
.modern-header .main-menu nav .main-nav li a:hover::after {
  width: 80%;
}
.modern-header .main-menu nav .main-nav li .submenu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-10px);
          transform: translateX(-50%) translateY(-10px);
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 25px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 720px;
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(245, 179, 1, 0.3);
  z-index: 1000;
}
.modern-header .main-menu nav .main-nav li .submenu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F5B301, transparent);
}
.modern-header .main-menu nav .main-nav li .submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.modern-header .main-menu nav .main-nav li .submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.modern-header .main-menu nav .main-nav li .submenu li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  width: 100%;
  padding: 0;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modern-header .main-menu nav .main-nav li .submenu li a {
  padding: 12px 8px;
  display: block;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  text-transform: none;
  letter-spacing: normal;
  border: 1px solid transparent;
}
.modern-header .main-menu nav .main-nav li .submenu li a::after {
  display: none;
}
.modern-header .main-menu nav .main-nav li .submenu li a:hover {
  background: rgba(245, 179, 1, 0.2);
  color: #F5B301;
  border-color: rgba(245, 179, 1, 0.5);
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
}
.modern-header .main-menu nav .main-nav li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
.modern-header.scrolled .header-top {
  grid-template-rows: 0fr;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
  border-bottom-color: transparent;
}
.modern-header.scrolled .main-menu {
  top: 0;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-top: none;
  margin-top: 0;
  padding: 0;
}
.modern-header.scrolled .dropdown.show .dropdown-menu {
  position: fixed !important;
  z-index: 100001 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  -webkit-transform: none !important;
          transform: none !important;
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0.8;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0.8;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.modern-footer {
  --mf-accent: #e8c97a;
  --mf-accent-soft: rgba(232, 201, 122, 0.22);
  --mf-text: rgba(245, 240, 232, 0.88);
  --mf-muted: rgba(245, 240, 232, 0.58);
  --mf-line: rgba(255, 255, 255, 0.08);
  --mf-surface: rgba(255, 255, 255, 0.035);
  background: radial-gradient(1200px 500px at 10% -20%, rgba(232, 201, 122, 0.07), transparent 55%),
    radial-gradient(900px 400px at 95% 0%, rgba(192, 57, 43, 0.08), transparent 50%),
    linear-gradient(180deg, #0c0a09 0%, #12100e 42%, #0a0908 100%);
  color: var(--mf-text);
  font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}
.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mf-accent-soft), transparent);
  z-index: 2;
  pointer-events: none;
}
.modern-footer::after {
  display: none;
}
.modern-footer .footer-main {
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 1;
}
.modern-footer .footer-main::after {
  display: none;
}
.modern-footer .footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 992px) {
  .modern-footer .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .modern-footer .footer-content {
    grid-template-columns: 1fr;
  }
}
.modern-footer .footer-section--brand .footer-brand-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.modern-footer .footer-section .footer-logo-img {
  height: 4.5rem;
  width: 4.5rem;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.modern-footer .footer-section .footer-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mf-accent);
  margin: 0;
  line-height: 1.35;
}
.modern-footer .footer-about p {
  line-height: 1.75;
  color: var(--mf-muted);
  font-size: 0.9rem;
  margin: 0;
  max-width: 34rem;
}
.modern-footer .footer-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mf-text);
  margin: 0 0 1.1rem;
  padding: 0;
}
.modern-footer .footer-title::after {
  display: none;
}
.modern-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.modern-footer .footer-links li a {
  color: var(--mf-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease, transform 0.2s ease;
  border-radius: 4px;
}
.modern-footer .footer-links li a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mf-accent);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.modern-footer .footer-links li a:hover {
  color: var(--mf-text);
  transform: translateX(2px);
}
.modern-footer .footer-links li a:hover::before {
  opacity: 0.85;
  transform: scale(1);
}
.modern-footer .footer-social.footer-social--brand {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.modern-footer .footer-social.footer-social--brand .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  color: var(--mf-accent);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.modern-footer .footer-social.footer-social--brand .social-link:hover {
  background: rgba(232, 201, 122, 0.12);
  border-color: var(--mf-accent-soft);
  color: #fff4d6;
  transform: translateY(-2px);
}
.modern-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.modern-footer .contact-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: var(--mf-surface);
  border: 1px solid var(--mf-line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.modern-footer .contact-chip:hover {
  border-color: var(--mf-accent-soft);
  background: rgba(255, 255, 255, 0.045);
}
.modern-footer .contact-chip--static {
  cursor: default;
}
.modern-footer .contact-chip--static:hover {
  border-color: var(--mf-line);
  background: var(--mf-surface);
}
.modern-footer .contact-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: rgba(232, 201, 122, 0.1);
  color: var(--mf-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.modern-footer .contact-chip__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.modern-footer .contact-chip__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mf-muted);
}
.modern-footer .contact-chip__value {
  font-size: 0.85rem;
  color: var(--mf-text);
  line-height: 1.45;
  word-break: break-word;
}
.modern-footer .footer-payment-panel {
  margin-top: 1.35rem;
  padding: 1rem 1rem 0.85rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--mf-line);
}
.modern-footer .footer-payment-panel .payment-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mf-muted);
  margin: 0 0 0.75rem;
  padding: 0;
}
.modern-footer .footer-payment-panel .payment-title::after {
  display: none;
}
.modern-footer .footer-payment-panel .payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.modern-footer .footer-payment-panel .payment-logos .payment-logo {
  height: 28px;
  width: auto;
  max-width: 100%;
  border-radius: 6px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.06);
  object-fit: contain;
  transition: background 0.2s ease;
}
.modern-footer .footer-payment-panel .payment-logos .payment-logo:hover {
  background: rgba(255, 255, 255, 0.1);
}
.modern-footer .footer-bottom {
  position: relative;
  z-index: 1;
  padding: 1.35rem 0;
  border-top: 1px solid var(--mf-line);
  background: rgba(0, 0, 0, 0.25);
}
.modern-footer .footer-bottom::before {
  display: none;
}
.modern-footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .modern-footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
.modern-footer .footer-bottom .footer-bottom-left .copyright {
  color: var(--mf-text);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.modern-footer .footer-bottom .footer-bottom-left .footer-credits {
  color: var(--mf-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}
.modern-footer .footer-bottom .footer-bottom-left .footer-credits a {
  color: var(--mf-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.modern-footer .footer-bottom .footer-bottom-left .footer-credits a:hover {
  opacity: 0.85;
  text-decoration: underline;
}
.modern-footer .footer-bottom .footer-bottom-right {
  display: flex;
  align-items: center;
}
.modern-footer .footer-bottom .footer-bottom-right .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: center;
}
.modern-footer .footer-bottom .footer-bottom-right .footer-legal a {
  color: var(--mf-muted);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.modern-footer .footer-bottom .footer-bottom-right .footer-legal a:hover {
  color: var(--mf-accent);
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
@media (max-width: 768px) {
  .hero-section {
    height: 400px;
  }
}
.hero-mobile-search {
  margin: 16px 12px 20px;
  padding: 0;
}
.hero-mobile-search .hero-mobile-search-form {
  width: 100%;
}
.hero-mobile-search .hero-mobile-search-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 4px 4px 4px 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.hero-mobile-search input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 12px 0;
  background: transparent;
  min-width: 0;
}
.hero-mobile-search input::placeholder {
  color: #6b7280;
}
.hero-mobile-search .hero-mobile-search-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: #F5B301;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.hero-mobile-search .hero-mobile-search-btn:hover {
  background: #d99d00;
}
.hero-mobile-search .hero-mobile-search-btn i {
  font-size: 16px;
}
.hero-section .hero-slider {
  position: relative;
  height: 100%;
}
.hero-section .hero-slider .slick-slide {
  height: 600px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .hero-section .hero-slider .slick-slide {
    height: 400px;
  }
}
.hero-section .hero-slider .hero-slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  height: 100%;
  width: 100%;
}
.hero-section .hero-slider .hero-slide-link:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.hero-section .hero-slider .hero-slide {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-section .hero-slider .hero-slide .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section .hero-slider .hero-slide .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-filter: none;
          filter: none;
}
.hero-section .hero-slider .hero-slide .hero-image::after {
  display: none;
}
.hero-section .slick-dots {
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: auto;
}
.hero-section .slick-dots li {
  margin: 0 8px;
}
.hero-section .slick-dots li button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(245, 245, 220, 0.2);
  border: 2px solid rgba(245, 245, 220, 0.4);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.hero-section .slick-dots li button:before {
  display: none;
}
.hero-section .slick-dots li button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: rgba(245, 245, 220, 0.6);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero-section .slick-dots li:hover button {
  background: rgba(245, 245, 220, 0.3);
  border-color: rgba(245, 245, 220, 0.6);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.hero-section .slick-dots li:hover button:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.hero-section .slick-dots li.slick-active button {
  background: linear-gradient(135deg, #f5f5dc 0%, #e8e8d0 100%);
  border-color: #f5f5dc;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-box-shadow: 0 4px 15px rgba(245, 245, 220, 0.3);
          box-shadow: 0 4px 15px rgba(245, 245, 220, 0.3);
}
.hero-section .slick-dots li.slick-active button:after {
  background: #2d1b1b;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.hero-section .slick-prev,
.hero-section .slick-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.15) 0%, rgba(232, 232, 208, 0.1) 100%);
  border: 2px solid rgba(245, 245, 220, 0.4);
  border-radius: 50%;
  z-index: 10;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.hero-section .slick-prev:before,
.hero-section .slick-next:before {
  color: #f5f5dc;
  font-size: 24px;
  font-weight: 300;
  opacity: 0.9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero-section .slick-prev:hover,
.hero-section .slick-next:hover {
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.25) 0%, rgba(232, 232, 208, 0.2) 100%);
  border-color: rgba(245, 245, 220, 0.7);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.hero-section .slick-prev:hover:before,
.hero-section .slick-next:hover:before {
  opacity: 1;
  -webkit-transform: scale(1.1) translate(-48%,-48%);
          transform: scale(1.1) translate(-48%,-48%);
}
.hero-section .slick-prev:active,
.hero-section .slick-next:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.hero-section .slick-prev {
  left: 40px;
}
.hero-section .slick-prev:before {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.hero-section .slick-next {
  right: 40px;
}
.hero-section .slick-next:before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.hero-section .slick-prev,
.hero-section .slick-next {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  text-indent: -9999px;
  overflow: hidden;
}
.hero-section .slick-prev:before,
.hero-section .slick-next:before {
  font-size: 24px !important;
  line-height: 1 !important;
  color: #f5f5dc !important;
  text-indent: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hero-section .slick-slider .slick-prev,
.hero-section .slick-slider .slick-next {
  font-size: 0 !important;
  color: transparent !important;
}
@media (max-width: 768px) {
  .hero-section .slick-prev,
  .hero-section .slick-next {
    width: 50px;
    height: 50px;
  }
  .hero-section .slick-prev:before,
  .hero-section .slick-next:before {
    font-size: 20px;
  }
  .hero-section .slick-prev {
    left: 20px;
  }
  .hero-section .slick-next {
    right: 20px;
  }
  .hero-section .slick-dots {
    bottom: 30px;
    left: 30px;
  }
  .hero-section .slick-dots li button {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .hero-section .slick-prev,
  .hero-section .slick-next {
    display: none !important;
  }
  .hero-section .slick-dots {
    bottom: 20px;
    left: 20px;
  }
  .hero-section .slick-dots li {
    margin: 0 6px;
  }
  .hero-section .slick-dots li button {
    width: 12px;
    height: 12px;
  }
}

.quick-categories {
  padding: 60px 0;
}
.quick-categories .quick-categories-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .quick-categories .quick-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}
.quick-categories .quick-categories-grid .quick-category-item {
  position: relative;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
}
.quick-categories .quick-categories-grid .quick-category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F5B301, #FFC933);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.quick-categories .quick-categories-grid .quick-category-item:hover::before {
  opacity: 1;
}
.quick-categories .quick-categories-grid .quick-category-item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 20px rgba(245, 179, 1, 0.2);
          box-shadow: 0 4px 20px rgba(245, 179, 1, 0.2);
  border-color: #F5B301;
}
.quick-categories .quick-categories-grid .quick-category-item:hover .quick-category-overlay {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.75) 100%);
}
.quick-categories .quick-categories-grid .quick-category-item:hover .explore-text {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.quick-categories .quick-categories-grid .quick-category-item .quick-category-image {
  width: 100%;
  height: 100%;
}
.quick-categories .quick-categories-grid .quick-category-item .quick-category-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quick-categories .quick-categories-grid .quick-category-item .quick-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.6) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.quick-categories .quick-categories-grid .quick-category-item .quick-category-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.1) 0%, transparent 50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.quick-categories .quick-categories-grid .quick-category-item:hover .quick-category-overlay::before {
  opacity: 1;
}
.quick-categories .quick-categories-grid .quick-category-item .quick-category-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.quick-categories .quick-categories-grid .quick-category-item .quick-category-overlay .explore-text {
  font-size: 0.9rem;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #F5B301;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #F5B301, #FFC933);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(245, 179, 1, 0.4);
}
.section-header .section-title::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 179, 1, 0.3), transparent);
}
@media (max-width: 768px) {
  .section-header .section-title {
    font-size: 2rem;
  }
}
.section-header .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.featured-products {
  padding: 80px 0;
  background: #fff;
}
.featured-products .product-tabs .tab-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .featured-products .product-tabs .tab-navigation {
    gap: 10px;
  }
}
.featured-products .product-tabs .tab-navigation .tab-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #e8e8e8;
  border-radius: 4px;
  color: #666;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.featured-products .product-tabs .tab-navigation .tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 179, 1, 0.1), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.featured-products .product-tabs .tab-navigation .tab-btn:hover::before {
  left: 100%;
}
.featured-products .product-tabs .tab-navigation .tab-btn:hover, .featured-products .product-tabs .tab-navigation .tab-btn.active {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-color: #F5B301;
  color: #F5B301;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
}
.featured-products .product-tabs .tab-navigation .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F5B301, #FFC933);
}
.featured-products .product-tabs .tab-navigation .tab-btn i {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .featured-products .product-tabs .tab-navigation .tab-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  .featured-products .product-tabs .tab-navigation .tab-btn span {
    display: none;
  }
}
.featured-products .product-tabs .tab-content .tab-pane {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.featured-products .product-tabs .tab-content .tab-pane.active {
  display: block;
  opacity: 1;
}
.featured-products .products-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .featured-products .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .featured-products .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.featured-products .products-grid .product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.featured-products .products-grid .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F5B301, #FFC933);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.featured-products .products-grid .product-card:hover::before {
  opacity: 1;
}
.featured-products .products-grid .product-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 20px rgba(245, 179, 1, 0.2);
          box-shadow: 0 4px 20px rgba(245, 179, 1, 0.2);
  border-color: #F5B301;
}
.featured-products .products-grid .product-card:hover .product-actions {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.featured-products .products-grid .product-card .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.featured-products .products-grid .product-card .product-badge.out-of-stock {
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  color: white;
}
.featured-products .products-grid .product-card .product-badge.discount {
  background: linear-gradient(135deg, #F5B301 0%, #FFF4D6 100%);
  color: #2d1b1b;
}
.featured-products .products-grid .product-card .product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.featured-products .products-grid .product-card .product-image a{
    display: block;
    height: 100%;
}
.featured-products .products-grid .product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.featured-products .products-grid .product-card .product-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.featured-products .products-grid .product-card .product-image .product-actions {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.featured-products .products-grid .product-card .product-image .product-actions .action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 245, 220, 0.9);
  color: #2d1b1b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.featured-products .products-grid .product-card .product-image .product-actions .action-btn:hover {
  background: #2d1b1b;
  color: #f5f5dc;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.featured-products .products-grid .product-card .product-info {
  padding: 20px;
}
.featured-products .products-grid .product-card .product-info .product-category {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.featured-products .products-grid .product-card .product-info .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}
.featured-products .products-grid .product-card .product-info .product-title a {
  color: #2d1b1b;
  text-decoration: none;
}
.featured-products .products-grid .product-card .product-info .product-title a:hover {
  color: #666;
}
.featured-products .products-grid .product-card .product-info .product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.featured-products .products-grid .product-card .product-info .product-price .old-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}
.featured-products .products-grid .product-card .product-info .product-price .current-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d1b1b;
}

.category-showcase {
  padding: 80px 0;
  background: #f8f8f0;
}
.category-showcase .showcase-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .category-showcase .showcase-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.category-showcase .showcase-grid .showcase-item {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.category-showcase .showcase-grid .showcase-item:hover .showcase-overlay {
  background: rgba(45, 27, 27, 0.8);
}
.category-showcase .showcase-grid .showcase-item:hover .showcase-overlay .explore-btn {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.category-showcase .showcase-grid .showcase-item .showcase-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.category-showcase .showcase-grid .showcase-item .showcase-image {
  width: 100%;
  height: 100%;
}
.category-showcase .showcase-grid .showcase-item .showcase-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-showcase .showcase-grid .showcase-item .showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 27, 27, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #f5f5dc;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category-showcase .showcase-grid .showcase-item .showcase-overlay h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}
.category-showcase .showcase-grid .showcase-item .showcase-overlay .explore-btn {
  padding: 10px 25px;
  background: rgba(245, 245, 220, 0.9);
  color: #2d1b1b;
  border-radius: 25px;
  font-weight: 600;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category-showcase .showcase-grid .showcase-item .showcase-overlay .explore-btn:hover {
  background: #f5f5dc;
}

.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#F5B301), to(transparent));
  background: linear-gradient(90deg, transparent, #F5B301, transparent);
}
.about-section .about-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .about-section .about-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.about-section .about-text .section-header {
  margin-bottom: 30px;
}
.about-section .about-text .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1b1b;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}
@media (max-width: 768px) {
  .about-section .about-text .section-header .section-title {
    font-size: 2rem;
  }
}
.about-section .about-text .section-header .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
}
.about-section .about-text .about-description {
  margin-bottom: 40px;
}
.about-section .about-text .about-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.about-section .about-text .about-description p:last-child {
  margin-bottom: 0;
}
.about-section .about-text .about-features {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .about-section .about-text .about-features {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.about-section .about-text .about-features .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.about-section .about-text .about-features .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F5B301, #FFC933);
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
  border: 2px solid rgba(245, 179, 1, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-section .about-text .about-features .feature-item:hover .feature-icon {
  -webkit-transform: rotate(5deg) scale(1.05);
          transform: rotate(5deg) scale(1.05);
  -webkit-box-shadow: 0 6px 20px rgba(245, 179, 1, 0.4);
          box-shadow: 0 6px 20px rgba(245, 179, 1, 0.4);
}
.about-section .about-text .about-features .feature-item .feature-icon.automotive-icon {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid #F5B301;
}
.about-section .about-text .about-features .feature-item .feature-icon.automotive-icon i {
  color: #F5B301;
}
.about-section .about-text .about-features .feature-item .feature-icon i {
  color: #fff;
  font-size: 20px;
}
.about-section .about-text .about-features .feature-item .feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 8px;
}
.about-section .about-text .about-features .feature-item .feature-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.about-section .about-text .about-cta .about-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2d1b1b 0%, #3d2525 100%);
  color: #f5f5dc;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(45, 27, 27, 0.3);
          box-shadow: 0 4px 15px rgba(45, 27, 27, 0.3);
}
.about-section .about-text .about-cta .about-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(45, 27, 27, 0.4);
          box-shadow: 0 6px 20px rgba(45, 27, 27, 0.4);
  color: #f5f5dc;
  text-decoration: none;
}
.about-section .about-text .about-cta .about-btn i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.about-section .about-text .about-cta .about-btn:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.about-section .about-image {
  position: relative;
}
.about-section .about-image .image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-section .about-image .image-container img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.about-section .about-image .image-container:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.about-section .about-image .image-container .image-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
}
.about-section .about-image .image-container .image-overlay .experience-badge {
  width: min(280px, calc(100vw - 56px));
  padding: 18px 20px 20px;
  border-radius: 22px;
  color: #fff8ea;
  text-align: left;
  background: linear-gradient(160deg, rgba(16, 11, 8, 0.92) 0%, rgba(53, 27, 16, 0.9) 55%, rgba(135, 61, 20, 0.82) 100%);
  border: 1px solid rgba(255, 224, 138, 0.28);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.about-section .about-image .image-container .image-overlay .experience-badge::before {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe08a 0%, #c97a2b 100%);
}
.about-section .about-image .image-container .image-overlay .experience-badge .experience-badge__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffe08a;
}
.about-section .about-image .image-container .image-overlay .experience-badge .experience-badge__title {
  display: block;
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-wrap: balance;
}
.about-section .about-image .image-container .image-overlay .experience-badge .experience-badge__text {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 248, 234, 0.82);
}
@media (max-width: 768px) {
  .about-section .about-image .image-container .image-overlay .experience-badge {
    width: min(240px, calc(100vw - 40px));
    padding: 16px 16px 18px;
    border-radius: 18px;
  }
  .about-section .about-image .image-container .image-overlay .experience-badge .experience-badge__title {
    font-size: 1.3rem;
  }
  .about-section .about-image .image-container .image-overlay .experience-badge .experience-badge__text {
    font-size: 0.88rem;
  }
}

.products-page {
  padding: 60px 0;
  background: #fff;
}
.products-page .products-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 40px 1fr;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .products-page .products-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.products-page .products-sidebar .filter-section {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(245, 179, 1, 0.2);
  margin-bottom: 25px;
  overflow: hidden;
}
.products-page .products-sidebar .filter-section .filter-title {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 20px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.products-page .products-sidebar .filter-section .filter-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F5B301, #FFC933);
}
.products-page .products-sidebar .filter-section .filter-content {
  padding: 20px;
}
.products-page .products-sidebar .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-page .products-sidebar .category-list .category-item {
  margin-bottom: 10px;
}
.products-page .products-sidebar .category-list .category-item .category-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid transparent;
}
.products-page .products-sidebar .category-list .category-item .category-link i {
  color: #F5B301;
  font-size: 14px;
  width: 16px;
}
.products-page .products-sidebar .category-list .category-item .category-link:hover {
  background: rgba(245, 179, 1, 0.1);
  color: #1a1a1a;
  border-color: rgba(245, 179, 1, 0.3);
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.products-page .products-sidebar .category-list .category-item .category-link.active {
  background: linear-gradient(135deg, #F5B301, #FFC933);
  color: #1a1a1a;
  font-weight: 700;
  border-color: #F5B301;
}
.products-page .products-sidebar .price-filter .price-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.products-page .products-sidebar .price-filter .price-inputs .price-input label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
  font-weight: 500;
}
.products-page .products-sidebar .price-filter .price-inputs .price-input input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid rgba(245, 179, 1, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.products-page .products-sidebar .price-filter .price-inputs .price-input input:focus {
  outline: none;
  border-color: #F5B301;
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.products-page .products-sidebar .price-filter .price-filter-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  border: 2px solid rgba(245, 179, 1, 0.3);
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.products-page .products-sidebar .price-filter .price-filter-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: linear-gradient(135deg, #F5B301, #FFC933);
  color: #1a1a1a;
  border-color: #F5B301;
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
}
.products-page .products-sidebar .sort-select {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(245, 179, 1, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  background: #fff;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  font-weight: 600;
}
.products-page .products-sidebar .sort-select:focus {
  outline: none;
  border-color: #F5B301;
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.products-page .products-main .products-header {
  margin-bottom: 30px;
}
.products-page .products-main .products-header .products-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d1b1b;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}
.products-page .products-main .products-header .products-subtitle {
  color: #666;
  font-size: 1rem;
}
.products-page .products-main .products-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .products-page .products-main .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .products-page .products-main .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.products-page .products-main .products-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.products-page .product-card {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(245, 179, 1, 0.2);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.products-page .product-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(245, 179, 1, 0.3);
          box-shadow: 0 8px 25px rgba(245, 179, 1, 0.3);
  border-color: #F5B301;
}
.products-page .product-card .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.products-page .product-card .product-image a{
    display: block;
    height: 100%;
}
.products-page .product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.products-page .product-card .product-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.products-page .product-card .product-image .product-actions {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.products-page .product-card .product-image .product-actions .action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  color: #2d1b1b;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.products-page .product-card .product-image .product-actions .action-btn:hover {
  background: #F5B301;
  color: #fff;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
}
.products-page .product-card .product-image .product-actions .action-btn.view-btn {
  background: rgba(255, 255, 255, 0.9);
}
.products-page .product-card .product-image .product-actions .action-btn.add-to-cart-btn {
  background: linear-gradient(135deg, #2d1b1b 0%, #3d2525 100%);
  color: #f5f5dc;
  width: auto;
  padding: 8px 15px;
  border-radius: 25px;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.products-page .product-card .product-image .product-actions .action-btn.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #F5B301 0%, #FFF4D6 100%);
  color: #2d1b1b;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(245, 179, 1, 0.4);
          box-shadow: 0 6px 20px rgba(245, 179, 1, 0.4);
}
.products-page .product-card .product-image .product-actions .action-btn.add-to-cart-btn i {
  font-size: 14px;
}
.products-page .product-card .product-image .product-actions .action-btn.add-to-cart-btn span {
  display: inline-block;
}
.products-page .product-card .product-image:hover .product-actions {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.products-page .product-card .product-info {
  padding: 20px;
}
.products-page .product-card .product-info .product-category {
  font-size: 0.8rem;
  color: #F5B301;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.products-page .product-card .product-info .product-title {
  margin: 0 0 15px 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
.products-page .product-card .product-info .product-title a {
  color: #2d1b1b;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.products-page .product-card .product-info .product-title a:hover {
  color: #F5B301;
}
.products-page .product-card .product-info .product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.products-page .product-card .product-info .product-price .old-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}
.products-page .product-card .product-info .product-price .current-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #F5B301;
}
.products-page .product-card .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.products-page .product-card .product-badge.out-of-stock {
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  color: white;
}
.products-page .product-card .product-badge.discount {
  background: linear-gradient(135deg, #F5B301 0%, #FFF4D6 100%);
  color: #2d1b1b;
}

.blog-section {
  padding: 80px 0;
  background: #fff;
}
.blog-section .blog-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .blog-section .blog-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-section .blog-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.blog-section .blog-grid .blog-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(245, 179, 1, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog-section .blog-grid .blog-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.blog-section .blog-grid .blog-card .blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-section .blog-grid .blog-card .blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-section .blog-grid .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog-section .blog-grid .blog-card .blog-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog-section .blog-grid .blog-card .blog-content {
  padding: 25px;
}
.blog-section .blog-grid .blog-card .blog-content .blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}
.blog-section .blog-grid .blog-card .blog-content .blog-meta .blog-date, .blog-section .blog-grid .blog-card .blog-content .blog-meta .blog-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.blog-section .blog-grid .blog-card .blog-content .blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-section .blog-grid .blog-card .blog-content .blog-excerpt {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}
.blog-section .blog-grid .blog-card .blog-content .blog-excerpt .read-more {
  display: inline-block;
  color: #F5B301;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.blog-section .blog-grid .blog-card .blog-content .blog-excerpt .read-more:hover {
  color: #2d1b1b;
}
.blog-section .blog-more {
  text-align: center;
}
.blog-section .blog-more .more-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(26, 26, 26, 0.3);
          box-shadow: 0 4px 15px rgba(26, 26, 26, 0.3);
  border: 2px solid rgba(245, 179, 1, 0.3);
}
.blog-section .blog-more .more-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(245, 179, 1, 0.4);
          box-shadow: 0 6px 20px rgba(245, 179, 1, 0.4);
  background: linear-gradient(135deg, #F5B301, #FFC933);
  color: #1a1a1a;
  border-color: #F5B301;
  text-decoration: none;
}
.blog-section .blog-more .more-btn i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog-section .blog-more .more-btn:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

@media (max-width: 1200px) {
  .modern-header .header-top .header-top-content {
    gap: 20px;
  }
  .modern-header .header-top .header-top-content .search-section {
    max-width: 400px;
  }
  .modern-header .main-menu nav .main-nav {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .modern-header .header-top {
    padding: 10px 0;
  }
  .modern-header .header-top .header-top-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
  }
  .modern-header .header-top .header-top-content .logo-section .logo {
    min-height: 64px;
    padding: 7px 12px;
  }
  .modern-header .header-top .header-top-content .logo-section .logo img {
    width: 170px;
    max-height: 64px;
  }
  .modern-header .header-top .header-top-content .search-section {
    display: none;
  }
  .modern-header .header-top .header-top-content .header-actions {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    gap: 10px;
  }
  .modern-header .header-top .header-top-content .header-actions .action-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
  .modern-header .header-top .header-top-content .header-actions .action-btn span {
    display: none;
  }
  .modern-header .header-top .header-top-content .header-actions .mobile-menu-btn {
    display: flex;
  }
  .modern-header .main-menu {
    display: none;
  }
}
@media (max-width: 768px) {
  .modern-header .header-top .header-top-content .logo-section .logo {
    min-height: 56px;
    padding: 6px 10px;
  }
  .modern-header .header-top .header-top-content .logo-section .logo img {
    width: 142px;
    max-height: 52px;
  }
  .modern-header .header-top .header-top-content .header-actions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .modern-header .header-top .header-top-content .header-actions .action-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
  .modern-header .main-menu nav .main-nav {
    gap: 15px;
  }
  .modern-header .main-menu nav .main-nav li {
    padding: 10px 0;
  }
  .modern-header .main-menu nav .main-nav li a {
    font-size: 14px;
  }
  .modern-header .main-menu nav .main-nav li .submenu {
    width: 90vw;
    left: 5vw;
    -webkit-transform: translateX(0) translateY(-10px);
            transform: translateX(0) translateY(-10px);
  }
  .modern-header .main-menu nav .main-nav li .submenu:hover {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  .about-section .about-content {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .about-section .about-features {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .mission-vision-section .mission-vision-grid {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .contact-section .contact-info-grid {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .blog-section .blog-grid {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
  .products-page .products-layout {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .products-page .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 20px !important;
  }
  @media (max-width: 600px) {
    .products-page .products-grid,
    .products-page .products-main .products-grid,
    .featured-products .products-grid {
      grid-template-columns: 1fr !important;
    }
  }
}
.mobile-menu-btn {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 6px 10px 6px 8px;
  height: 36px;
  position: relative;
  cursor: pointer;
  margin-left: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.mobile-menu-btn .mobile-menu-btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3px;
}
.mobile-menu-btn .mobile-menu-btn-icon span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.mobile-menu-btn .mobile-menu-btn-label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
.mobile-menu-btn:hover {
  border-color: #F5B301;
  background: rgba(245, 179, 1, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
}
.mobile-menu-btn:hover .mobile-menu-btn-icon span,
.mobile-menu-btn:hover .mobile-menu-btn-label {
  color: #F5B301;
}
.mobile-menu-btn:hover .mobile-menu-btn-icon span {
  background: #F5B301;
}
.mobile-menu-btn.active {
  border-color: #F5B301;
  background: rgba(245, 179, 1, 0.2);
}
.mobile-menu-btn.active .mobile-menu-btn-label {
  color: #F5B301;
}
.mobile-menu-btn.active .mobile-menu-btn-icon span {
  background: #F5B301;
}
.mobile-menu-btn.active .mobile-menu-btn-icon span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(3px, 3px);
          transform: rotate(45deg) translate(3px, 3px);
  background: #F5B301 !important;
}
.mobile-menu-btn.active .mobile-menu-btn-icon span:nth-child(2) {
  opacity: 0;
  background: #F5B301 !important;
}
.mobile-menu-btn.active .mobile-menu-btn-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(3px, -3px);
          transform: rotate(-45deg) translate(3px, -3px);
  background: #F5B301 !important;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow-y: auto;
  border-left: 3px solid #F5B301;
}
.mobile-menu-overlay.active .mobile-menu-content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  border-bottom: 2px solid rgba(245, 179, 1, 0.3);
  background: transparent;
  position: relative;
}
.mobile-menu-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F5B301, transparent);
}
.mobile-menu-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #F5B301;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-menu-header .mobile-menu-close {
  background: rgba(245, 179, 1, 0.2);
  border: 2px solid rgba(245, 179, 1, 0.5);
  border-radius: 4px;
  font-size: 18px;
  color: #F5B301;
  cursor: pointer;
  padding: 8px 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-menu-header .mobile-menu-close:hover {
  background: #F5B301;
  color: #1a1a1a;
  border-color: #F5B301;
}

.mobile-search {
  padding: 20px;
  border-bottom: 2px solid rgba(245, 179, 1, 0.3);
  background: transparent;
}
.mobile-search .search-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.mobile-search .search-input input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  backdrop-filter: blur(10px);
}
.mobile-search .search-input input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.mobile-search .search-input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.mobile-search .search-input input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.mobile-search .search-input input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.mobile-search .search-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.mobile-search .search-input input:focus {
  outline: none;
  border-color: #F5B301;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(245, 179, 1, 0.3);
          box-shadow: 0 0 10px rgba(245, 179, 1, 0.3);
}
.mobile-search .search-input .search-btn {
  background: linear-gradient(135deg, #F5B301, #FFC933);
  border: 2px solid #F5B301;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 10px rgba(245, 179, 1, 0.4);
          box-shadow: 0 2px 10px rgba(245, 179, 1, 0.4);
}
.mobile-search .search-input .search-btn i {
  color: #fff;
  font-size: 14px;
}
.mobile-search .search-input .search-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.6);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.6);
  background: linear-gradient(135deg, #FFC933, #F5B301);
}

.mobile-menu-body {
  padding: 20px 0;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .mobile-nav-item {
  border-bottom: 1px solid rgba(245, 179, 1, 0.2);
}
.mobile-nav .mobile-nav-item:last-child {
  border-bottom: none;
}
.mobile-nav .mobile-nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-nav .mobile-nav-header:hover {
  background: rgba(245, 179, 1, 0.1);
}
.mobile-nav .mobile-nav-header .mobile-nav-link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-nav .mobile-nav-header .mobile-nav-link:hover {
  color: #F5B301;
  text-decoration: none;
}
.mobile-nav .mobile-nav-header .mobile-nav-toggle {
  background: rgba(245, 179, 1, 0.2);
  border: 2px solid rgba(245, 179, 1, 0.4);
  border-radius: 4px;
  padding: 8px 12px;
  margin-right: 20px;
  color: #F5B301;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-nav .mobile-nav-header .mobile-nav-toggle i {
  font-size: 12px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mobile-nav .mobile-nav-header .mobile-nav-toggle:hover {
  background: rgba(245, 179, 1, 0.3);
  border-color: #F5B301;
  color: #FFC933;
}
.mobile-nav .mobile-nav-header .mobile-nav-toggle.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile-nav .mobile-nav-link {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-nav .mobile-nav-link:hover {
  background: rgba(245, 179, 1, 0.2);
  color: #F5B301;
  text-decoration: none;
}
.mobile-nav .mobile-submenu {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(245, 179, 1, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-nav .mobile-submenu.show {
  display: block;
}
.mobile-nav .mobile-submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .mobile-submenu li {
  border-bottom: 1px solid rgba(245, 179, 1, 0.2);
}
.mobile-nav .mobile-submenu li:last-child {
  border-bottom: none;
}
.mobile-nav .mobile-submenu a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.mobile-nav .mobile-submenu a:hover {
  background: rgba(245, 179, 1, 0.2);
  color: #F5B301;
  color: #F5B301;
  text-decoration: none;
}

@media (max-width: 480px) {
  .modern-header .header-top .header-top-content .logo-section .logo img {
    width: 100px;
  }
  .modern-header .header-top .header-top-content .header-actions .action-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  .modern-header .header-top .header-top-content .header-actions .action-btn span {
    display: none;
  }
  .section-header .section-title {
    font-size: 1.8rem !important;
  }
  .section-header .section-subtitle {
    font-size: 1rem !important;
  }
  .about-section {
    padding: 60px 0 !important;
  }
  .about-section .about-text .section-header .section-title {
    font-size: 1.6rem !important;
  }
}
.product-detail-section {
  padding: 60px 0;
  background: #fff;
}

.product-detail-container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .product-detail-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.product-images-section .product-image-main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(245, 179, 1, 0.2);
  margin-bottom: 20px;
}
.product-images-section .product-image-main a {
  width: 100%;
}
.product-images-section .product-image-main .main-product-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.product-images-section .product-image-main .discount-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #F5B301, #FFC933);
  color: #1a1a1a;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
  border: 2px solid rgba(26, 26, 26, 0.2);
}
.product-images-section .product-image-thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-images-section .product-image-thumbnails .thumbnail-item {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-images-section .product-image-thumbnails .thumbnail-item.active {
  border-color: #F5B301;
}
.product-images-section .product-image-thumbnails .thumbnail-item .thumbnail-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-images-section .product-image-thumbnails .thumbnail-item:hover {
  border-color: #F5B301;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
}
.product-images-section .hidden-gallery {
  display: none;
}

.product-info-section .product-header {
  margin-bottom: 30px;
}
.product-info-section .product-header .product-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d1b1b;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: "Playfair Display", serif;
}
.product-info-section .product-header .product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  color: #666;
  font-size: 0.9rem;
}
.product-info-section .product-header .product-meta .meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.product-info-section .product-header .product-meta .meta-item i {
  color: #F5B301;
}
.product-info-section .product-header .product-price-section {
  margin-bottom: 30px;
}
.product-info-section .product-header .product-price-section .price-with-discount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.product-info-section .product-header .product-price-section .price-with-discount .old-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}
.product-info-section .product-header .product-price-section .price-with-discount .current-price {
  font-size: 2rem;
  font-weight: 700;
  color: #F5B301;
}
.product-info-section .product-header .product-price-section .current-price {
  font-size: 2rem;
  font-weight: 700;
  color: #F5B301;
}
.product-info-section .product-specs {
  background: linear-gradient(135deg, #f8f8f0 0%, #f0f0f0 100%);
  padding: 25px;
  border-radius: 4px;
  margin-bottom: 30px;
  border: 2px solid rgba(245, 179, 1, 0.2);
}
.product-info-section .product-specs .specs-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 20px;
}
.product-info-section .product-specs .specs-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.product-info-section .product-specs .specs-grid .spec-item .spec-label {
  color: #666;
  font-size: 0.9rem;
}
.product-info-section .product-specs .specs-grid .spec-item .spec-value {
  color: #2d1b1b;
  font-weight: 600;
}
.product-info-section .product-specs .specs-grid .spec-item .spec-value.in-stock {
  color: #28a745;
}
.product-info-section .product-specs .specs-grid .spec-item .spec-value.out-of-stock {
  color: #dc3545;
}
.product-info-section .product-variants {
  margin-bottom: 30px;
}
.product-info-section .product-variants .variant-group {
  margin-bottom: 25px;
}
.product-info-section .product-variants .variant-group .variant-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.product-info-section .product-variants .variant-group .variant-title .variant-icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-info-section .product-variants .variant-group .variant-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.product-info-section .product-variants .variant-group .variant-options .variant-option {
  position: relative;
  cursor: pointer;
  border: 2px solid rgba(245, 179, 1, 0.3);
  border-radius: 4px;
  padding: 15px;
  min-width: 120px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
}
.product-info-section .product-variants .variant-group .variant-options .variant-option input[type=radio] {
  display: none;
}
.product-info-section .product-variants .variant-group .variant-options .variant-option .option-image {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
}
.product-info-section .product-variants .variant-group .variant-options .variant-option .option-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d1b1b;
}
.product-info-section .product-variants .variant-group .variant-options .variant-option .price-diff {
  font-size: 0.8rem;
  color: #F5B301;
  margin-top: 5px;
}
.product-info-section .product-variants .variant-group .variant-options .variant-option .out-of-stock-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #dc3545;
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.7rem;
}
.product-info-section .product-variants .variant-group .variant-options .variant-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-info-section .product-variants .variant-group .variant-options .variant-option:hover {
  border-color: #F5B301;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.2);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.2);
}
.product-info-section .add-to-cart-section {
  background: linear-gradient(135deg, #f8f8f0 0%, #f0f0f0 100%);
  padding: 25px;
  border-radius: 15px;
}
.product-info-section .add-to-cart-section .quantity-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.product-info-section .add-to-cart-section .quantity-selector .quantity-label {
  font-weight: 600;
  color: #2d1b1b;
}
.product-info-section .add-to-cart-section .quantity-selector .quantity-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}
.product-info-section .add-to-cart-section .quantity-selector .quantity-controls .quantity-btn {
  background: #2d1b1b;
  color: white;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-info-section .add-to-cart-section .quantity-selector .quantity-controls .quantity-btn:hover {
  background: #F5B301;
}
.product-info-section .add-to-cart-section .quantity-selector .quantity-controls .quantity-input {
  border: none;
  padding: 12px 15px;
  text-align: center;
  width: 80px;
  font-weight: 600;
}
.product-info-section .add-to-cart-section .action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-info-section .add-to-cart-section .action-buttons .add-to-cart-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: linear-gradient(135deg, #F5B301, #FFF4D6);
  color: #2d1b1b;
  border: none;
  padding: 15px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  min-width: 200px;
}
.product-info-section .add-to-cart-section .action-buttons .add-to-cart-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(245, 179, 1, 0.4);
          box-shadow: 0 6px 20px rgba(245, 179, 1, 0.4);
}
.product-info-section .add-to-cart-section .action-buttons .favorite-btn {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  min-width: 200px;
}
.product-info-section .add-to-cart-section .action-buttons .favorite-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
          box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.product-description {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(245, 179, 1, 0.2);
  margin-bottom: 60px;
}
.product-description .description-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d1b1b;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
}
.product-description .description-content {
  color: #333;
  line-height: 1.8;
  font-size: 1.1rem;
}

.related-products .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.related-products .section-header .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d1b1b;
  margin-bottom: 15px;
}
.related-products .section-header .section-subtitle {
  color: #666;
  font-size: 1.1rem;
}
.related-products .related-products-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.related-products .related-products-grid .product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.related-products .related-products-grid .product-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.related-products .related-products-grid .product-card:hover .related-product-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.related-products .related-products-grid .product-card .product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.related-products .related-products-grid .product-card .product-image .related-product-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.related-products .related-products-grid .product-card .product-image .discount-badge.small {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #F5B301, #FFF4D6);
  color: #2d1b1b;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.related-products .related-products-grid .product-card .product-info {
  padding: 20px;
}
.related-products .related-products-grid .product-card .product-info .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}
.related-products .related-products-grid .product-card .product-info .product-title a {
  color: #2d1b1b;
  text-decoration: none;
}
.related-products .related-products-grid .product-card .product-info .product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.related-products .related-products-grid .product-card .product-info .product-price .old-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}
.related-products .related-products-grid .product-card .product-info .product-price .current-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #F5B301;
}
.related-products .related-products-grid .product-card .product-info .product-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.related-products .related-products-grid .product-card .product-info .product-actions .view-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #2d1b1b;
  color: #f5f5dc;
  text-decoration: none;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .product-detail-grid {
    gap: 30px !important;
  }
  .product-image-main .main-product-img {
    height: 350px !important;
  }
  .product-image-thumbnails {
    gap: 8px !important;
  }
  .product-image-thumbnails .thumbnail-item {
    width: 50px !important;
    height: 50px !important;
  }
  .action-buttons {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .action-buttons .add-to-cart-btn, .action-buttons .favorite-btn {
    min-width: 100% !important;
  }
  .related-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 20px !important;
  }
}
.contact-section {
  padding: 60px 0 !important;
}
.contact-section .contact-form-container {
  padding: 25px 15px !important;
}

.blog-section {
  padding: 60px 0 !important;
}

.products-page {
  padding: 60px 0 !important;
}
.products-page .products-header .products-title {
  font-size: 1.6rem !important;
}

.action-btn.add-to-cart-btn {
  background: linear-gradient(135deg, #F5B301, #FFF4D6);
  color: #2d1b1b;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  font-size: 0.85rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.action-btn.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #E5A301, #FFE8A3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
  text-decoration: none;
  color: #2d1b1b;
}
.action-btn.add-to-cart-btn.processing {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.action-btn.add-to-cart-btn i {
  font-size: 0.8rem;
}
.action-btn.add-to-cart-btn span {
  font-weight: 500;
}

.product-card .product-actions .action-btn.add-to-cart-btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 12px;
  font-size: 0.8rem;
  border-radius: 4px;
}
.product-card .product-actions .action-btn.add-to-cart-btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.shopping-pages .order-confirmation .section-head {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
}
.shopping-pages .order-confirmation .section-head h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
}
.shopping-pages .order-confirmation .section-head .icon img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.shopping-pages .order-confirmation .confirmation-group {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid #e9ecef;
}
.shopping-pages .order-confirmation .confirmation-group h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}
.shopping-pages .order-confirmation .confirmation-group.shipping-address .address-selection .address-group label, .shopping-pages .order-confirmation .confirmation-group.billing-address .address-selection .address-group label {
  display: block;
  cursor: pointer;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
  background: #fff;
  overflow: hidden;
}
.shopping-pages .order-confirmation .confirmation-group.shipping-address .address-selection .address-group label:hover, .shopping-pages .order-confirmation .confirmation-group.billing-address .address-selection .address-group label:hover {
  border-color: #F5B301;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 20px rgba(245, 179, 1, 0.15);
          box-shadow: 0 5px 20px rgba(245, 179, 1, 0.15);
}
.shopping-pages .order-confirmation .confirmation-group.shipping-address .address-selection .address-group label.checked, .shopping-pages .order-confirmation .confirmation-group.billing-address .address-selection .address-group label.checked {
  border-color: #F5B301;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.05), rgba(244, 228, 188, 0.05));
  -webkit-box-shadow: 0 5px 20px rgba(245, 179, 1, 0.2);
          box-shadow: 0 5px 20px rgba(245, 179, 1, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.shopping-pages .order-confirmation .confirmation-group.shipping-address .address-selection .address-group label input[type=radio], .shopping-pages .order-confirmation .confirmation-group.billing-address .address-selection .address-group label input[type=radio] {
  display: none;
}
.shopping-pages .order-confirmation .confirmation-group.shipping-address .address-selection .address-group label .content, .shopping-pages .order-confirmation .confirmation-group.billing-address .address-selection .address-group label .content {
  padding: 20px;
  position: relative;
}
.shopping-pages .order-confirmation .confirmation-group.shipping-address .address-selection .address-group label .content::before, .shopping-pages .order-confirmation .confirmation-group.billing-address .address-selection .address-group label .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#F5B301), to(#FFF4D6));
  background: linear-gradient(90deg, #F5B301, #FFF4D6);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.shopping-pages .order-confirmation .confirmation-group.shipping-address .address-selection .address-group label .content strong, .shopping-pages .order-confirmation .confirmation-group.billing-address .address-selection .address-group label .content strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 8px;
  position: relative;
}
.shopping-pages .order-confirmation .confirmation-group.shipping-address .address-selection .address-group label .content .city, .shopping-pages .order-confirmation .confirmation-group.billing-address .address-selection .address-group label .content .city {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.shopping-pages .order-confirmation .confirmation-group.shipping-address .address-selection .address-group label .content .descp, .shopping-pages .order-confirmation .confirmation-group.billing-address .address-selection .address-group label .content .descp {
  color: #495057;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}
.shopping-pages .order-confirmation .confirmation-group.shipping-address .address-selection .address-group label.checked .content::before, .shopping-pages .order-confirmation .confirmation-group.billing-address .address-selection .address-group label.checked .content::before {
  opacity: 1;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group {
  margin-bottom: 15px;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group label {
  display: block;
  font-weight: 500;
  color: #2d1b1b;
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group .input-style {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.9rem;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group .input-style:focus {
  outline: none;
  border-color: #F5B301;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group .input-style::-webkit-input-placeholder {
  color: #6c757d;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group .input-style::-moz-placeholder {
  color: #6c757d;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group .input-style:-ms-input-placeholder {
  color: #6c757d;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group .input-style::-ms-input-placeholder {
  color: #6c757d;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group .input-style::placeholder {
  color: #6c757d;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group .custom-select2 {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.9rem;
  background: #fff;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.shopping-pages .order-confirmation .confirmation-group.payment .order-form .form-one .form-group .custom-select2:focus {
  outline: none;
  border-color: #F5B301;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group {
  margin-bottom: 15px;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group label {
  display: block;
  font-weight: 500;
  color: #2d1b1b;
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group .input-style {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.9rem;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group .input-style:focus {
  outline: none;
  border-color: #F5B301;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group .input-style::-webkit-input-placeholder {
  color: #6c757d;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group .input-style::-moz-placeholder {
  color: #6c757d;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group .input-style:-ms-input-placeholder {
  color: #6c757d;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group .input-style::-ms-input-placeholder {
  color: #6c757d;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group .input-style::placeholder {
  color: #6c757d;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group .custom-select2 {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.9rem;
  background: #fff;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.shopping-pages .order-confirmation .confirmation-group .order-form .form-one .form-group .custom-select2:focus {
  outline: none;
  border-color: #F5B301;
}
.shopping-pages .order-confirmation .confirmation-group .table {
  margin-bottom: 20px;
}
.shopping-pages .order-confirmation .confirmation-group .table.table-dark {
  background: #343a40;
  color: #fff;
}
.shopping-pages .order-confirmation .confirmation-group .table.table-dark th, .shopping-pages .order-confirmation .confirmation-group .table.table-dark td {
  border-color: #454d55;
  padding: 12px 8px;
  font-size: 0.9rem;
}
.shopping-pages .order-confirmation .confirmation-group .table.table-dark th {
  background: #495057;
  font-weight: 600;
}
.shopping-pages .order-confirmation .confirmation-group .order-result {
  background: #f8f9fa;
  border-radius: 4px;
  padding: 20px;
  margin-top: 20px;
}
.shopping-pages .order-confirmation .confirmation-group .order-result .result-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}
.shopping-pages .order-confirmation .confirmation-group .order-result .result-group:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.1rem;
}
.shopping-pages .order-confirmation .confirmation-group .order-result .result-group .tag {
  color: #6c757d;
  font-size: 0.9rem;
}
.shopping-pages .order-confirmation .confirmation-group .order-result .result-group .value {
  color: #2d1b1b;
  font-weight: 500;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order {
  margin-top: 30px;
  text-align: center;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-one .form-group {
  margin-bottom: 20px;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-one .form-group label {
  display: block;
  font-weight: 500;
  color: #2d1b1b;
  margin-bottom: 8px;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-one .form-group .input-style {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 80px;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-one .form-group .input-style:focus {
  outline: none;
  border-color: #F5B301;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-group p {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-group p a {
  color: #F5B301;
  text-decoration: none;
  font-weight: 600;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-group p a:hover {
  text-decoration: underline;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-group .btn-one {
  background: #F5B301;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-group .btn-one:hover {
  background: #E5A301;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-group .btn-one.btn-red {
  background: #dc3545;
}
.shopping-pages .order-confirmation .confirmation-group .confirm-order .form-group .btn-one.btn-red:hover {
  background: #c82333;
}

.select2-container {
  width: 100% !important;
  font-family: inherit;
}

.select2-container--default .select2-selection--single {
  height: 38px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.select2-container--default .select2-selection--single:hover {
  border-color: #adb5bd;
}
.select2-container--default .select2-selection--single:focus {
  border-color: #F5B301;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
  padding-left: 12px;
  padding-right: 30px;
  color: #495057;
  font-size: 0.9rem;
  font-weight: 400;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  color: #6c757d;
  font-style: italic;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  color: #6c757d;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 25px;
  padding: 0;
  height: 36px;
  line-height: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__clear:hover {
  color: #dc3545;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
  width: 30px;
  position: absolute;
  right: 0;
  top: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #6c757d transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #F5B301;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #F5B301 transparent;
  border-width: 0 4px 5px 4px;
  margin-top: -3px;
}
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #F5B301;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.select2-container--default .select2-dropdown {
  border: 1px solid #F5B301;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 9999;
}
.select2-container--default .select2-dropdown .select2-search--dropdown {
  padding: 8px;
}
.select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 0.9rem;
  outline: none;
}
.select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field:focus {
  border-color: #F5B301;
  -webkit-box-shadow: 0 0 0 2px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 2px rgba(245, 179, 1, 0.1);
}
.select2-container--default .select2-dropdown .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-dropdown .select2-results__options::-webkit-scrollbar {
  width: 6px;
}
.select2-container--default .select2-dropdown .select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.select2-container--default .select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.select2-container--default .select2-dropdown .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.select2-container--default .select2-dropdown .select2-results__option {
  padding: 10px 12px;
  font-size: 0.9rem;
  color: #495057;
  border: none;
  background: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.select2-container--default .select2-dropdown .select2-results__option:hover {
  background: #f8f9fa;
  color: #2d1b1b;
}
.select2-container--default .select2-dropdown .select2-results__option.select2-results__option--highlighted[aria-selected] {
  background: #F5B301;
  color: #fff;
}
.select2-container--default .select2-dropdown .select2-results__option.select2-results__option[aria-selected=true] {
  background: #e9ecef;
  color: #2d1b1b;
  font-weight: 500;
}
.select2-container--default .select2-dropdown .select2-results__option.select2-results__option--disabled {
  color: #6c757d;
  background: #f8f9fa;
  cursor: not-allowed;
}
.select2-container--default .select2-dropdown .select2-results__message {
  color: #6c757d;
  font-style: italic;
  padding: 10px 12px;
}
.select2-container--default .select2-selection--multiple {
  border: 1px solid #ced4da;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  min-height: 38px;
}
.select2-container--default .select2-selection--multiple:hover {
  border-color: #adb5bd;
}
.select2-container--default .select2-selection--multiple:focus {
  border-color: #F5B301;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 4px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #F5B301;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 0.8rem;
  margin: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #fff;
  margin-right: 5px;
  font-weight: bold;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.select2-container--default .select2-selection--multiple .select2-search--inline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 100px;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  color: #495057;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field::-webkit-input-placeholder {
  color: #6c757d;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field::-moz-placeholder {
  color: #6c757d;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field:-ms-input-placeholder {
  color: #6c757d;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field::-ms-input-placeholder {
  color: #6c757d;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
  color: #6c757d;
}

.select2-container--default.select2-container--loading .select2-selection--single .select2-selection__rendered {
  color: #6c757d;
  font-style: italic;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background: #e9ecef;
  border-color: #ced4da;
  cursor: not-allowed;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
  color: #6c757d;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__arrow {
  display: none;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: 1.5;
}
.btn:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.25);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.25);
}
.btn.btn-primary {
  background: #F5B301;
  border-color: #F5B301;
  color: #fff;
}
.btn.btn-primary:hover {
  background: #E5A301;
  border-color: #E5A301;
  color: #fff;
}
.btn.btn-primary:active {
  background: #D59301;
  border-color: #D59301;
}
.btn.btn-secondary {
  background: #6c757d;
  border-color: #6c757d;
  color: #fff;
}
.btn.btn-secondary:hover {
  background: #5a6268;
  border-color: #5a6268;
  color: #fff;
}
.btn.btn-success {
  background: #28a745;
  border-color: #28a745;
  color: #fff;
}
.btn.btn-success:hover {
  background: #218838;
  border-color: #218838;
  color: #fff;
}
.btn.btn-danger {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}
.btn.btn-danger:hover {
  background: #c82333;
  border-color: #c82333;
  color: #fff;
}
.btn.btn-outline-primary {
  background: transparent;
  border-color: #F5B301;
  color: #F5B301;
}
.btn.btn-outline-primary:hover {
  background: #F5B301;
  border-color: #F5B301;
  color: #fff;
}
.btn.btn-sm {
  padding: 4px 8px;
  font-size: 0.8rem;
  border-radius: 3px;
}
.btn.btn-lg {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
}
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-group .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.promo-code-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.promo-code-section .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
}
.promo-code-section .btn {
  white-space: nowrap;
  min-width: 80px;
}

.shopping-pages .auth-control .auth-forms {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #e9ecef;
  height: 100%;
}
.shopping-pages .auth-control .auth-forms .section-head {
  text-align: center;
  margin-bottom: 25px;
}
.shopping-pages .auth-control .auth-forms .section-head h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
  padding: 12px 20px;
  background: #F5B301;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
}
.shopping-pages .auth-control .auth-forms .section-head .icon i {
  font-size: 3rem;
  color: #F5B301;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.shopping-pages .auth-control .auth-forms .section-head .icon img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.shopping-pages .auth-control .auth-forms .form-one .form-group {
  margin-bottom: 20px;
}
.shopping-pages .auth-control .auth-forms .form-one .form-group label {
  display: block;
  font-weight: 500;
  color: #2d1b1b;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.shopping-pages .auth-control .auth-forms .form-one .form-group .input-style {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.9rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #fff;
}
.shopping-pages .auth-control .auth-forms .form-one .form-group .input-style:focus {
  outline: none;
  border-color: #F5B301;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.shopping-pages .auth-control .auth-forms .form-one .form-group .input-style::-webkit-input-placeholder {
  color: #6c757d;
}
.shopping-pages .auth-control .auth-forms .form-one .form-group .input-style::-moz-placeholder {
  color: #6c757d;
}
.shopping-pages .auth-control .auth-forms .form-one .form-group .input-style:-ms-input-placeholder {
  color: #6c757d;
}
.shopping-pages .auth-control .auth-forms .form-one .form-group .input-style::-ms-input-placeholder {
  color: #6c757d;
}
.shopping-pages .auth-control .auth-forms .form-one .form-group .input-style::placeholder {
  color: #6c757d;
}
.shopping-pages .auth-control .auth-forms .form-one .form-group.text-right {
  text-align: right;
  margin-top: 25px;
}
.shopping-pages .auth-control .auth-forms .form-one .form-group .text-danger {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}
.shopping-pages .auth-control .auth-forms .form-one hr {
  border: none;
  border-top: 1px solid #e9ecef;
  margin: 25px 0;
}
.shopping-pages .auth-control .auth-forms .form-one .bottom-content p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.shopping-pages .auth-control .auth-forms .form-one .bottom-content p a {
  color: #F5B301;
  text-decoration: none;
  font-weight: 600;
}
.shopping-pages .auth-control .auth-forms .form-one .bottom-content p a:hover {
  text-decoration: underline;
}
.shopping-pages .auth-control .auth-forms .form-one .guest-info {
  background: #f8f9fa;
  border-left: 4px solid #F5B301;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
}
.shopping-pages .auth-control .auth-forms .form-one .guest-info p {
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
.shopping-pages .auth-control .auth-forms .form-one .login-info {
  background: #fff3cd;
  border-left: 4px solid #F5B301;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
}
.shopping-pages .auth-control .auth-forms .form-one .login-info p {
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
.shopping-pages .general-response {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  margin: 20px 0;
  border: 1px solid #e9ecef;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.shopping-pages .general-response .content .icon {
  margin-bottom: 25px;
}
.shopping-pages .general-response .content .icon img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.shopping-pages .general-response .content p {
  font-size: 1.1rem;
  color: #2d1b1b;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}
.shopping-pages .general-response .content p strong {
  color: #F5B301;
  font-weight: 600;
  font-size: 1.2rem;
}
.shopping-pages .general-response .content i {
  display: block;
  font-style: italic;
  color: #6c757d;
  font-size: 1rem;
  margin-top: 15px;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 4px;
  border-left: 4px solid #F5B301;
}

.auth-pages {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.auth-pages .auth-forms {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(245, 179, 1, 0.1);
}
.auth-pages .auth-forms .section-head {
  text-align: center;
  margin-bottom: 30px;
}
.auth-pages .auth-forms .section-head h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #F5B301 0%, #FFF4D6 100%);
  color: #2d1b1b;
  padding: 12px 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(245, 179, 1, 0.2);
          box-shadow: 0 2px 8px rgba(245, 179, 1, 0.2);
}
.auth-pages .auth-forms .section-head h2 i {
  color: #2d1b1b;
  font-size: 1.5rem;
}
.auth-pages .auth-forms .section-head .icon img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.auth-pages .auth-forms .form-one .alert {
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 15px;
  border: none;
}
.auth-pages .auth-forms .form-one .alert.alert-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}
.auth-pages .auth-forms .form-one .alert.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}
.auth-pages .auth-forms .form-one .form-group {
  margin-bottom: 20px;
}
.auth-pages .auth-forms .form-one .form-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #2d1b1b;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.auth-pages .auth-forms .form-one .form-group label i {
  color: #F5B301;
  font-size: 0.85rem;
}
.auth-pages .auth-forms .form-one .form-group .input-style {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.9rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #fff;
}
.auth-pages .auth-forms .form-one .form-group .input-style:focus {
  outline: none;
  border-color: #F5B301;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.08);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.08);
  background: #fefefe;
}
.auth-pages .auth-forms .form-one .form-group .input-style::-webkit-input-placeholder {
  color: #6c757d;
}
.auth-pages .auth-forms .form-one .form-group .input-style::-moz-placeholder {
  color: #6c757d;
}
.auth-pages .auth-forms .form-one .form-group .input-style:-ms-input-placeholder {
  color: #6c757d;
}
.auth-pages .auth-forms .form-one .form-group .input-style::-ms-input-placeholder {
  color: #6c757d;
}
.auth-pages .auth-forms .form-one .form-group .input-style::placeholder {
  color: #6c757d;
}
.auth-pages .auth-forms .form-one .form-group .input-style.is-invalid {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
          box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.auth-pages .auth-forms .form-one .form-group .text-danger {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}
.auth-pages .auth-forms .form-one .form-group .d-flex .form-check .form-check-input {
  border-color: #ced4da;
  border-radius: 4px;
}
.auth-pages .auth-forms .form-one .form-group .d-flex .form-check .form-check-input:checked {
  background-color: #F5B301;
  border-color: #F5B301;
}
.auth-pages .auth-forms .form-one .form-group .d-flex .form-check .form-check-input:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.auth-pages .auth-forms .form-one .form-group .d-flex .form-check .form-check-label {
  color: #495057;
  font-size: 0.9rem;
  cursor: pointer;
}
.auth-pages .auth-forms .form-one .form-group .d-flex .forgot-pass {
  color: #F5B301;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.auth-pages .auth-forms .form-one .form-group .d-flex .forgot-pass:hover {
  color: #E5A301;
  text-decoration: underline;
}
.auth-pages .auth-forms .form-one .form-group.text-right {
  text-align: right;
  margin-top: 25px;
}
.auth-pages .auth-forms .form-one hr {
  border: none;
  border-top: 1px solid #e9ecef;
  margin: 25px 0;
}
.auth-pages .auth-forms .form-one .bottom-content p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.auth-pages .auth-forms .form-one .bottom-content p a {
  color: #F5B301;
  text-decoration: none;
  font-weight: 600;
}
.auth-pages .auth-forms .form-one .bottom-content p a:hover {
  text-decoration: underline;
}
.auth-pages .auth-forms .form-one p.text-center {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  border-radius: 4px;
  border-left: 4px solid #F5B301;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .shopping-pages .order-confirmation .section-head h1 {
    font-size: 1.5rem;
  }
  .shopping-pages .order-confirmation .section-head .icon img {
    width: 50px;
    height: 50px;
  }
  .shopping-pages .order-confirmation .confirmation-group {
    padding: 20px;
  }
  .shopping-pages .order-confirmation .confirmation-group h2 {
    font-size: 1.2rem;
  }
  .shopping-pages .auth-control .auth-forms {
    padding: 25px 20px;
    margin-bottom: 20px;
  }
  .shopping-pages .auth-control .auth-forms .section-head {
    margin-bottom: 20px;
  }
  .shopping-pages .auth-control .auth-forms .section-head h2 {
    font-size: 1.3rem;
    padding: 10px 16px;
  }
  .shopping-pages .auth-control .auth-forms .section-head .icon i {
    font-size: 2.5rem;
  }
  .shopping-pages .auth-control .auth-forms .section-head .icon img {
    width: 50px;
    height: 50px;
  }
  .shopping-pages .auth-control .auth-forms .form-one .form-group {
    margin-bottom: 15px;
  }
  .shopping-pages .auth-control .auth-forms .form-one .form-group label {
    font-size: 0.85rem;
  }
  .shopping-pages .auth-control .auth-forms .form-one .form-group .input-style {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  .shopping-pages .auth-control .auth-forms .form-one .form-group.text-right {
    margin-top: 20px;
  }
  .shopping-pages .auth-control .auth-forms .form-one .bottom-content p {
    font-size: 0.85rem;
  }
  .shopping-pages .auth-control .auth-forms .form-one .guest-info {
    padding: 12px;
    margin-bottom: 15px;
  }
  .shopping-pages .auth-control .auth-forms .form-one .guest-info p {
    font-size: 0.85rem;
  }
  .shopping-pages .auth-control .auth-forms .form-one .login-info {
    padding: 12px;
    margin-bottom: 15px;
  }
  .shopping-pages .auth-control .auth-forms .form-one .login-info p {
    font-size: 0.85rem;
  }
  .shopping-pages .auth-pages {
    padding: 40px 0;
  }
  .shopping-pages .auth-pages .auth-forms {
    padding: 30px 20px;
    max-width: 100%;
  }
  .shopping-pages .auth-pages .auth-forms .section-head h2 {
    font-size: 1.5rem;
  }
  .shopping-pages .auth-pages .auth-forms .section-head h2 i {
    font-size: 1.2rem;
  }
  .shopping-pages .auth-pages .auth-forms .section-head .icon img {
    width: 60px;
    height: 60px;
  }
  .shopping-pages .auth-pages .auth-forms .form-one .form-group {
    margin-bottom: 15px;
  }
  .shopping-pages .auth-pages .auth-forms .form-one .form-group label {
    font-size: 0.85rem;
  }
  .shopping-pages .auth-pages .auth-forms .form-one .form-group .input-style {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  .shopping-pages .general-response {
    padding: 30px 20px;
    margin: 15px 0;
  }
  .shopping-pages .general-response .content .icon {
    margin-bottom: 20px;
  }
  .shopping-pages .general-response .content .icon img {
    width: 60px;
    height: 60px;
  }
  .shopping-pages .general-response .content p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .shopping-pages .general-response .content p strong {
    font-size: 1.1rem;
  }
  .shopping-pages .general-response .content i {
    font-size: 0.9rem;
    padding: 12px 15px;
    margin-top: 12px;
  }
  .promo-code-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .promo-code-section .btn {
    width: 100%;
  }
  .btn-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog-section {
  padding: 60px 0;
}
.blog-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.blog-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
}
.blog-section .section-header .section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0;
}
.blog-section .blog-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.blog-section .blog-grid .blog-card {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 179, 1, 0.1);
}
.blog-section .blog-grid .blog-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.blog-section .blog-grid .blog-card .blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-section .blog-grid .blog-card .blog-link:hover {
  text-decoration: none;
  color: inherit;
}
.blog-section .blog-grid .blog-card .blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.blog-section .blog-grid .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog-section .blog-grid .blog-card:hover .blog-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog-section .blog-grid .blog-card .blog-content {
  padding: 25px;
}
.blog-section .blog-grid .blog-card .blog-content .blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
}
.blog-section .blog-grid .blog-card .blog-content .blog-meta .blog-date, .blog-section .blog-grid .blog-card .blog-content .blog-meta .blog-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #6c757d;
}
.blog-section .blog-grid .blog-card .blog-content .blog-meta .blog-date i, .blog-section .blog-grid .blog-card .blog-content .blog-meta .blog-category i {
  color: #F5B301;
  font-size: 0.8rem;
}
.blog-section .blog-grid .blog-card .blog-content .blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-section .blog-grid .blog-card .blog-content .blog-excerpt p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-section .blog-grid .blog-card .blog-content .blog-excerpt .read-more {
  color: #F5B301;
  font-weight: 600;
  font-size: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog-section .blog-grid .blog-card .blog-content .blog-excerpt .read-more i {
  font-size: 0.8rem;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.blog-section .blog-grid .blog-card .blog-content .blog-excerpt .read-more:hover {
  color: #E5A301;
}
.blog-section .blog-grid .blog-card .blog-content .blog-excerpt .read-more:hover i {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.blog-section .no-blogs .no-blogs-icon i {
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .blog-section {
    padding: 40px 0;
  }
  .blog-section .section-header {
    margin-bottom: 30px;
  }
  .blog-section .section-header .section-title {
    font-size: 2rem;
  }
  .blog-section .section-header .section-subtitle {
    font-size: 1rem;
  }
  .blog-section .blog-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-section .blog-grid .blog-card .blog-content {
    padding: 20px;
  }
  .blog-section .blog-grid .blog-card .blog-content .blog-title {
    font-size: 1.2rem;
  }
}
.blog-detail-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
}
.blog-detail-section .blog-detail-container {
  max-width: 900px;
  margin: 0 auto;
}
.blog-detail-section .blog-detail-container .blog-header {
  margin-bottom: 50px;
}
.blog-detail-section .blog-detail-container .blog-header .blog-image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.blog-detail-section .blog-detail-container .blog-header .blog-image-container img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detail-section .blog-detail-container .blog-header .blog-image-container .blog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 40px 30px 30px;
}
.blog-detail-section .blog-detail-container .blog-header .blog-image-container .blog-overlay .blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: #f5f5dc;
  font-size: 0.9rem;
}
.blog-detail-section .blog-detail-container .blog-header .blog-image-container .blog-overlay .blog-meta span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.blog-detail-section .blog-detail-container .blog-header .blog-image-container .blog-overlay .blog-meta span i {
  color: #F5B301;
}
.blog-detail-section .blog-detail-container .blog-header .blog-image-container .blog-overlay h1 {
  color: #f5f5dc;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}
.blog-detail-section .blog-detail-container .blog-content-container {
  background: #fff;
  border-radius: 8px;
  padding: 50px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(245, 179, 1, 0.1);
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-content {
  color: #333;
  line-height: 1.8;
  font-size: 1.1rem;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-content h1, .blog-detail-section .blog-detail-container .blog-content-container .blog-content h2, .blog-detail-section .blog-detail-container .blog-content-container .blog-content h3, .blog-detail-section .blog-detail-container .blog-content-container .blog-content h4, .blog-detail-section .blog-detail-container .blog-content-container .blog-content h5, .blog-detail-section .blog-detail-container .blog-content-container .blog-content h6 {
  color: #2d1b1b;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-content p {
  margin-bottom: 20px;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 20px 0;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-content ul, .blog-detail-section .blog-detail-container .blog-content-container .blog-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-content ul li, .blog-detail-section .blog-detail-container .blog-content-container .blog-content ol li {
  margin-bottom: 8px;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-content blockquote {
  border-left: 4px solid #F5B301;
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #6c757d;
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 0 8px 8px 0;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e8e8e8;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer .blog-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer .blog-tags span {
  background: linear-gradient(135deg, #f8f8f0 0%, #f0f0f0 100%);
  color: #2d1b1b;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(245, 179, 1, 0.2);
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer .blog-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer .blog-share span {
  color: #666;
  font-weight: 600;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer .blog-share a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer .blog-share a.facebook {
  background: linear-gradient(135deg, #1877f2, #0d6efd);
  color: white;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer .blog-share a.twitter {
  background: linear-gradient(135deg, #1da1f2, #0ea5e9);
  color: white;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer .blog-share a.instagram {
  background: linear-gradient(135deg, #e4405f, #dc3545);
  color: white;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer .blog-share a.linkedin {
  background: linear-gradient(135deg, #0a66c2, #0077b5);
  color: white;
}
.blog-detail-section .blog-detail-container .blog-content-container .blog-footer .blog-share a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.blog-detail-section .blog-detail-container .back-to-blog {
  text-align: center;
  margin-top: 50px;
}
.blog-detail-section .blog-detail-container .back-to-blog .back-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2d1b1b 0%, #3d2525 100%);
  color: #f5f5dc;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(45, 27, 27, 0.3);
          box-shadow: 0 4px 15px rgba(45, 27, 27, 0.3);
}
.blog-detail-section .blog-detail-container .back-to-blog .back-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(45, 27, 27, 0.4);
          box-shadow: 0 6px 20px rgba(45, 27, 27, 0.4);
  color: #f5f5dc;
  text-decoration: none;
}

@media (max-width: 768px) {
  .blog-detail-section {
    padding: 40px 0;
  }
  .blog-detail-section .blog-detail-container .blog-header .blog-image-container .blog-overlay {
    padding: 30px 20px 20px;
  }
  .blog-detail-section .blog-detail-container .blog-header .blog-image-container .blog-overlay h1 {
    font-size: 1.8rem;
  }
  .blog-detail-section .blog-detail-container .blog-header .blog-image-container .blog-overlay .blog-meta {
    font-size: 0.8rem;
    gap: 15px;
  }
  .blog-detail-section .blog-detail-container .blog-content-container {
    padding: 30px 20px;
  }
  .blog-detail-section .blog-detail-container .blog-content-container .blog-content {
    font-size: 1rem;
  }
}
.product-pages {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
}
.product-pages .category-head {
  text-align: center;
  margin-bottom: 40px;
}
.product-pages .category-head h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 10px;
}
.product-pages .category-head .search-info {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0;
}
.product-pages .item-filters {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 25px;
  border: 1px solid rgba(245, 179, 1, 0.1);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
}
.product-pages .item-filters .filter-group h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F5B301;
}
.product-pages .item-filters .filter-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-pages .item-filters .filter-group ul li {
  margin-bottom: 8px;
}
.product-pages .item-filters .filter-group ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #6c757d;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.product-pages .item-filters .filter-group ul li a i {
  color: #F5B301;
  font-size: 0.8rem;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.product-pages .item-filters .filter-group ul li a:hover {
  background: #f8f9fa;
  color: #2d1b1b;
  text-decoration: none;
}
.product-pages .item-filters .filter-group ul li a:hover i {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.product-pages .item-filters .filter-group ul li a.active-link {
  background: linear-gradient(135deg, #F5B301, #FFF4D6);
  color: #2d1b1b;
  font-weight: 600;
}
.product-pages .item-filters .filter-group ul li a.active-link i {
  color: #2d1b1b;
}
.product-pages .general-product-list .item-list .row {
  margin: 0 -10px;
}
.product-pages .general-product-list .item-list .row .col-lg-4, .product-pages .general-product-list .item-list .row .col-md-6 {
  padding: 0 10px;
  margin-bottom: 20px;
}
.product-pages .general-product-list .item-list .item {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 179, 1, 0.1);
  position: relative;
}
.product-pages .general-product-list .item-list .item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.product-pages .general-product-list .item-list .item .ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}
.product-pages .general-product-list .item-list .item .ribbon.red {
  background: linear-gradient(135deg, #dc3545, #c82333);
}
.product-pages .general-product-list .item-list .item .image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.product-pages .general-product-list .item-list .item .image a {
  display: block;
  height: 100%;
}
.product-pages .general-product-list .item-list .item .image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.product-pages .general-product-list .item-list .item:hover .image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.product-pages .general-product-list .item-list .item .content {
  padding: 20px;
}
.product-pages .general-product-list .item-list .item .content .product-name {
  margin-bottom: 15px;
}
.product-pages .general-product-list .item-list .item .content .product-name a {
  text-decoration: none;
  color: inherit;
}
.product-pages .general-product-list .item-list .item .content .product-name a strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 5px;
  line-height: 1.4;
}
.product-pages .general-product-list .item-list .item .content .product-name a small {
  color: #6c757d;
  font-size: 0.85rem;
}
.product-pages .general-product-list .item-list .item .content .product-name a:hover {
  text-decoration: none;
  color: inherit;
}
.product-pages .general-product-list .item-list .item .content .product-name a:hover strong {
  color: #F5B301;
}
.product-pages .general-product-list .item-list .item .content .product-price {
  margin-bottom: 15px;
}
.product-pages .general-product-list .item-list .item .content .product-price .standard-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #F5B301;
}
.product-pages .general-product-list .item-list .item .content .product-price .discounted-price .base-price {
  font-size: 1rem;
  color: #6c757d;
  text-decoration: line-through;
  margin-right: 8px;
}
.product-pages .general-product-list .item-list .item .content .product-price .discounted-price .discounted-price-end {
  font-size: 1.2rem;
  font-weight: 600;
  color: #dc3545;
}
.product-pages .general-product-list .item-list .item .content .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.product-pages .general-product-list .item-list .item .content .options a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  background: #f8f9fa;
  color: #6c757d;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product-pages .general-product-list .item-list .item .content .options a:hover {
  background: #e9ecef;
  color: #2d1b1b;
  text-decoration: none;
}
.product-pages .general-product-list .item-list .item .content .options a i {
  font-size: 0.8rem;
}
.product-pages .general-product-list .item-list .item .content .options .action-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.product-pages .general-product-list .item-list .item .content .options .action-btn.add-to-cart-btn {
  background: #F5B301;
  color: #fff;
}
.product-pages .general-product-list .item-list .item .content .options .action-btn.add-to-cart-btn:hover {
  background: #E5A301;
  color: #fff;
}
.product-pages .general-product-list .item-list .item .content .options .action-btn.add-to-cart-btn.processing {
  opacity: 0.7;
  cursor: not-allowed;
}
.product-pages .general-product-list .pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.product-pages .general-product-list .pagination .page-item {
  margin: 0 2px;
}
.product-pages .general-product-list .pagination .page-item .page-link {
  border: none;
  border-radius: 4px;
  color: #6c757d;
  padding: 8px 12px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product-pages .general-product-list .pagination .page-item .page-link:hover {
  background: #f8f9fa;
  color: #2d1b1b;
}
.product-pages .general-product-list .pagination .page-item .page-link:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.product-pages .general-product-list .pagination .page-item.active .page-link {
  background: #F5B301;
  color: #fff;
  border-color: #F5B301;
}
.product-pages .general-product-list .pagination .page-item.disabled .page-link {
  color: #adb5bd;
  background: transparent;
}

@media (max-width: 768px) {
  .product-pages {
    padding: 40px 0;
  }
  .product-pages .category-head {
    margin-bottom: 30px;
  }
  .product-pages .category-head h1 {
    font-size: 2rem;
  }
  .product-pages .item-filters {
    margin-bottom: 30px;
    position: static;
  }
  .product-pages .item-filters .filter-group h2 {
    font-size: 1.2rem;
  }
  .product-pages .general-product-list .item-list .item .content {
    padding: 15px;
  }
  .product-pages .general-product-list .item-list .item .content .product-name a strong {
    font-size: 1rem;
  }
  .product-pages .general-product-list .item-list .item .content .options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.customer-panel {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
}
.customer-panel .user-head {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 179, 1, 0.1);
}
.customer-panel .user-head p {
  margin: 0;
  font-size: 1.1rem;
  color: #6c757d;
}
.customer-panel .user-head p:first-child {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.customer-panel .user-head p:first-child strong {
  color: #F5B301;
  font-weight: 600;
}
.customer-panel .user-head p:last-child {
  background: linear-gradient(135deg, #2d1b1b, #3d2b2b);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  margin-top: 10px;
  display: inline-block;
}
.customer-panel .customer-sidebar {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 25px;
  border: 1px solid rgba(245, 179, 1, 0.1);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
}
.customer-panel .customer-sidebar .page-item {
  margin-bottom: 20px;
}
.customer-panel .customer-sidebar .page-item:last-child {
  margin-bottom: 0;
}
.customer-panel .customer-sidebar .page-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 20px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.customer-panel .customer-sidebar .page-item a:hover {
  background: rgba(245, 179, 1, 0.1);
  border-color: rgba(245, 179, 1, 0.3);
  text-decoration: none;
  color: inherit;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.customer-panel .customer-sidebar .page-item a .title h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 8px;
}
.customer-panel .customer-sidebar .page-item a .content p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}
.customer-panel .customer-sidebar .page-item a {
  background: #fff;
  border-color: #e9ecef;
  color: #2d1b1b;
}
.customer-panel .customer-sidebar .page-item a .title h3 {
  color: #2d1b1b;
}
.customer-panel .customer-sidebar .page-item a .content p {
  color: #6c757d;
}
.customer-panel .customer-sidebar .page-item a:hover {
  background: rgba(245, 179, 1, 0.1);
  border-color: rgba(245, 179, 1, 0.3);
  text-decoration: none;
  color: inherit;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.customer-panel .customer-sidebar .page-item a:hover .title h3 {
  color: #2d1b1b;
}
.customer-panel .customer-sidebar .page-item a:hover .content p {
  color: #6c757d;
}
.customer-panel .customer-sidebar .page-item.active-page a {
  background: linear-gradient(135deg, #F5B301, #FFF4D6);
  border-color: #F5B301;
  color: #2d1b1b;
}
.customer-panel .customer-sidebar .page-item.active-page a .title h3 {
  color: #2d1b1b;
}
.customer-panel .customer-sidebar .page-item.active-page a .content p {
  color: #2d1b1b;
}
.customer-panel .my-profile, .customer-panel .my-orders, .customer-panel .my-favorites, .customer-panel .my-addresses, .customer-panel .edit-profile, .customer-panel .edit-address, .customer-panel .change-password, .customer-panel .order-detail {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border: 1px solid rgba(245, 179, 1, 0.1);
}
.customer-panel .my-profile.order-detail-page, .customer-panel .my-orders.order-detail-page, .customer-panel .my-favorites.order-detail-page, .customer-panel .my-addresses.order-detail-page, .customer-panel .edit-profile.order-detail-page, .customer-panel .edit-address.order-detail-page, .customer-panel .change-password.order-detail-page, .customer-panel .order-detail.order-detail-page {
  background: #fff !important;
  border-radius: 15px !important;
  padding: 30px !important;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(245, 179, 1, 0.1) !important;
  margin: 0 !important;
}
.customer-panel .my-profile.order-detail-page .order-detail-header, .customer-panel .my-orders.order-detail-page .order-detail-header, .customer-panel .my-favorites.order-detail-page .order-detail-header, .customer-panel .my-addresses.order-detail-page .order-detail-header, .customer-panel .edit-profile.order-detail-page .order-detail-header, .customer-panel .edit-address.order-detail-page .order-detail-header, .customer-panel .change-password.order-detail-page .order-detail-header, .customer-panel .order-detail.order-detail-page .order-detail-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f1f3f4;
}
.customer-panel .my-profile.order-detail-page .order-detail-header .header-icon, .customer-panel .my-orders.order-detail-page .order-detail-header .header-icon, .customer-panel .my-favorites.order-detail-page .order-detail-header .header-icon, .customer-panel .my-addresses.order-detail-page .order-detail-header .header-icon, .customer-panel .edit-profile.order-detail-page .order-detail-header .header-icon, .customer-panel .edit-address.order-detail-page .order-detail-header .header-icon, .customer-panel .change-password.order-detail-page .order-detail-header .header-icon, .customer-panel .order-detail.order-detail-page .order-detail-header .header-icon {
  background: linear-gradient(135deg, #F5B301, #FFC933);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3);
}
.customer-panel .my-profile.order-detail-page .order-detail-header .header-icon i, .customer-panel .my-orders.order-detail-page .order-detail-header .header-icon i, .customer-panel .my-favorites.order-detail-page .order-detail-header .header-icon i, .customer-panel .my-addresses.order-detail-page .order-detail-header .header-icon i, .customer-panel .edit-profile.order-detail-page .order-detail-header .header-icon i, .customer-panel .edit-address.order-detail-page .order-detail-header .header-icon i, .customer-panel .change-password.order-detail-page .order-detail-header .header-icon i, .customer-panel .order-detail.order-detail-page .order-detail-header .header-icon i {
  font-size: 24px;
  color: #fff;
}
.customer-panel .my-profile.order-detail-page .order-detail-header .header-content h1, .customer-panel .my-orders.order-detail-page .order-detail-header .header-content h1, .customer-panel .my-favorites.order-detail-page .order-detail-header .header-content h1, .customer-panel .my-addresses.order-detail-page .order-detail-header .header-content h1, .customer-panel .edit-profile.order-detail-page .order-detail-header .header-content h1, .customer-panel .edit-address.order-detail-page .order-detail-header .header-content h1, .customer-panel .change-password.order-detail-page .order-detail-header .header-content h1, .customer-panel .order-detail.order-detail-page .order-detail-header .header-content h1 {
  font-size: 28px;
  font-weight: 700;
  color: #2c1810;
  margin: 0 0 5px 0;
}
.customer-panel .my-profile.order-detail-page .order-detail-header .header-content .order-date, .customer-panel .my-orders.order-detail-page .order-detail-header .header-content .order-date, .customer-panel .my-favorites.order-detail-page .order-detail-header .header-content .order-date, .customer-panel .my-addresses.order-detail-page .order-detail-header .header-content .order-date, .customer-panel .edit-profile.order-detail-page .order-detail-header .header-content .order-date, .customer-panel .edit-address.order-detail-page .order-detail-header .header-content .order-date, .customer-panel .change-password.order-detail-page .order-detail-header .header-content .order-date, .customer-panel .order-detail.order-detail-page .order-detail-header .header-content .order-date {
  color: #6c757d;
  font-size: 16px;
  margin: 0;
}
.customer-panel .my-profile.order-detail-page .order-summary-card, .customer-panel .my-orders.order-detail-page .order-summary-card, .customer-panel .my-favorites.order-detail-page .order-summary-card, .customer-panel .my-addresses.order-detail-page .order-summary-card, .customer-panel .edit-profile.order-detail-page .order-summary-card, .customer-panel .edit-address.order-detail-page .order-summary-card, .customer-panel .change-password.order-detail-page .order-summary-card, .customer-panel .order-detail.order-detail-page .order-summary-card {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  color: #fff;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.customer-panel .my-profile.order-detail-page .order-summary-card .summary-grid, .customer-panel .my-orders.order-detail-page .order-summary-card .summary-grid, .customer-panel .my-favorites.order-detail-page .order-summary-card .summary-grid, .customer-panel .my-addresses.order-detail-page .order-summary-card .summary-grid, .customer-panel .edit-profile.order-detail-page .order-summary-card .summary-grid, .customer-panel .edit-address.order-detail-page .order-summary-card .summary-grid, .customer-panel .change-password.order-detail-page .order-summary-card .summary-grid, .customer-panel .order-detail.order-detail-page .order-summary-card .summary-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.customer-panel .my-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-label, .customer-panel .my-orders.order-detail-page .order-summary-card .summary-grid .summary-item .summary-label, .customer-panel .my-favorites.order-detail-page .order-summary-card .summary-grid .summary-item .summary-label, .customer-panel .my-addresses.order-detail-page .order-summary-card .summary-grid .summary-item .summary-label, .customer-panel .edit-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-label, .customer-panel .edit-address.order-detail-page .order-summary-card .summary-grid .summary-item .summary-label, .customer-panel .change-password.order-detail-page .order-summary-card .summary-grid .summary-item .summary-label, .customer-panel .order-detail.order-detail-page .order-summary-card .summary-grid .summary-item .summary-label {
  font-size: 14px;
  color: #F5B301;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.customer-panel .my-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value, .customer-panel .my-orders.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value, .customer-panel .my-favorites.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value, .customer-panel .my-addresses.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value, .customer-panel .edit-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value, .customer-panel .edit-address.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value, .customer-panel .change-password.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value, .customer-panel .order-detail.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.customer-panel .my-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge, .customer-panel .my-orders.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge, .customer-panel .my-favorites.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge, .customer-panel .my-addresses.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge, .customer-panel .edit-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge, .customer-panel .edit-address.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge, .customer-panel .change-password.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge, .customer-panel .order-detail.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.customer-panel .my-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-created, .customer-panel .my-orders.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-created, .customer-panel .my-favorites.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-created, .customer-panel .my-addresses.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-created, .customer-panel .edit-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-created, .customer-panel .edit-address.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-created, .customer-panel .change-password.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-created, .customer-panel .order-detail.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-created {
  background: #ffc107;
  color: #2c1810;
}
.customer-panel .my-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-payment_completed, .customer-panel .my-orders.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-payment_completed, .customer-panel .my-favorites.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-payment_completed, .customer-panel .my-addresses.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-payment_completed, .customer-panel .edit-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-payment_completed, .customer-panel .edit-address.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-payment_completed, .customer-panel .change-password.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-payment_completed, .customer-panel .order-detail.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-payment_completed {
  background: #28a745;
  color: #fff;
}
.customer-panel .my-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-shipped, .customer-panel .my-orders.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-shipped, .customer-panel .my-favorites.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-shipped, .customer-panel .my-addresses.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-shipped, .customer-panel .edit-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-shipped, .customer-panel .edit-address.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-shipped, .customer-panel .change-password.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-shipped, .customer-panel .order-detail.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-shipped {
  background: #17a2b8;
  color: #fff;
}
.customer-panel .my-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-delivered, .customer-panel .my-orders.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-delivered, .customer-panel .my-favorites.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-delivered, .customer-panel .my-addresses.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-delivered, .customer-panel .edit-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-delivered, .customer-panel .edit-address.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-delivered, .customer-panel .change-password.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-delivered, .customer-panel .order-detail.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-delivered {
  background: #6f42c1;
  color: #fff;
}
.customer-panel .my-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-cancelled, .customer-panel .my-orders.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-cancelled, .customer-panel .my-favorites.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-cancelled, .customer-panel .my-addresses.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-cancelled, .customer-panel .edit-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-cancelled, .customer-panel .edit-address.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-cancelled, .customer-panel .change-password.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-cancelled, .customer-panel .order-detail.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .status-badge.status-cancelled {
  background: #dc3545;
  color: #fff;
}
.customer-panel .my-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .promo-code, .customer-panel .my-orders.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .promo-code, .customer-panel .my-favorites.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .promo-code, .customer-panel .my-addresses.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .promo-code, .customer-panel .edit-profile.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .promo-code, .customer-panel .edit-address.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .promo-code, .customer-panel .change-password.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .promo-code, .customer-panel .order-detail.order-detail-page .order-summary-card .summary-grid .summary-item .summary-value .promo-code {
  color: #F5B301;
  font-weight: 700;
}
.customer-panel .my-profile.order-detail-page .address-cards, .customer-panel .my-orders.order-detail-page .address-cards, .customer-panel .my-favorites.order-detail-page .address-cards, .customer-panel .my-addresses.order-detail-page .address-cards, .customer-panel .edit-profile.order-detail-page .address-cards, .customer-panel .edit-address.order-detail-page .address-cards, .customer-panel .change-password.order-detail-page .address-cards, .customer-panel .order-detail.order-detail-page .address-cards {
  margin-bottom: 30px;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card, .customer-panel .my-orders.order-detail-page .address-cards .address-card, .customer-panel .my-favorites.order-detail-page .address-cards .address-card, .customer-panel .my-addresses.order-detail-page .address-cards .address-card, .customer-panel .edit-profile.order-detail-page .address-cards .address-card, .customer-panel .edit-address.order-detail-page .address-cards .address-card, .customer-panel .change-password.order-detail-page .address-cards .address-card, .customer-panel .order-detail.order-detail-page .address-cards .address-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card:hover, .customer-panel .my-orders.order-detail-page .address-cards .address-card:hover, .customer-panel .my-favorites.order-detail-page .address-cards .address-card:hover, .customer-panel .my-addresses.order-detail-page .address-cards .address-card:hover, .customer-panel .edit-profile.order-detail-page .address-cards .address-card:hover, .customer-panel .edit-address.order-detail-page .address-cards .address-card:hover, .customer-panel .change-password.order-detail-page .address-cards .address-card:hover, .customer-panel .order-detail.order-detail-page .address-cards .address-card:hover {
  border-color: #F5B301;
  -webkit-box-shadow: 0 8px 25px rgba(245, 179, 1, 0.15);
          box-shadow: 0 8px 25px rgba(245, 179, 1, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-header, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-header, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-header, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-header, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-header, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-header, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-header, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-header {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 20px;
  border-bottom: 2px solid #e9ecef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-header i, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-header i, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-header i, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-header i, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-header i, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-header i, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-header i, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-header i {
  font-size: 20px;
  color: #F5B301;
  margin-right: 15px;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-header h3, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-header h3, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-header h3, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-header h3, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-header h3, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-header h3, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-header h3, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c1810;
  margin: 0;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-content, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-content, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-content, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-content, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-content, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-content, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-content, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-content {
  padding: 20px;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-content .address-item, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-content .address-item, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-content .address-item, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-content .address-item, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-content .address-item, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-content .address-item, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-content .address-item, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-content .address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f1f3f4;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-content .address-item:last-child, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-content .address-item:last-child, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-content .address-item:last-child, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-content .address-item:last-child, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-content .address-item:last-child, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-content .address-item:last-child, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-content .address-item:last-child, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-content .address-item:last-child {
  border-bottom: none;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-content .address-item .label, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-content .address-item .label, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-content .address-item .label, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-content .address-item .label, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-content .address-item .label, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-content .address-item .label, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-content .address-item .label, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-content .address-item .label {
  font-weight: 600;
  color: #6c757d;
  font-size: 14px;
  min-width: 120px;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-content .address-item .value, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-content .address-item .value, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-content .address-item .value, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-content .address-item .value, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-content .address-item .value, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-content .address-item .value, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-content .address-item .value, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-content .address-item .value {
  color: #2c1810;
  font-weight: 500;
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-content .address-item.full-address, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-content .address-item.full-address, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-content .address-item.full-address, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-content .address-item.full-address, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-content .address-item.full-address, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-content .address-item.full-address, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-content .address-item.full-address, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-content .address-item.full-address {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-content .address-item.full-address .label, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-content .address-item.full-address .label, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-content .address-item.full-address .label, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-content .address-item.full-address .label, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-content .address-item.full-address .label, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-content .address-item.full-address .label, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-content .address-item.full-address .label, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-content .address-item.full-address .label {
  margin-bottom: 8px;
  min-width: auto;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card .card-content .address-item.full-address .value, .customer-panel .my-orders.order-detail-page .address-cards .address-card .card-content .address-item.full-address .value, .customer-panel .my-favorites.order-detail-page .address-cards .address-card .card-content .address-item.full-address .value, .customer-panel .my-addresses.order-detail-page .address-cards .address-card .card-content .address-item.full-address .value, .customer-panel .edit-profile.order-detail-page .address-cards .address-card .card-content .address-item.full-address .value, .customer-panel .edit-address.order-detail-page .address-cards .address-card .card-content .address-item.full-address .value, .customer-panel .change-password.order-detail-page .address-cards .address-card .card-content .address-item.full-address .value, .customer-panel .order-detail.order-detail-page .address-cards .address-card .card-content .address-item.full-address .value {
  text-align: left;
  line-height: 1.5;
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card.shipping-address .card-header, .customer-panel .my-orders.order-detail-page .address-cards .address-card.shipping-address .card-header, .customer-panel .my-favorites.order-detail-page .address-cards .address-card.shipping-address .card-header, .customer-panel .my-addresses.order-detail-page .address-cards .address-card.shipping-address .card-header, .customer-panel .edit-profile.order-detail-page .address-cards .address-card.shipping-address .card-header, .customer-panel .edit-address.order-detail-page .address-cards .address-card.shipping-address .card-header, .customer-panel .change-password.order-detail-page .address-cards .address-card.shipping-address .card-header, .customer-panel .order-detail.order-detail-page .address-cards .address-card.shipping-address .card-header {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.customer-panel .my-profile.order-detail-page .address-cards .address-card.billing-address .card-header, .customer-panel .my-orders.order-detail-page .address-cards .address-card.billing-address .card-header, .customer-panel .my-favorites.order-detail-page .address-cards .address-card.billing-address .card-header, .customer-panel .my-addresses.order-detail-page .address-cards .address-card.billing-address .card-header, .customer-panel .edit-profile.order-detail-page .address-cards .address-card.billing-address .card-header, .customer-panel .edit-address.order-detail-page .address-cards .address-card.billing-address .card-header, .customer-panel .change-password.order-detail-page .address-cards .address-card.billing-address .card-header, .customer-panel .order-detail.order-detail-page .address-cards .address-card.billing-address .card-header {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
}
.customer-panel .my-profile.order-detail-page .order-products-section, .customer-panel .my-orders.order-detail-page .order-products-section, .customer-panel .my-favorites.order-detail-page .order-products-section, .customer-panel .my-addresses.order-detail-page .order-products-section, .customer-panel .edit-profile.order-detail-page .order-products-section, .customer-panel .edit-address.order-detail-page .order-products-section, .customer-panel .change-password.order-detail-page .order-products-section, .customer-panel .order-detail.order-detail-page .order-products-section {
  margin-bottom: 30px;
}
.customer-panel .my-profile.order-detail-page .order-products-section .section-header, .customer-panel .my-orders.order-detail-page .order-products-section .section-header, .customer-panel .my-favorites.order-detail-page .order-products-section .section-header, .customer-panel .my-addresses.order-detail-page .order-products-section .section-header, .customer-panel .edit-profile.order-detail-page .order-products-section .section-header, .customer-panel .edit-address.order-detail-page .order-products-section .section-header, .customer-panel .change-password.order-detail-page .order-products-section .section-header, .customer-panel .order-detail.order-detail-page .order-products-section .section-header {
  margin-bottom: 20px;
}
.customer-panel .my-profile.order-detail-page .order-products-section .section-header h2, .customer-panel .my-orders.order-detail-page .order-products-section .section-header h2, .customer-panel .my-favorites.order-detail-page .order-products-section .section-header h2, .customer-panel .my-addresses.order-detail-page .order-products-section .section-header h2, .customer-panel .edit-profile.order-detail-page .order-products-section .section-header h2, .customer-panel .edit-address.order-detail-page .order-products-section .section-header h2, .customer-panel .change-password.order-detail-page .order-products-section .section-header h2, .customer-panel .order-detail.order-detail-page .order-products-section .section-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #2c1810;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customer-panel .my-profile.order-detail-page .order-products-section .section-header h2 i, .customer-panel .my-orders.order-detail-page .order-products-section .section-header h2 i, .customer-panel .my-favorites.order-detail-page .order-products-section .section-header h2 i, .customer-panel .my-addresses.order-detail-page .order-products-section .section-header h2 i, .customer-panel .edit-profile.order-detail-page .order-products-section .section-header h2 i, .customer-panel .edit-address.order-detail-page .order-products-section .section-header h2 i, .customer-panel .change-password.order-detail-page .order-products-section .section-header h2 i, .customer-panel .order-detail.order-detail-page .order-products-section .section-header h2 i {
  color: #F5B301;
  margin-right: 15px;
  font-size: 20px;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table, .customer-panel .my-orders.order-detail-page .order-products-section .products-table, .customer-panel .my-favorites.order-detail-page .order-products-section .products-table, .customer-panel .my-addresses.order-detail-page .order-products-section .products-table, .customer-panel .edit-profile.order-detail-page .order-products-section .products-table, .customer-panel .edit-address.order-detail-page .order-products-section .products-table, .customer-panel .change-password.order-detail-page .order-products-section .products-table, .customer-panel .order-detail.order-detail-page .order-products-section .products-table {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .table-header, .customer-panel .my-orders.order-detail-page .order-products-section .products-table .table-header, .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .table-header, .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .table-header, .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .table-header, .customer-panel .edit-address.order-detail-page .order-products-section .products-table .table-header, .customer-panel .change-password.order-detail-page .order-products-section .products-table .table-header, .customer-panel .order-detail.order-detail-page .order-products-section .products-table .table-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60px 1fr 100px 120px;
  grid-template-columns: 60px 1fr 100px 120px;
  background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
  color: #fff;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(1), .customer-panel .my-orders.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(1), .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(1), .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(1), .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(1), .customer-panel .edit-address.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(1), .customer-panel .change-password.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(1), .customer-panel .order-detail.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(1) {
  text-align: center;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(3), .customer-panel .my-orders.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(3), .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(3), .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(3), .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(3), .customer-panel .edit-address.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(3), .customer-panel .change-password.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(3), .customer-panel .order-detail.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(3) {
  text-align: center;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(4), .customer-panel .my-orders.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(4), .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(4), .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(4), .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(4), .customer-panel .edit-address.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(4), .customer-panel .change-password.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(4), .customer-panel .order-detail.order-detail-page .order-products-section .products-table .table-header .header-item:nth-child(4) {
  text-align: right;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .product-row, .customer-panel .my-orders.order-detail-page .order-products-section .products-table .product-row, .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .product-row, .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .product-row, .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .product-row, .customer-panel .edit-address.order-detail-page .order-products-section .products-table .product-row, .customer-panel .change-password.order-detail-page .order-products-section .products-table .product-row, .customer-panel .order-detail.order-detail-page .order-products-section .products-table .product-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60px 1fr 100px 120px;
  grid-template-columns: 60px 1fr 100px 120px;
  padding: 15px 20px;
  border-bottom: 1px solid #f1f3f4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .product-row:hover, .customer-panel .my-orders.order-detail-page .order-products-section .products-table .product-row:hover, .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .product-row:hover, .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .product-row:hover, .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .product-row:hover, .customer-panel .edit-address.order-detail-page .order-products-section .products-table .product-row:hover, .customer-panel .change-password.order-detail-page .order-products-section .products-table .product-row:hover, .customer-panel .order-detail.order-detail-page .order-products-section .products-table .product-row:hover {
  background: #f8f9fa;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .product-row:last-child, .customer-panel .my-orders.order-detail-page .order-products-section .products-table .product-row:last-child, .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .product-row:last-child, .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .product-row:last-child, .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .product-row:last-child, .customer-panel .edit-address.order-detail-page .order-products-section .products-table .product-row:last-child, .customer-panel .change-password.order-detail-page .order-products-section .products-table .product-row:last-child, .customer-panel .order-detail.order-detail-page .order-products-section .products-table .product-row:last-child {
  border-bottom: none;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .product-row .product-cell, .customer-panel .my-orders.order-detail-page .order-products-section .products-table .product-row .product-cell, .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .product-row .product-cell, .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .product-row .product-cell, .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .product-row .product-cell, .customer-panel .edit-address.order-detail-page .order-products-section .products-table .product-row .product-cell, .customer-panel .change-password.order-detail-page .order-products-section .products-table .product-row .product-cell, .customer-panel .order-detail.order-detail-page .order-products-section .products-table .product-row .product-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(1), .customer-panel .my-orders.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(1), .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(1), .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(1), .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(1), .customer-panel .edit-address.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(1), .customer-panel .change-password.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(1), .customer-panel .order-detail.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(1) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  color: #6c757d;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(3), .customer-panel .my-orders.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(3), .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(3), .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(3), .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(3), .customer-panel .edit-address.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(3), .customer-panel .change-password.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(3), .customer-panel .order-detail.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(3) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(4), .customer-panel .my-orders.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(4), .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(4), .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(4), .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(4), .customer-panel .edit-address.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(4), .customer-panel .change-password.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(4), .customer-panel .order-detail.order-detail-page .order-products-section .products-table .product-row .product-cell:nth-child(4) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: 600;
  color: #F5B301;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a, .customer-panel .my-orders.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a, .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a, .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a, .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a, .customer-panel .edit-address.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a, .customer-panel .change-password.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a, .customer-panel .order-detail.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a {
  color: #2c1810;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a:hover, .customer-panel .my-orders.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a:hover, .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a:hover, .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a:hover, .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a:hover, .customer-panel .edit-address.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a:hover, .customer-panel .change-password.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a:hover, .customer-panel .order-detail.order-detail-page .order-products-section .products-table .product-row .product-cell.product-name a:hover {
  color: #F5B301;
}
.customer-panel .my-profile.order-detail-page .order-products-section .products-table .product-row .product-cell.price, .customer-panel .my-orders.order-detail-page .order-products-section .products-table .product-row .product-cell.price, .customer-panel .my-favorites.order-detail-page .order-products-section .products-table .product-row .product-cell.price, .customer-panel .my-addresses.order-detail-page .order-products-section .products-table .product-row .product-cell.price, .customer-panel .edit-profile.order-detail-page .order-products-section .products-table .product-row .product-cell.price, .customer-panel .edit-address.order-detail-page .order-products-section .products-table .product-row .product-cell.price, .customer-panel .change-password.order-detail-page .order-products-section .products-table .product-row .product-cell.price, .customer-panel .order-detail.order-detail-page .order-products-section .products-table .product-row .product-cell.price {
  color: #F5B301;
  font-weight: 600;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .section-header, .customer-panel .my-orders.order-detail-page .order-summary-section .section-header, .customer-panel .my-favorites.order-detail-page .order-summary-section .section-header, .customer-panel .my-addresses.order-detail-page .order-summary-section .section-header, .customer-panel .edit-profile.order-detail-page .order-summary-section .section-header, .customer-panel .edit-address.order-detail-page .order-summary-section .section-header, .customer-panel .change-password.order-detail-page .order-summary-section .section-header, .customer-panel .order-detail.order-detail-page .order-summary-section .section-header {
  margin-bottom: 20px;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .section-header h2, .customer-panel .my-orders.order-detail-page .order-summary-section .section-header h2, .customer-panel .my-favorites.order-detail-page .order-summary-section .section-header h2, .customer-panel .my-addresses.order-detail-page .order-summary-section .section-header h2, .customer-panel .edit-profile.order-detail-page .order-summary-section .section-header h2, .customer-panel .edit-address.order-detail-page .order-summary-section .section-header h2, .customer-panel .change-password.order-detail-page .order-summary-section .section-header h2, .customer-panel .order-detail.order-detail-page .order-summary-section .section-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #2c1810;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .section-header h2 i, .customer-panel .my-orders.order-detail-page .order-summary-section .section-header h2 i, .customer-panel .my-favorites.order-detail-page .order-summary-section .section-header h2 i, .customer-panel .my-addresses.order-detail-page .order-summary-section .section-header h2 i, .customer-panel .edit-profile.order-detail-page .order-summary-section .section-header h2 i, .customer-panel .edit-address.order-detail-page .order-summary-section .section-header h2 i, .customer-panel .change-password.order-detail-page .order-summary-section .section-header h2 i, .customer-panel .order-detail.order-detail-page .order-summary-section .section-header h2 i {
  color: #F5B301;
  margin-right: 15px;
  font-size: 20px;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f1f3f4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row:hover, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row:hover, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row:hover, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row:hover, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row:hover, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row:hover, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row:hover, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row:hover {
  background: #f8f9fa;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row:last-child, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row:last-child, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row:last-child, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row:last-child, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row:last-child, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row:last-child, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row:last-child, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row:last-child {
  border-bottom: none;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row .summary-label, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row .summary-label, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row .summary-label, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row .summary-label, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row .summary-label, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row .summary-label, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row .summary-label, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row .summary-label {
  font-weight: 600;
  color: #6c757d;
  font-size: 16px;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row .summary-value, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row .summary-value, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row .summary-value, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row .summary-value, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row .summary-value, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row .summary-value, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row .summary-value, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row .summary-value {
  font-weight: 600;
  color: #2c1810;
  font-size: 16px;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row.discount, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row.discount, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row.discount, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row.discount, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row.discount, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row.discount, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row.discount, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row.discount {
  background: #fff3cd;
  border-color: #ffeaa7;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-label, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-label, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-label, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-label, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-label, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-label, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-label, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-label {
  color: #856404;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-value, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-value, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-value, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-value, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-value, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-value, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-value, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row.discount .summary-value {
  color: #e74c3c;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row.total, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row.total, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row.total, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row.total, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row.total, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row.total, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row.total, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row.total {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
  color: #fff;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-label, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-label, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-label, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-label, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-label, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-label, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-label, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-label {
  color: #F5B301;
  font-size: 18px;
}
.customer-panel .my-profile.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-value, .customer-panel .my-orders.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-value, .customer-panel .my-favorites.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-value, .customer-panel .my-addresses.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-value, .customer-panel .edit-profile.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-value, .customer-panel .edit-address.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-value, .customer-panel .change-password.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-value, .customer-panel .order-detail.order-detail-page .order-summary-section .summary-table .summary-row.total .summary-value {
  color: #fff;
  font-size: 20px;
}
.customer-panel .my-profile .section-head, .customer-panel .my-orders .section-head, .customer-panel .my-favorites .section-head, .customer-panel .my-addresses .section-head, .customer-panel .edit-profile .section-head, .customer-panel .edit-address .section-head, .customer-panel .change-password .section-head, .customer-panel .order-detail .section-head {
  text-align: center;
  margin-bottom: 30px;
}
.customer-panel .my-profile .section-head h1, .customer-panel .my-orders .section-head h1, .customer-panel .my-favorites .section-head h1, .customer-panel .my-addresses .section-head h1, .customer-panel .edit-profile .section-head h1, .customer-panel .edit-address .section-head h1, .customer-panel .change-password .section-head h1, .customer-panel .order-detail .section-head h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.customer-panel .my-profile .section-head h1 i, .customer-panel .my-orders .section-head h1 i, .customer-panel .my-favorites .section-head h1 i, .customer-panel .my-addresses .section-head h1 i, .customer-panel .edit-profile .section-head h1 i, .customer-panel .edit-address .section-head h1 i, .customer-panel .change-password .section-head h1 i, .customer-panel .order-detail .section-head h1 i {
  color: #F5B301;
  font-size: 1.5rem;
}
.customer-panel .my-profile .section-head .icon img, .customer-panel .my-orders .section-head .icon img, .customer-panel .my-favorites .section-head .icon img, .customer-panel .my-addresses .section-head .icon img, .customer-panel .edit-profile .section-head .icon img, .customer-panel .edit-address .section-head .icon img, .customer-panel .change-password .section-head .icon img, .customer-panel .order-detail .section-head .icon img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.customer-panel .my-profile .info-category .info-group, .customer-panel .my-orders .info-category .info-group, .customer-panel .my-favorites .info-category .info-group, .customer-panel .my-addresses .info-category .info-group, .customer-panel .edit-profile .info-category .info-group, .customer-panel .edit-address .info-category .info-group, .customer-panel .change-password .info-category .info-group, .customer-panel .order-detail .info-category .info-group {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 4px;
  border-left: 4px solid #F5B301;
}
.customer-panel .my-profile .info-category .info-group h5, .customer-panel .my-orders .info-category .info-group h5, .customer-panel .my-favorites .info-category .info-group h5, .customer-panel .my-addresses .info-category .info-group h5, .customer-panel .edit-profile .info-category .info-group h5, .customer-panel .edit-address .info-category .info-group h5, .customer-panel .change-password .info-category .info-group h5, .customer-panel .order-detail .info-category .info-group h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.customer-panel .my-profile .info-category .info-group .value, .customer-panel .my-orders .info-category .info-group .value, .customer-panel .my-favorites .info-category .info-group .value, .customer-panel .my-addresses .info-category .info-group .value, .customer-panel .edit-profile .info-category .info-group .value, .customer-panel .edit-address .info-category .info-group .value, .customer-panel .change-password .info-category .info-group .value, .customer-panel .order-detail .info-category .info-group .value {
  font-size: 1rem;
  color: #2d1b1b;
  font-weight: 500;
}
.customer-panel .my-profile .info-category .btn-one, .customer-panel .my-orders .info-category .btn-one, .customer-panel .my-favorites .info-category .btn-one, .customer-panel .my-addresses .info-category .btn-one, .customer-panel .edit-profile .info-category .btn-one, .customer-panel .edit-address .info-category .btn-one, .customer-panel .change-password .info-category .btn-one, .customer-panel .order-detail .info-category .btn-one {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #F5B301;
  color: #fff;
  border: 1px solid #F5B301;
}
.customer-panel .my-profile .info-category .btn-one i, .customer-panel .my-orders .info-category .btn-one i, .customer-panel .my-favorites .info-category .btn-one i, .customer-panel .my-addresses .info-category .btn-one i, .customer-panel .edit-profile .info-category .btn-one i, .customer-panel .edit-address .info-category .btn-one i, .customer-panel .change-password .info-category .btn-one i, .customer-panel .order-detail .info-category .btn-one i {
  font-size: 0.9rem;
}
.customer-panel .my-profile .info-category .btn-one:hover, .customer-panel .my-orders .info-category .btn-one:hover, .customer-panel .my-favorites .info-category .btn-one:hover, .customer-panel .my-addresses .info-category .btn-one:hover, .customer-panel .edit-profile .info-category .btn-one:hover, .customer-panel .edit-address .info-category .btn-one:hover, .customer-panel .change-password .info-category .btn-one:hover, .customer-panel .order-detail .info-category .btn-one:hover {
  background: #E5A301;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(245, 179, 1, 0.3);
          box-shadow: 0 4px 12px rgba(245, 179, 1, 0.3);
}
.customer-panel .my-profile .info-category .btn-one.btn-lilac, .customer-panel .my-orders .info-category .btn-one.btn-lilac, .customer-panel .my-favorites .info-category .btn-one.btn-lilac, .customer-panel .my-addresses .info-category .btn-one.btn-lilac, .customer-panel .edit-profile .info-category .btn-one.btn-lilac, .customer-panel .edit-address .info-category .btn-one.btn-lilac, .customer-panel .change-password .info-category .btn-one.btn-lilac, .customer-panel .order-detail .info-category .btn-one.btn-lilac {
  background: #F5B301;
  color: #fff;
  border-color: #F5B301;
}
.customer-panel .my-profile .info-category .btn-one.btn-lilac:hover, .customer-panel .my-orders .info-category .btn-one.btn-lilac:hover, .customer-panel .my-favorites .info-category .btn-one.btn-lilac:hover, .customer-panel .my-addresses .info-category .btn-one.btn-lilac:hover, .customer-panel .edit-profile .info-category .btn-one.btn-lilac:hover, .customer-panel .edit-address .info-category .btn-one.btn-lilac:hover, .customer-panel .change-password .info-category .btn-one.btn-lilac:hover, .customer-panel .order-detail .info-category .btn-one.btn-lilac:hover {
  background: #E5A301;
  color: #fff;
}
.customer-panel .my-profile .info-category .btn-one.btn-orange, .customer-panel .my-orders .info-category .btn-one.btn-orange, .customer-panel .my-favorites .info-category .btn-one.btn-orange, .customer-panel .my-addresses .info-category .btn-one.btn-orange, .customer-panel .edit-profile .info-category .btn-one.btn-orange, .customer-panel .edit-address .info-category .btn-one.btn-orange, .customer-panel .change-password .info-category .btn-one.btn-orange, .customer-panel .order-detail .info-category .btn-one.btn-orange {
  background: linear-gradient(135deg, #F5B301, #FFC933) !important;
  color: #fff !important;
  border-color: #F5B301 !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  -webkit-box-shadow: 0 3px 10px rgba(245, 179, 1, 0.4) !important;
          box-shadow: 0 3px 10px rgba(245, 179, 1, 0.4) !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}
.customer-panel .my-profile .info-category .btn-one.btn-orange:hover, .customer-panel .my-orders .info-category .btn-one.btn-orange:hover, .customer-panel .my-favorites .info-category .btn-one.btn-orange:hover, .customer-panel .my-addresses .info-category .btn-one.btn-orange:hover, .customer-panel .edit-profile .info-category .btn-one.btn-orange:hover, .customer-panel .edit-address .info-category .btn-one.btn-orange:hover, .customer-panel .change-password .info-category .btn-one.btn-orange:hover, .customer-panel .order-detail .info-category .btn-one.btn-orange:hover {
  background: linear-gradient(135deg, #E5A301, #E5A301) !important;
  color: #fff !important;
  -webkit-transform: translateY(-2px) !important;
          transform: translateY(-2px) !important;
  -webkit-box-shadow: 0 5px 15px rgba(245, 179, 1, 0.5) !important;
          box-shadow: 0 5px 15px rgba(245, 179, 1, 0.5) !important;
}
.customer-panel .my-profile .info-category .btn-one.btn-orange i, .customer-panel .my-orders .info-category .btn-one.btn-orange i, .customer-panel .my-favorites .info-category .btn-one.btn-orange i, .customer-panel .my-addresses .info-category .btn-one.btn-orange i, .customer-panel .edit-profile .info-category .btn-one.btn-orange i, .customer-panel .edit-address .info-category .btn-one.btn-orange i, .customer-panel .change-password .info-category .btn-one.btn-orange i, .customer-panel .order-detail .info-category .btn-one.btn-orange i {
  margin-right: 8px !important;
  font-size: 16px !important;
}
.customer-panel .my-profile .order-filters, .customer-panel .my-orders .order-filters, .customer-panel .my-favorites .order-filters, .customer-panel .my-addresses .order-filters, .customer-panel .edit-profile .order-filters, .customer-panel .edit-address .order-filters, .customer-panel .change-password .order-filters, .customer-panel .order-detail .order-filters {
  margin-bottom: 30px !important;
}
.customer-panel .my-profile .order-filters ul, .customer-panel .my-orders .order-filters ul, .customer-panel .my-favorites .order-filters ul, .customer-panel .my-addresses .order-filters ul, .customer-panel .edit-profile .order-filters ul, .customer-panel .edit-address .order-filters ul, .customer-panel .change-password .order-filters ul, .customer-panel .order-detail .order-filters ul {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.customer-panel .my-profile .order-filters ul::-webkit-scrollbar, .customer-panel .my-orders .order-filters ul::-webkit-scrollbar, .customer-panel .my-favorites .order-filters ul::-webkit-scrollbar, .customer-panel .my-addresses .order-filters ul::-webkit-scrollbar, .customer-panel .edit-profile .order-filters ul::-webkit-scrollbar, .customer-panel .edit-address .order-filters ul::-webkit-scrollbar, .customer-panel .change-password .order-filters ul::-webkit-scrollbar, .customer-panel .order-detail .order-filters ul::-webkit-scrollbar {
  display: none !important;
}
.customer-panel .my-profile .order-filters ul li, .customer-panel .my-orders .order-filters ul li, .customer-panel .my-favorites .order-filters ul li, .customer-panel .my-addresses .order-filters ul li, .customer-panel .edit-profile .order-filters ul li, .customer-panel .edit-address .order-filters ul li, .customer-panel .change-password .order-filters ul li, .customer-panel .order-detail .order-filters ul li {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
  min-width: auto !important;
}
.customer-panel .my-profile .order-filters ul li a, .customer-panel .my-orders .order-filters ul li a, .customer-panel .my-favorites .order-filters ul li a, .customer-panel .my-addresses .order-filters ul li a, .customer-panel .edit-profile .order-filters ul li a, .customer-panel .edit-address .order-filters ul li a, .customer-panel .change-password .order-filters ul li a, .customer-panel .order-detail .order-filters ul li a {
  display: inline-block !important;
  padding: 10px 16px !important;
  background: #fff !important;
  color: #2c1810 !important;
  text-decoration: none !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  border: 2px solid #e9ecef !important;
  white-space: nowrap !important;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  min-width: auto !important;
  text-align: center !important;
}
.customer-panel .my-profile .order-filters ul li a:hover, .customer-panel .my-orders .order-filters ul li a:hover, .customer-panel .my-favorites .order-filters ul li a:hover, .customer-panel .my-addresses .order-filters ul li a:hover, .customer-panel .edit-profile .order-filters ul li a:hover, .customer-panel .edit-address .order-filters ul li a:hover, .customer-panel .change-password .order-filters ul li a:hover, .customer-panel .order-detail .order-filters ul li a:hover {
  background: #f8f9fa !important;
  color: #2c1810 !important;
  text-decoration: none !important;
  border-color: #F5B301 !important;
  -webkit-transform: translateY(-2px) !important;
          transform: translateY(-2px) !important;
  -webkit-box-shadow: 0 4px 12px rgba(245, 179, 1, 0.2) !important;
          box-shadow: 0 4px 12px rgba(245, 179, 1, 0.2) !important;
}
.customer-panel .my-profile .order-filters ul li a.active-filter, .customer-panel .my-orders .order-filters ul li a.active-filter, .customer-panel .my-favorites .order-filters ul li a.active-filter, .customer-panel .my-addresses .order-filters ul li a.active-filter, .customer-panel .edit-profile .order-filters ul li a.active-filter, .customer-panel .edit-address .order-filters ul li a.active-filter, .customer-panel .change-password .order-filters ul li a.active-filter, .customer-panel .order-detail .order-filters ul li a.active-filter {
  background: linear-gradient(135deg, #F5B301, #FFC933) !important;
  color: #fff !important;
  border-color: #F5B301 !important;
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3) !important;
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.3) !important;
  -webkit-transform: translateY(-2px) !important;
          transform: translateY(-2px) !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-created, .customer-panel .my-orders .order-filters ul li a.order-status.o-created, .customer-panel .my-favorites .order-filters ul li a.order-status.o-created, .customer-panel .my-addresses .order-filters ul li a.order-status.o-created, .customer-panel .edit-profile .order-filters ul li a.order-status.o-created, .customer-panel .edit-address .order-filters ul li a.order-status.o-created, .customer-panel .change-password .order-filters ul li a.order-status.o-created, .customer-panel .order-detail .order-filters ul li a.order-status.o-created {
  border-color: #ffc107 !important;
  color: #856404 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-created:hover, .customer-panel .my-orders .order-filters ul li a.order-status.o-created:hover, .customer-panel .my-favorites .order-filters ul li a.order-status.o-created:hover, .customer-panel .my-addresses .order-filters ul li a.order-status.o-created:hover, .customer-panel .edit-profile .order-filters ul li a.order-status.o-created:hover, .customer-panel .edit-address .order-filters ul li a.order-status.o-created:hover, .customer-panel .change-password .order-filters ul li a.order-status.o-created:hover, .customer-panel .order-detail .order-filters ul li a.order-status.o-created:hover {
  background: #fff3cd !important;
  border-color: #ffc107 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-created.active-filter, .customer-panel .my-orders .order-filters ul li a.order-status.o-created.active-filter, .customer-panel .my-favorites .order-filters ul li a.order-status.o-created.active-filter, .customer-panel .my-addresses .order-filters ul li a.order-status.o-created.active-filter, .customer-panel .edit-profile .order-filters ul li a.order-status.o-created.active-filter, .customer-panel .edit-address .order-filters ul li a.order-status.o-created.active-filter, .customer-panel .change-password .order-filters ul li a.order-status.o-created.active-filter, .customer-panel .order-detail .order-filters ul li a.order-status.o-created.active-filter {
  background: linear-gradient(135deg, #ffc107, #ffca2c) !important;
  color: #2c1810 !important;
  border-color: #ffc107 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-approved, .customer-panel .my-orders .order-filters ul li a.order-status.o-approved, .customer-panel .my-favorites .order-filters ul li a.order-status.o-approved, .customer-panel .my-addresses .order-filters ul li a.order-status.o-approved, .customer-panel .edit-profile .order-filters ul li a.order-status.o-approved, .customer-panel .edit-address .order-filters ul li a.order-status.o-approved, .customer-panel .change-password .order-filters ul li a.order-status.o-approved, .customer-panel .order-detail .order-filters ul li a.order-status.o-approved {
  border-color: #17a2b8 !important;
  color: #0c5460 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-approved:hover, .customer-panel .my-orders .order-filters ul li a.order-status.o-approved:hover, .customer-panel .my-favorites .order-filters ul li a.order-status.o-approved:hover, .customer-panel .my-addresses .order-filters ul li a.order-status.o-approved:hover, .customer-panel .edit-profile .order-filters ul li a.order-status.o-approved:hover, .customer-panel .edit-address .order-filters ul li a.order-status.o-approved:hover, .customer-panel .change-password .order-filters ul li a.order-status.o-approved:hover, .customer-panel .order-detail .order-filters ul li a.order-status.o-approved:hover {
  background: #d1ecf1 !important;
  border-color: #17a2b8 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-approved.active-filter, .customer-panel .my-orders .order-filters ul li a.order-status.o-approved.active-filter, .customer-panel .my-favorites .order-filters ul li a.order-status.o-approved.active-filter, .customer-panel .my-addresses .order-filters ul li a.order-status.o-approved.active-filter, .customer-panel .edit-profile .order-filters ul li a.order-status.o-approved.active-filter, .customer-panel .edit-address .order-filters ul li a.order-status.o-approved.active-filter, .customer-panel .change-password .order-filters ul li a.order-status.o-approved.active-filter, .customer-panel .order-detail .order-filters ul li a.order-status.o-approved.active-filter {
  background: linear-gradient(135deg, #17a2b8, #20c997) !important;
  color: #fff !important;
  border-color: #17a2b8 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-shipped, .customer-panel .my-orders .order-filters ul li a.order-status.o-shipped, .customer-panel .my-favorites .order-filters ul li a.order-status.o-shipped, .customer-panel .my-addresses .order-filters ul li a.order-status.o-shipped, .customer-panel .edit-profile .order-filters ul li a.order-status.o-shipped, .customer-panel .edit-address .order-filters ul li a.order-status.o-shipped, .customer-panel .change-password .order-filters ul li a.order-status.o-shipped, .customer-panel .order-detail .order-filters ul li a.order-status.o-shipped {
  border-color: #28a745 !important;
  color: #155724 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-shipped:hover, .customer-panel .my-orders .order-filters ul li a.order-status.o-shipped:hover, .customer-panel .my-favorites .order-filters ul li a.order-status.o-shipped:hover, .customer-panel .my-addresses .order-filters ul li a.order-status.o-shipped:hover, .customer-panel .edit-profile .order-filters ul li a.order-status.o-shipped:hover, .customer-panel .edit-address .order-filters ul li a.order-status.o-shipped:hover, .customer-panel .change-password .order-filters ul li a.order-status.o-shipped:hover, .customer-panel .order-detail .order-filters ul li a.order-status.o-shipped:hover {
  background: #d4edda !important;
  border-color: #28a745 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-shipped.active-filter, .customer-panel .my-orders .order-filters ul li a.order-status.o-shipped.active-filter, .customer-panel .my-favorites .order-filters ul li a.order-status.o-shipped.active-filter, .customer-panel .my-addresses .order-filters ul li a.order-status.o-shipped.active-filter, .customer-panel .edit-profile .order-filters ul li a.order-status.o-shipped.active-filter, .customer-panel .edit-address .order-filters ul li a.order-status.o-shipped.active-filter, .customer-panel .change-password .order-filters ul li a.order-status.o-shipped.active-filter, .customer-panel .order-detail .order-filters ul li a.order-status.o-shipped.active-filter {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  color: #fff !important;
  border-color: #28a745 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-received_by_customer, .customer-panel .my-orders .order-filters ul li a.order-status.o-received_by_customer, .customer-panel .my-favorites .order-filters ul li a.order-status.o-received_by_customer, .customer-panel .my-addresses .order-filters ul li a.order-status.o-received_by_customer, .customer-panel .edit-profile .order-filters ul li a.order-status.o-received_by_customer, .customer-panel .edit-address .order-filters ul li a.order-status.o-received_by_customer, .customer-panel .change-password .order-filters ul li a.order-status.o-received_by_customer, .customer-panel .order-detail .order-filters ul li a.order-status.o-received_by_customer {
  border-color: #6f42c1 !important;
  color: #4a148c !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-received_by_customer:hover, .customer-panel .my-orders .order-filters ul li a.order-status.o-received_by_customer:hover, .customer-panel .my-favorites .order-filters ul li a.order-status.o-received_by_customer:hover, .customer-panel .my-addresses .order-filters ul li a.order-status.o-received_by_customer:hover, .customer-panel .edit-profile .order-filters ul li a.order-status.o-received_by_customer:hover, .customer-panel .edit-address .order-filters ul li a.order-status.o-received_by_customer:hover, .customer-panel .change-password .order-filters ul li a.order-status.o-received_by_customer:hover, .customer-panel .order-detail .order-filters ul li a.order-status.o-received_by_customer:hover {
  background: #e2d9f3 !important;
  border-color: #6f42c1 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-received_by_customer.active-filter, .customer-panel .my-orders .order-filters ul li a.order-status.o-received_by_customer.active-filter, .customer-panel .my-favorites .order-filters ul li a.order-status.o-received_by_customer.active-filter, .customer-panel .my-addresses .order-filters ul li a.order-status.o-received_by_customer.active-filter, .customer-panel .edit-profile .order-filters ul li a.order-status.o-received_by_customer.active-filter, .customer-panel .edit-address .order-filters ul li a.order-status.o-received_by_customer.active-filter, .customer-panel .change-password .order-filters ul li a.order-status.o-received_by_customer.active-filter, .customer-panel .order-detail .order-filters ul li a.order-status.o-received_by_customer.active-filter {
  background: linear-gradient(135deg, #6f42c1, #8e44ad) !important;
  color: #fff !important;
  border-color: #6f42c1 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-cancelled, .customer-panel .my-orders .order-filters ul li a.order-status.o-cancelled, .customer-panel .my-favorites .order-filters ul li a.order-status.o-cancelled, .customer-panel .my-addresses .order-filters ul li a.order-status.o-cancelled, .customer-panel .edit-profile .order-filters ul li a.order-status.o-cancelled, .customer-panel .edit-address .order-filters ul li a.order-status.o-cancelled, .customer-panel .change-password .order-filters ul li a.order-status.o-cancelled, .customer-panel .order-detail .order-filters ul li a.order-status.o-cancelled {
  border-color: #dc3545 !important;
  color: #721c24 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-cancelled:hover, .customer-panel .my-orders .order-filters ul li a.order-status.o-cancelled:hover, .customer-panel .my-favorites .order-filters ul li a.order-status.o-cancelled:hover, .customer-panel .my-addresses .order-filters ul li a.order-status.o-cancelled:hover, .customer-panel .edit-profile .order-filters ul li a.order-status.o-cancelled:hover, .customer-panel .edit-address .order-filters ul li a.order-status.o-cancelled:hover, .customer-panel .change-password .order-filters ul li a.order-status.o-cancelled:hover, .customer-panel .order-detail .order-filters ul li a.order-status.o-cancelled:hover {
  background: #f8d7da !important;
  border-color: #dc3545 !important;
}
.customer-panel .my-profile .order-filters ul li a.order-status.o-cancelled.active-filter, .customer-panel .my-orders .order-filters ul li a.order-status.o-cancelled.active-filter, .customer-panel .my-favorites .order-filters ul li a.order-status.o-cancelled.active-filter, .customer-panel .my-addresses .order-filters ul li a.order-status.o-cancelled.active-filter, .customer-panel .edit-profile .order-filters ul li a.order-status.o-cancelled.active-filter, .customer-panel .edit-address .order-filters ul li a.order-status.o-cancelled.active-filter, .customer-panel .change-password .order-filters ul li a.order-status.o-cancelled.active-filter, .customer-panel .order-detail .order-filters ul li a.order-status.o-cancelled.active-filter {
  background: linear-gradient(135deg, #dc3545, #e74c3c) !important;
  color: #fff !important;
  border-color: #dc3545 !important;
}
.customer-panel .my-profile .table-responsive .table, .customer-panel .my-orders .table-responsive .table, .customer-panel .my-favorites .table-responsive .table, .customer-panel .my-addresses .table-responsive .table, .customer-panel .edit-profile .table-responsive .table, .customer-panel .edit-address .table-responsive .table, .customer-panel .change-password .table-responsive .table, .customer-panel .order-detail .table-responsive .table {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.customer-panel .my-profile .table-responsive .table.table-dark, .customer-panel .my-orders .table-responsive .table.table-dark, .customer-panel .my-favorites .table-responsive .table.table-dark, .customer-panel .my-addresses .table-responsive .table.table-dark, .customer-panel .edit-profile .table-responsive .table.table-dark, .customer-panel .edit-address .table-responsive .table.table-dark, .customer-panel .change-password .table-responsive .table.table-dark, .customer-panel .order-detail .table-responsive .table.table-dark {
  background: #fff;
  color: #2d1b1b;
}
.customer-panel .my-profile .table-responsive .table.table-dark thead, .customer-panel .my-orders .table-responsive .table.table-dark thead, .customer-panel .my-favorites .table-responsive .table.table-dark thead, .customer-panel .my-addresses .table-responsive .table.table-dark thead, .customer-panel .edit-profile .table-responsive .table.table-dark thead, .customer-panel .edit-address .table-responsive .table.table-dark thead, .customer-panel .change-password .table-responsive .table.table-dark thead, .customer-panel .order-detail .table-responsive .table.table-dark thead {
  background: linear-gradient(135deg, #F5B301, #FFF4D6);
}
.customer-panel .my-profile .table-responsive .table.table-dark thead th, .customer-panel .my-orders .table-responsive .table.table-dark thead th, .customer-panel .my-favorites .table-responsive .table.table-dark thead th, .customer-panel .my-addresses .table-responsive .table.table-dark thead th, .customer-panel .edit-profile .table-responsive .table.table-dark thead th, .customer-panel .edit-address .table-responsive .table.table-dark thead th, .customer-panel .change-password .table-responsive .table.table-dark thead th, .customer-panel .order-detail .table-responsive .table.table-dark thead th {
  border: none;
  color: #2d1b1b;
  font-weight: 600;
  padding: 15px;
  font-size: 0.9rem;
}
.customer-panel .my-profile .table-responsive .table.table-dark tbody tr, .customer-panel .my-orders .table-responsive .table.table-dark tbody tr, .customer-panel .my-favorites .table-responsive .table.table-dark tbody tr, .customer-panel .my-addresses .table-responsive .table.table-dark tbody tr, .customer-panel .edit-profile .table-responsive .table.table-dark tbody tr, .customer-panel .edit-address .table-responsive .table.table-dark tbody tr, .customer-panel .change-password .table-responsive .table.table-dark tbody tr, .customer-panel .order-detail .table-responsive .table.table-dark tbody tr {
  border-bottom: 1px solid #e9ecef;
}
.customer-panel .my-profile .table-responsive .table.table-dark tbody tr:last-child, .customer-panel .my-orders .table-responsive .table.table-dark tbody tr:last-child, .customer-panel .my-favorites .table-responsive .table.table-dark tbody tr:last-child, .customer-panel .my-addresses .table-responsive .table.table-dark tbody tr:last-child, .customer-panel .edit-profile .table-responsive .table.table-dark tbody tr:last-child, .customer-panel .edit-address .table-responsive .table.table-dark tbody tr:last-child, .customer-panel .change-password .table-responsive .table.table-dark tbody tr:last-child, .customer-panel .order-detail .table-responsive .table.table-dark tbody tr:last-child {
  border-bottom: none;
}
.customer-panel .my-profile .table-responsive .table.table-dark tbody tr td, .customer-panel .my-profile .table-responsive .table.table-dark tbody tr th, .customer-panel .my-orders .table-responsive .table.table-dark tbody tr td, .customer-panel .my-orders .table-responsive .table.table-dark tbody tr th, .customer-panel .my-favorites .table-responsive .table.table-dark tbody tr td, .customer-panel .my-favorites .table-responsive .table.table-dark tbody tr th, .customer-panel .my-addresses .table-responsive .table.table-dark tbody tr td, .customer-panel .my-addresses .table-responsive .table.table-dark tbody tr th, .customer-panel .edit-profile .table-responsive .table.table-dark tbody tr td, .customer-panel .edit-profile .table-responsive .table.table-dark tbody tr th, .customer-panel .edit-address .table-responsive .table.table-dark tbody tr td, .customer-panel .edit-address .table-responsive .table.table-dark tbody tr th, .customer-panel .change-password .table-responsive .table.table-dark tbody tr td, .customer-panel .change-password .table-responsive .table.table-dark tbody tr th, .customer-panel .order-detail .table-responsive .table.table-dark tbody tr td, .customer-panel .order-detail .table-responsive .table.table-dark tbody tr th {
  border: none;
  padding: 12px 15px;
  vertical-align: middle;
  font-size: 0.85rem;
}
.customer-panel .my-profile .table-responsive .table.table-dark tbody tr th, .customer-panel .my-orders .table-responsive .table.table-dark tbody tr th, .customer-panel .my-favorites .table-responsive .table.table-dark tbody tr th, .customer-panel .my-addresses .table-responsive .table.table-dark tbody tr th, .customer-panel .edit-profile .table-responsive .table.table-dark tbody tr th, .customer-panel .edit-address .table-responsive .table.table-dark tbody tr th, .customer-panel .change-password .table-responsive .table.table-dark tbody tr th, .customer-panel .order-detail .table-responsive .table.table-dark tbody tr th {
  font-weight: 600;
  color: #2d1b1b;
  background: #f8f9fa;
}
.customer-panel .my-profile .table-responsive .table.table-dark tbody tr td, .customer-panel .my-orders .table-responsive .table.table-dark tbody tr td, .customer-panel .my-favorites .table-responsive .table.table-dark tbody tr td, .customer-panel .my-addresses .table-responsive .table.table-dark tbody tr td, .customer-panel .edit-profile .table-responsive .table.table-dark tbody tr td, .customer-panel .edit-address .table-responsive .table.table-dark tbody tr td, .customer-panel .change-password .table-responsive .table.table-dark tbody tr td, .customer-panel .order-detail .table-responsive .table.table-dark tbody tr td {
  color: #6c757d;
}
.customer-panel .my-profile .table-responsive .table.table-striped tbody tr:nth-of-type(odd), .customer-panel .my-orders .table-responsive .table.table-striped tbody tr:nth-of-type(odd), .customer-panel .my-favorites .table-responsive .table.table-striped tbody tr:nth-of-type(odd), .customer-panel .my-addresses .table-responsive .table.table-striped tbody tr:nth-of-type(odd), .customer-panel .edit-profile .table-responsive .table.table-striped tbody tr:nth-of-type(odd), .customer-panel .edit-address .table-responsive .table.table-striped tbody tr:nth-of-type(odd), .customer-panel .change-password .table-responsive .table.table-striped tbody tr:nth-of-type(odd), .customer-panel .order-detail .table-responsive .table.table-striped tbody tr:nth-of-type(odd) {
  background: rgba(245, 179, 1, 0.02);
}
.customer-panel .my-profile .form-one .form-group, .customer-panel .my-orders .form-one .form-group, .customer-panel .my-favorites .form-one .form-group, .customer-panel .my-addresses .form-one .form-group, .customer-panel .edit-profile .form-one .form-group, .customer-panel .edit-address .form-one .form-group, .customer-panel .change-password .form-one .form-group, .customer-panel .order-detail .form-one .form-group {
  margin-bottom: 20px;
}
.customer-panel .my-profile .form-one .form-group label, .customer-panel .my-orders .form-one .form-group label, .customer-panel .my-favorites .form-one .form-group label, .customer-panel .my-addresses .form-one .form-group label, .customer-panel .edit-profile .form-one .form-group label, .customer-panel .edit-address .form-one .form-group label, .customer-panel .change-password .form-one .form-group label, .customer-panel .order-detail .form-one .form-group label {
  display: block;
  font-weight: 500;
  color: #2d1b1b;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.customer-panel .my-profile .form-one .form-group .input-style, .customer-panel .my-orders .form-one .form-group .input-style, .customer-panel .my-favorites .form-one .form-group .input-style, .customer-panel .my-addresses .form-one .form-group .input-style, .customer-panel .edit-profile .form-one .form-group .input-style, .customer-panel .edit-address .form-one .form-group .input-style, .customer-panel .change-password .form-one .form-group .input-style, .customer-panel .order-detail .form-one .form-group .input-style {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.9rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #fff;
}
.customer-panel .my-profile .form-one .form-group .input-style:focus, .customer-panel .my-orders .form-one .form-group .input-style:focus, .customer-panel .my-favorites .form-one .form-group .input-style:focus, .customer-panel .my-addresses .form-one .form-group .input-style:focus, .customer-panel .edit-profile .form-one .form-group .input-style:focus, .customer-panel .edit-address .form-one .form-group .input-style:focus, .customer-panel .change-password .form-one .form-group .input-style:focus, .customer-panel .order-detail .form-one .form-group .input-style:focus {
  outline: none;
  border-color: #F5B301;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.customer-panel .my-profile .form-one .form-group .input-style::-webkit-input-placeholder, .customer-panel .my-orders .form-one .form-group .input-style::-webkit-input-placeholder, .customer-panel .my-favorites .form-one .form-group .input-style::-webkit-input-placeholder, .customer-panel .my-addresses .form-one .form-group .input-style::-webkit-input-placeholder, .customer-panel .edit-profile .form-one .form-group .input-style::-webkit-input-placeholder, .customer-panel .edit-address .form-one .form-group .input-style::-webkit-input-placeholder, .customer-panel .change-password .form-one .form-group .input-style::-webkit-input-placeholder, .customer-panel .order-detail .form-one .form-group .input-style::-webkit-input-placeholder {
  color: #6c757d;
}
.customer-panel .my-profile .form-one .form-group .input-style::-moz-placeholder, .customer-panel .my-orders .form-one .form-group .input-style::-moz-placeholder, .customer-panel .my-favorites .form-one .form-group .input-style::-moz-placeholder, .customer-panel .my-addresses .form-one .form-group .input-style::-moz-placeholder, .customer-panel .edit-profile .form-one .form-group .input-style::-moz-placeholder, .customer-panel .edit-address .form-one .form-group .input-style::-moz-placeholder, .customer-panel .change-password .form-one .form-group .input-style::-moz-placeholder, .customer-panel .order-detail .form-one .form-group .input-style::-moz-placeholder {
  color: #6c757d;
}
.customer-panel .my-profile .form-one .form-group .input-style:-ms-input-placeholder, .customer-panel .my-orders .form-one .form-group .input-style:-ms-input-placeholder, .customer-panel .my-favorites .form-one .form-group .input-style:-ms-input-placeholder, .customer-panel .my-addresses .form-one .form-group .input-style:-ms-input-placeholder, .customer-panel .edit-profile .form-one .form-group .input-style:-ms-input-placeholder, .customer-panel .edit-address .form-one .form-group .input-style:-ms-input-placeholder, .customer-panel .change-password .form-one .form-group .input-style:-ms-input-placeholder, .customer-panel .order-detail .form-one .form-group .input-style:-ms-input-placeholder {
  color: #6c757d;
}
.customer-panel .my-profile .form-one .form-group .input-style::-ms-input-placeholder, .customer-panel .my-orders .form-one .form-group .input-style::-ms-input-placeholder, .customer-panel .my-favorites .form-one .form-group .input-style::-ms-input-placeholder, .customer-panel .my-addresses .form-one .form-group .input-style::-ms-input-placeholder, .customer-panel .edit-profile .form-one .form-group .input-style::-ms-input-placeholder, .customer-panel .edit-address .form-one .form-group .input-style::-ms-input-placeholder, .customer-panel .change-password .form-one .form-group .input-style::-ms-input-placeholder, .customer-panel .order-detail .form-one .form-group .input-style::-ms-input-placeholder {
  color: #6c757d;
}
.customer-panel .my-profile .form-one .form-group .input-style::placeholder, .customer-panel .my-orders .form-one .form-group .input-style::placeholder, .customer-panel .my-favorites .form-one .form-group .input-style::placeholder, .customer-panel .my-addresses .form-one .form-group .input-style::placeholder, .customer-panel .edit-profile .form-one .form-group .input-style::placeholder, .customer-panel .edit-address .form-one .form-group .input-style::placeholder, .customer-panel .change-password .form-one .form-group .input-style::placeholder, .customer-panel .order-detail .form-one .form-group .input-style::placeholder {
  color: #6c757d;
}
.customer-panel .my-profile .form-one .form-group .text-danger, .customer-panel .my-orders .form-one .form-group .text-danger, .customer-panel .my-favorites .form-one .form-group .text-danger, .customer-panel .my-addresses .form-one .form-group .text-danger, .customer-panel .edit-profile .form-one .form-group .text-danger, .customer-panel .edit-address .form-one .form-group .text-danger, .customer-panel .change-password .form-one .form-group .text-danger, .customer-panel .order-detail .form-one .form-group .text-danger {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}
.customer-panel .my-profile .form-one .btn-group, .customer-panel .my-orders .form-one .btn-group, .customer-panel .my-favorites .form-one .btn-group, .customer-panel .my-addresses .form-one .btn-group, .customer-panel .edit-profile .form-one .btn-group, .customer-panel .edit-address .form-one .btn-group, .customer-panel .change-password .form-one .btn-group, .customer-panel .order-detail .form-one .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.customer-panel .my-profile .form-one .btn-group .btn-one, .customer-panel .my-orders .form-one .btn-group .btn-one, .customer-panel .my-favorites .form-one .btn-group .btn-one, .customer-panel .my-addresses .form-one .btn-group .btn-one, .customer-panel .edit-profile .form-one .btn-group .btn-one, .customer-panel .edit-address .form-one .btn-group .btn-one, .customer-panel .change-password .form-one .btn-group .btn-one, .customer-panel .order-detail .form-one .btn-group .btn-one {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F5B301;
  color: #fff;
  border-color: #F5B301;
}
.customer-panel .my-profile .form-one .btn-group .btn-one:hover, .customer-panel .my-orders .form-one .btn-group .btn-one:hover, .customer-panel .my-favorites .form-one .btn-group .btn-one:hover, .customer-panel .my-addresses .form-one .btn-group .btn-one:hover, .customer-panel .edit-profile .form-one .btn-group .btn-one:hover, .customer-panel .edit-address .form-one .btn-group .btn-one:hover, .customer-panel .change-password .form-one .btn-group .btn-one:hover, .customer-panel .order-detail .form-one .btn-group .btn-one:hover {
  background: #E5A301;
  color: #fff;
}
.customer-panel .my-profile .order-list .order-item, .customer-panel .my-orders .order-list .order-item, .customer-panel .my-favorites .order-list .order-item, .customer-panel .my-addresses .order-list .order-item, .customer-panel .edit-profile .order-list .order-item, .customer-panel .edit-address .order-list .order-item, .customer-panel .change-password .order-list .order-item, .customer-panel .order-detail .order-list .order-item {
  background: #f8f9fa;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.customer-panel .my-profile .order-list .order-item:hover, .customer-panel .my-orders .order-list .order-item:hover, .customer-panel .my-favorites .order-list .order-item:hover, .customer-panel .my-addresses .order-list .order-item:hover, .customer-panel .edit-profile .order-list .order-item:hover, .customer-panel .edit-address .order-list .order-item:hover, .customer-panel .change-password .order-list .order-item:hover, .customer-panel .order-detail .order-list .order-item:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.customer-panel .my-profile .order-list .order-item .order-header, .customer-panel .my-orders .order-list .order-item .order-header, .customer-panel .my-favorites .order-list .order-item .order-header, .customer-panel .my-addresses .order-list .order-item .order-header, .customer-panel .edit-profile .order-list .order-item .order-header, .customer-panel .edit-address .order-list .order-item .order-header, .customer-panel .change-password .order-list .order-item .order-header, .customer-panel .order-detail .order-list .order-item .order-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-number, .customer-panel .my-orders .order-list .order-item .order-header .order-number, .customer-panel .my-favorites .order-list .order-item .order-header .order-number, .customer-panel .my-addresses .order-list .order-item .order-header .order-number, .customer-panel .edit-profile .order-list .order-item .order-header .order-number, .customer-panel .edit-address .order-list .order-item .order-header .order-number, .customer-panel .change-password .order-list .order-item .order-header .order-number, .customer-panel .order-detail .order-list .order-item .order-header .order-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1b1b;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-status, .customer-panel .my-orders .order-list .order-item .order-header .order-status, .customer-panel .my-favorites .order-list .order-item .order-header .order-status, .customer-panel .my-addresses .order-list .order-item .order-header .order-status, .customer-panel .edit-profile .order-list .order-item .order-header .order-status, .customer-panel .edit-address .order-list .order-item .order-header .order-status, .customer-panel .change-password .order-list .order-item .order-header .order-status, .customer-panel .order-detail .order-list .order-item .order-header .order-status {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-status.pending, .customer-panel .my-orders .order-list .order-item .order-header .order-status.pending, .customer-panel .my-favorites .order-list .order-item .order-header .order-status.pending, .customer-panel .my-addresses .order-list .order-item .order-header .order-status.pending, .customer-panel .edit-profile .order-list .order-item .order-header .order-status.pending, .customer-panel .edit-address .order-list .order-item .order-header .order-status.pending, .customer-panel .change-password .order-list .order-item .order-header .order-status.pending, .customer-panel .order-detail .order-list .order-item .order-header .order-status.pending {
  background: #fff3cd;
  color: #856404;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-status.processing, .customer-panel .my-orders .order-list .order-item .order-header .order-status.processing, .customer-panel .my-favorites .order-list .order-item .order-header .order-status.processing, .customer-panel .my-addresses .order-list .order-item .order-header .order-status.processing, .customer-panel .edit-profile .order-list .order-item .order-header .order-status.processing, .customer-panel .edit-address .order-list .order-item .order-header .order-status.processing, .customer-panel .change-password .order-list .order-item .order-header .order-status.processing, .customer-panel .order-detail .order-list .order-item .order-header .order-status.processing {
  background: #cce5ff;
  color: #004085;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-status.completed, .customer-panel .my-orders .order-list .order-item .order-header .order-status.completed, .customer-panel .my-favorites .order-list .order-item .order-header .order-status.completed, .customer-panel .my-addresses .order-list .order-item .order-header .order-status.completed, .customer-panel .edit-profile .order-list .order-item .order-header .order-status.completed, .customer-panel .edit-address .order-list .order-item .order-header .order-status.completed, .customer-panel .change-password .order-list .order-item .order-header .order-status.completed, .customer-panel .order-detail .order-list .order-item .order-header .order-status.completed {
  background: #d4edda;
  color: #155724;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-status.cancelled, .customer-panel .my-orders .order-list .order-item .order-header .order-status.cancelled, .customer-panel .my-favorites .order-list .order-item .order-header .order-status.cancelled, .customer-panel .my-addresses .order-list .order-item .order-header .order-status.cancelled, .customer-panel .edit-profile .order-list .order-item .order-header .order-status.cancelled, .customer-panel .edit-address .order-list .order-item .order-header .order-status.cancelled, .customer-panel .change-password .order-list .order-item .order-header .order-status.cancelled, .customer-panel .order-detail .order-list .order-item .order-header .order-status.cancelled {
  background: #f8d7da;
  color: #721c24;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-status.o-created, .customer-panel .my-orders .order-list .order-item .order-header .order-status.o-created, .customer-panel .my-favorites .order-list .order-item .order-header .order-status.o-created, .customer-panel .my-addresses .order-list .order-item .order-header .order-status.o-created, .customer-panel .edit-profile .order-list .order-item .order-header .order-status.o-created, .customer-panel .edit-address .order-list .order-item .order-header .order-status.o-created, .customer-panel .change-password .order-list .order-item .order-header .order-status.o-created, .customer-panel .order-detail .order-list .order-item .order-header .order-status.o-created {
  background: #fff3cd;
  color: #856404;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-status.o-approved, .customer-panel .my-orders .order-list .order-item .order-header .order-status.o-approved, .customer-panel .my-favorites .order-list .order-item .order-header .order-status.o-approved, .customer-panel .my-addresses .order-list .order-item .order-header .order-status.o-approved, .customer-panel .edit-profile .order-list .order-item .order-header .order-status.o-approved, .customer-panel .edit-address .order-list .order-item .order-header .order-status.o-approved, .customer-panel .change-password .order-list .order-item .order-header .order-status.o-approved, .customer-panel .order-detail .order-list .order-item .order-header .order-status.o-approved {
  background: #cce5ff;
  color: #004085;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-status.o-shipped, .customer-panel .my-orders .order-list .order-item .order-header .order-status.o-shipped, .customer-panel .my-favorites .order-list .order-item .order-header .order-status.o-shipped, .customer-panel .my-addresses .order-list .order-item .order-header .order-status.o-shipped, .customer-panel .edit-profile .order-list .order-item .order-header .order-status.o-shipped, .customer-panel .edit-address .order-list .order-item .order-header .order-status.o-shipped, .customer-panel .change-password .order-list .order-item .order-header .order-status.o-shipped, .customer-panel .order-detail .order-list .order-item .order-header .order-status.o-shipped {
  background: #d4edda;
  color: #155724;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-status.o-received_by_customer, .customer-panel .my-orders .order-list .order-item .order-header .order-status.o-received_by_customer, .customer-panel .my-favorites .order-list .order-item .order-header .order-status.o-received_by_customer, .customer-panel .my-addresses .order-list .order-item .order-header .order-status.o-received_by_customer, .customer-panel .edit-profile .order-list .order-item .order-header .order-status.o-received_by_customer, .customer-panel .edit-address .order-list .order-item .order-header .order-status.o-received_by_customer, .customer-panel .change-password .order-list .order-item .order-header .order-status.o-received_by_customer, .customer-panel .order-detail .order-list .order-item .order-header .order-status.o-received_by_customer {
  background: #d1ecf1;
  color: #0c5460;
}
.customer-panel .my-profile .order-list .order-item .order-header .order-status.o-cancelled, .customer-panel .my-orders .order-list .order-item .order-header .order-status.o-cancelled, .customer-panel .my-favorites .order-list .order-item .order-header .order-status.o-cancelled, .customer-panel .my-addresses .order-list .order-item .order-header .order-status.o-cancelled, .customer-panel .edit-profile .order-list .order-item .order-header .order-status.o-cancelled, .customer-panel .edit-address .order-list .order-item .order-header .order-status.o-cancelled, .customer-panel .change-password .order-list .order-item .order-header .order-status.o-cancelled, .customer-panel .order-detail .order-list .order-item .order-header .order-status.o-cancelled {
  background: #f8d7da;
  color: #721c24;
}
.customer-panel .my-profile .order-list .order-item .order-details, .customer-panel .my-orders .order-list .order-item .order-details, .customer-panel .my-favorites .order-list .order-item .order-details, .customer-panel .my-addresses .order-list .order-item .order-details, .customer-panel .edit-profile .order-list .order-item .order-details, .customer-panel .edit-address .order-list .order-item .order-details, .customer-panel .change-password .order-list .order-item .order-details, .customer-panel .order-detail .order-list .order-item .order-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.customer-panel .my-profile .order-list .order-item .order-details .order-date, .customer-panel .my-profile .order-list .order-item .order-details .order-total, .customer-panel .my-orders .order-list .order-item .order-details .order-date, .customer-panel .my-orders .order-list .order-item .order-details .order-total, .customer-panel .my-favorites .order-list .order-item .order-details .order-date, .customer-panel .my-favorites .order-list .order-item .order-details .order-total, .customer-panel .my-addresses .order-list .order-item .order-details .order-date, .customer-panel .my-addresses .order-list .order-item .order-details .order-total, .customer-panel .edit-profile .order-list .order-item .order-details .order-date, .customer-panel .edit-profile .order-list .order-item .order-details .order-total, .customer-panel .edit-address .order-list .order-item .order-details .order-date, .customer-panel .edit-address .order-list .order-item .order-details .order-total, .customer-panel .change-password .order-list .order-item .order-details .order-date, .customer-panel .change-password .order-list .order-item .order-details .order-total, .customer-panel .order-detail .order-list .order-item .order-details .order-date, .customer-panel .order-detail .order-list .order-item .order-details .order-total {
  font-size: 0.9rem;
  color: #6c757d;
}
.customer-panel .my-profile .order-list .order-item .order-actions, .customer-panel .my-orders .order-list .order-item .order-actions, .customer-panel .my-favorites .order-list .order-item .order-actions, .customer-panel .my-addresses .order-list .order-item .order-actions, .customer-panel .edit-profile .order-list .order-item .order-actions, .customer-panel .edit-address .order-list .order-item .order-actions, .customer-panel .change-password .order-list .order-item .order-actions, .customer-panel .order-detail .order-list .order-item .order-actions {
  text-align: right;
}
.customer-panel .my-profile .order-list .order-item .order-actions .btn-one, .customer-panel .my-orders .order-list .order-item .order-actions .btn-one, .customer-panel .my-favorites .order-list .order-item .order-actions .btn-one, .customer-panel .my-addresses .order-list .order-item .order-actions .btn-one, .customer-panel .edit-profile .order-list .order-item .order-actions .btn-one, .customer-panel .edit-address .order-list .order-item .order-actions .btn-one, .customer-panel .change-password .order-list .order-item .order-actions .btn-one, .customer-panel .order-detail .order-list .order-item .order-actions .btn-one {
  padding: 8px 16px;
  font-size: 0.85rem;
  background: #F5B301;
  color: #fff;
  border-color: #F5B301;
}
.customer-panel .my-profile .order-list .order-item .order-actions .btn-one:hover, .customer-panel .my-orders .order-list .order-item .order-actions .btn-one:hover, .customer-panel .my-favorites .order-list .order-item .order-actions .btn-one:hover, .customer-panel .my-addresses .order-list .order-item .order-actions .btn-one:hover, .customer-panel .edit-profile .order-list .order-item .order-actions .btn-one:hover, .customer-panel .edit-address .order-list .order-item .order-actions .btn-one:hover, .customer-panel .change-password .order-list .order-item .order-actions .btn-one:hover, .customer-panel .order-detail .order-list .order-item .order-actions .btn-one:hover {
  background: #E5A301;
  color: #fff;
}
.customer-panel .my-profile .addresses-header, .customer-panel .my-orders .addresses-header, .customer-panel .my-favorites .addresses-header, .customer-panel .my-addresses .addresses-header, .customer-panel .edit-profile .addresses-header, .customer-panel .edit-address .addresses-header, .customer-panel .change-password .addresses-header, .customer-panel .order-detail .addresses-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  border-radius: 6px;
  border: 1px solid rgba(245, 179, 1, 0.1);
}
.customer-panel .my-profile .addresses-header .addresses-info .addresses-count, .customer-panel .my-orders .addresses-header .addresses-info .addresses-count, .customer-panel .my-favorites .addresses-header .addresses-info .addresses-count, .customer-panel .my-addresses .addresses-header .addresses-info .addresses-count, .customer-panel .edit-profile .addresses-header .addresses-info .addresses-count, .customer-panel .edit-address .addresses-header .addresses-info .addresses-count, .customer-panel .change-password .addresses-header .addresses-info .addresses-count, .customer-panel .order-detail .addresses-header .addresses-info .addresses-count {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1b1b;
}
.customer-panel .my-profile .addresses-header .addresses-actions .btn-add-address, .customer-panel .my-orders .addresses-header .addresses-actions .btn-add-address, .customer-panel .my-favorites .addresses-header .addresses-actions .btn-add-address, .customer-panel .my-addresses .addresses-header .addresses-actions .btn-add-address, .customer-panel .edit-profile .addresses-header .addresses-actions .btn-add-address, .customer-panel .edit-address .addresses-header .addresses-actions .btn-add-address, .customer-panel .change-password .addresses-header .addresses-actions .btn-add-address, .customer-panel .order-detail .addresses-header .addresses-actions .btn-add-address {
  background: #F5B301;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.customer-panel .my-profile .addresses-header .addresses-actions .btn-add-address:hover, .customer-panel .my-orders .addresses-header .addresses-actions .btn-add-address:hover, .customer-panel .my-favorites .addresses-header .addresses-actions .btn-add-address:hover, .customer-panel .my-addresses .addresses-header .addresses-actions .btn-add-address:hover, .customer-panel .edit-profile .addresses-header .addresses-actions .btn-add-address:hover, .customer-panel .edit-address .addresses-header .addresses-actions .btn-add-address:hover, .customer-panel .change-password .addresses-header .addresses-actions .btn-add-address:hover, .customer-panel .order-detail .addresses-header .addresses-actions .btn-add-address:hover {
  background: #E5A301;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #fff;
}
.customer-panel .my-profile .addresses-header .addresses-actions .btn-add-address i, .customer-panel .my-orders .addresses-header .addresses-actions .btn-add-address i, .customer-panel .my-favorites .addresses-header .addresses-actions .btn-add-address i, .customer-panel .my-addresses .addresses-header .addresses-actions .btn-add-address i, .customer-panel .edit-profile .addresses-header .addresses-actions .btn-add-address i, .customer-panel .edit-address .addresses-header .addresses-actions .btn-add-address i, .customer-panel .change-password .addresses-header .addresses-actions .btn-add-address i, .customer-panel .order-detail .addresses-header .addresses-actions .btn-add-address i {
  font-size: 0.8rem;
}
.customer-panel .my-profile .addresses-grid, .customer-panel .my-orders .addresses-grid, .customer-panel .my-favorites .addresses-grid, .customer-panel .my-addresses .addresses-grid, .customer-panel .edit-profile .addresses-grid, .customer-panel .edit-address .addresses-grid, .customer-panel .change-password .addresses-grid, .customer-panel .order-detail .addresses-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}
.customer-panel .my-profile .addresses-grid .address-item, .customer-panel .my-orders .addresses-grid .address-item, .customer-panel .my-favorites .addresses-grid .address-item, .customer-panel .my-addresses .addresses-grid .address-item, .customer-panel .edit-profile .addresses-grid .address-item, .customer-panel .edit-address .addresses-grid .address-item, .customer-panel .change-password .addresses-grid .address-item, .customer-panel .order-detail .addresses-grid .address-item {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 179, 1, 0.1);
}
.customer-panel .my-profile .addresses-grid .address-item:hover, .customer-panel .my-orders .addresses-grid .address-item:hover, .customer-panel .my-favorites .addresses-grid .address-item:hover, .customer-panel .my-addresses .addresses-grid .address-item:hover, .customer-panel .edit-profile .addresses-grid .address-item:hover, .customer-panel .edit-address .addresses-grid .address-item:hover, .customer-panel .change-password .addresses-grid .address-item:hover, .customer-panel .order-detail .addresses-grid .address-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.customer-panel .my-profile .addresses-grid .address-item .address-header, .customer-panel .my-orders .addresses-grid .address-item .address-header, .customer-panel .my-favorites .addresses-grid .address-item .address-header, .customer-panel .my-addresses .addresses-grid .address-item .address-header, .customer-panel .edit-profile .addresses-grid .address-item .address-header, .customer-panel .edit-address .addresses-grid .address-item .address-header, .customer-panel .change-password .addresses-grid .address-item .address-header, .customer-panel .order-detail .addresses-grid .address-item .address-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  border-bottom: 1px solid #e9ecef;
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-title h3, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-title h3, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-title h3, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-title h3, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-title h3, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-title h3, .customer-panel .change-password .addresses-grid .address-item .address-header .address-title h3, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-title h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d1b1b;
  margin: 0 0 8px 0;
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-title .address-type, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-title .address-type, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-title .address-type, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-title .address-type, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-title .address-type, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-title .address-type, .customer-panel .change-password .addresses-grid .address-item .address-header .address-title .address-type, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-title .address-type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-title .address-type.personal, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-title .address-type.personal, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-title .address-type.personal, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-title .address-type.personal, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-title .address-type.personal, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-title .address-type.personal, .customer-panel .change-password .addresses-grid .address-item .address-header .address-title .address-type.personal, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-title .address-type.personal {
  background: #d4edda;
  color: #155724;
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-title .address-type.corporate, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-title .address-type.corporate, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-title .address-type.corporate, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-title .address-type.corporate, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-title .address-type.corporate, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-title .address-type.corporate, .customer-panel .change-password .addresses-grid .address-item .address-header .address-title .address-type.corporate, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-title .address-type.corporate {
  background: #cce5ff;
  color: #004085;
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-title .address-type i, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-title .address-type i, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-title .address-type i, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-title .address-type i, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-title .address-type i, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-title .address-type i, .customer-panel .change-password .addresses-grid .address-item .address-header .address-title .address-type i, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-title .address-type i {
  font-size: 0.7rem;
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-actions, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-actions, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-actions, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-actions, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-actions, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-actions, .customer-panel .change-password .addresses-grid .address-item .address-header .address-actions, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .my-profile .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .change-password .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .change-password .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-actions .btn-delete {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9rem;
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .change-password .addresses-grid .address-item .address-header .address-actions .btn-edit, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-actions .btn-edit {
  background: #F5B301;
  color: #fff;
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-actions .btn-edit:hover, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-actions .btn-edit:hover, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-actions .btn-edit:hover, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-actions .btn-edit:hover, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-actions .btn-edit:hover, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-actions .btn-edit:hover, .customer-panel .change-password .addresses-grid .address-item .address-header .address-actions .btn-edit:hover, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-actions .btn-edit:hover {
  background: #E5A301;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .change-password .addresses-grid .address-item .address-header .address-actions .btn-delete, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-actions .btn-delete {
  background: #dc3545;
  color: #fff;
}
.customer-panel .my-profile .addresses-grid .address-item .address-header .address-actions .btn-delete:hover, .customer-panel .my-orders .addresses-grid .address-item .address-header .address-actions .btn-delete:hover, .customer-panel .my-favorites .addresses-grid .address-item .address-header .address-actions .btn-delete:hover, .customer-panel .my-addresses .addresses-grid .address-item .address-header .address-actions .btn-delete:hover, .customer-panel .edit-profile .addresses-grid .address-item .address-header .address-actions .btn-delete:hover, .customer-panel .edit-address .addresses-grid .address-item .address-header .address-actions .btn-delete:hover, .customer-panel .change-password .addresses-grid .address-item .address-header .address-actions .btn-delete:hover, .customer-panel .order-detail .addresses-grid .address-item .address-header .address-actions .btn-delete:hover {
  background: #c82333;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.customer-panel .my-profile .addresses-grid .address-item .address-content, .customer-panel .my-orders .addresses-grid .address-item .address-content, .customer-panel .my-favorites .addresses-grid .address-item .address-content, .customer-panel .my-addresses .addresses-grid .address-item .address-content, .customer-panel .edit-profile .addresses-grid .address-item .address-content, .customer-panel .edit-address .addresses-grid .address-item .address-content, .customer-panel .change-password .addresses-grid .address-item .address-content, .customer-panel .order-detail .addresses-grid .address-item .address-content {
  padding: 20px;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-name, .customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-email, .customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-phone, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-name, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-email, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-phone, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-name, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-email, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-phone, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-name, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-email, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-phone, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-name, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-email, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-phone, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-name, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-email, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-phone, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-name, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-email, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-phone, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-name, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-email, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #6c757d;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-name:last-child, .customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-email:last-child, .customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-phone:last-child, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-name:last-child, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-email:last-child, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-phone:last-child, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-name:last-child, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-email:last-child, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-phone:last-child, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-name:last-child, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-email:last-child, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-phone:last-child, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-name:last-child, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-email:last-child, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-phone:last-child, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-name:last-child, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-email:last-child, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-phone:last-child, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-name:last-child, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-email:last-child, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-phone:last-child, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-name:last-child, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-email:last-child, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-phone:last-child {
  margin-bottom: 0;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-name i, .customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-email i, .customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-phone i, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-name i, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-email i, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-phone i, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-name i, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-email i, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-phone i, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-name i, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-email i, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-phone i, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-name i, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-email i, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-phone i, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-name i, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-email i, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-phone i, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-name i, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-email i, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-phone i, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-name i, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-email i, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-phone i {
  color: #F5B301;
  width: 16px;
  text-align: center;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-name strong, .customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-email strong, .customer-panel .my-profile .addresses-grid .address-item .address-content .recipient-info .recipient-phone strong, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-name strong, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-email strong, .customer-panel .my-orders .addresses-grid .address-item .address-content .recipient-info .recipient-phone strong, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-name strong, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-email strong, .customer-panel .my-favorites .addresses-grid .address-item .address-content .recipient-info .recipient-phone strong, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-name strong, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-email strong, .customer-panel .my-addresses .addresses-grid .address-item .address-content .recipient-info .recipient-phone strong, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-name strong, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-email strong, .customer-panel .edit-profile .addresses-grid .address-item .address-content .recipient-info .recipient-phone strong, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-name strong, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-email strong, .customer-panel .edit-address .addresses-grid .address-item .address-content .recipient-info .recipient-phone strong, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-name strong, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-email strong, .customer-panel .change-password .addresses-grid .address-item .address-content .recipient-info .recipient-phone strong, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-name strong, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-email strong, .customer-panel .order-detail .addresses-grid .address-item .address-content .recipient-info .recipient-phone strong {
  color: #2d1b1b;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .address-details, .customer-panel .my-orders .addresses-grid .address-item .address-content .address-details, .customer-panel .my-favorites .addresses-grid .address-item .address-content .address-details, .customer-panel .my-addresses .addresses-grid .address-item .address-content .address-details, .customer-panel .edit-profile .addresses-grid .address-item .address-content .address-details, .customer-panel .edit-address .addresses-grid .address-item .address-content .address-details, .customer-panel .change-password .addresses-grid .address-item .address-content .address-details, .customer-panel .order-detail .addresses-grid .address-item .address-content .address-details {
  margin-bottom: 20px;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .address-details .location-info, .customer-panel .my-orders .addresses-grid .address-item .address-content .address-details .location-info, .customer-panel .my-favorites .addresses-grid .address-item .address-content .address-details .location-info, .customer-panel .my-addresses .addresses-grid .address-item .address-content .address-details .location-info, .customer-panel .edit-profile .addresses-grid .address-item .address-content .address-details .location-info, .customer-panel .edit-address .addresses-grid .address-item .address-content .address-details .location-info, .customer-panel .change-password .addresses-grid .address-item .address-content .address-details .location-info, .customer-panel .order-detail .addresses-grid .address-item .address-content .address-details .location-info {
  margin-bottom: 15px;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .address-details .location-info .city-district, .customer-panel .my-profile .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood, .customer-panel .my-orders .addresses-grid .address-item .address-content .address-details .location-info .city-district, .customer-panel .my-orders .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood, .customer-panel .my-favorites .addresses-grid .address-item .address-content .address-details .location-info .city-district, .customer-panel .my-favorites .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood, .customer-panel .my-addresses .addresses-grid .address-item .address-content .address-details .location-info .city-district, .customer-panel .my-addresses .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood, .customer-panel .edit-profile .addresses-grid .address-item .address-content .address-details .location-info .city-district, .customer-panel .edit-profile .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood, .customer-panel .edit-address .addresses-grid .address-item .address-content .address-details .location-info .city-district, .customer-panel .edit-address .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood, .customer-panel .change-password .addresses-grid .address-item .address-content .address-details .location-info .city-district, .customer-panel .change-password .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood, .customer-panel .order-detail .addresses-grid .address-item .address-content .address-details .location-info .city-district, .customer-panel .order-detail .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #6c757d;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .address-details .location-info .city-district i, .customer-panel .my-profile .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood i, .customer-panel .my-orders .addresses-grid .address-item .address-content .address-details .location-info .city-district i, .customer-panel .my-orders .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood i, .customer-panel .my-favorites .addresses-grid .address-item .address-content .address-details .location-info .city-district i, .customer-panel .my-favorites .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood i, .customer-panel .my-addresses .addresses-grid .address-item .address-content .address-details .location-info .city-district i, .customer-panel .my-addresses .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood i, .customer-panel .edit-profile .addresses-grid .address-item .address-content .address-details .location-info .city-district i, .customer-panel .edit-profile .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood i, .customer-panel .edit-address .addresses-grid .address-item .address-content .address-details .location-info .city-district i, .customer-panel .edit-address .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood i, .customer-panel .change-password .addresses-grid .address-item .address-content .address-details .location-info .city-district i, .customer-panel .change-password .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood i, .customer-panel .order-detail .addresses-grid .address-item .address-content .address-details .location-info .city-district i, .customer-panel .order-detail .addresses-grid .address-item .address-content .address-details .location-info .neighbourhood i {
  color: #F5B301;
  width: 16px;
  text-align: center;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .address-details .address-text, .customer-panel .my-orders .addresses-grid .address-item .address-content .address-details .address-text, .customer-panel .my-favorites .addresses-grid .address-item .address-content .address-details .address-text, .customer-panel .my-addresses .addresses-grid .address-item .address-content .address-details .address-text, .customer-panel .edit-profile .addresses-grid .address-item .address-content .address-details .address-text, .customer-panel .edit-address .addresses-grid .address-item .address-content .address-details .address-text, .customer-panel .change-password .addresses-grid .address-item .address-content .address-details .address-text, .customer-panel .order-detail .addresses-grid .address-item .address-content .address-details .address-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .address-details .address-text i, .customer-panel .my-orders .addresses-grid .address-item .address-content .address-details .address-text i, .customer-panel .my-favorites .addresses-grid .address-item .address-content .address-details .address-text i, .customer-panel .my-addresses .addresses-grid .address-item .address-content .address-details .address-text i, .customer-panel .edit-profile .addresses-grid .address-item .address-content .address-details .address-text i, .customer-panel .edit-address .addresses-grid .address-item .address-content .address-details .address-text i, .customer-panel .change-password .addresses-grid .address-item .address-content .address-details .address-text i, .customer-panel .order-detail .addresses-grid .address-item .address-content .address-details .address-text i {
  color: #F5B301;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .address-details .address-text p, .customer-panel .my-orders .addresses-grid .address-item .address-content .address-details .address-text p, .customer-panel .my-favorites .addresses-grid .address-item .address-content .address-details .address-text p, .customer-panel .my-addresses .addresses-grid .address-item .address-content .address-details .address-text p, .customer-panel .edit-profile .addresses-grid .address-item .address-content .address-details .address-text p, .customer-panel .edit-address .addresses-grid .address-item .address-content .address-details .address-text p, .customer-panel .change-password .addresses-grid .address-item .address-content .address-details .address-text p, .customer-panel .order-detail .addresses-grid .address-item .address-content .address-details .address-text p {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .corporate-info, .customer-panel .my-orders .addresses-grid .address-item .address-content .corporate-info, .customer-panel .my-favorites .addresses-grid .address-item .address-content .corporate-info, .customer-panel .my-addresses .addresses-grid .address-item .address-content .corporate-info, .customer-panel .edit-profile .addresses-grid .address-item .address-content .corporate-info, .customer-panel .edit-address .addresses-grid .address-item .address-content .corporate-info, .customer-panel .change-password .addresses-grid .address-item .address-content .corporate-info, .customer-panel .order-detail .addresses-grid .address-item .address-content .corporate-info {
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
  background: rgba(204, 229, 255, 0.1);
  padding: 15px;
  border-radius: 4px;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .corporate-info .tax-office, .customer-panel .my-profile .addresses-grid .address-item .address-content .corporate-info .tax-number, .customer-panel .my-orders .addresses-grid .address-item .address-content .corporate-info .tax-office, .customer-panel .my-orders .addresses-grid .address-item .address-content .corporate-info .tax-number, .customer-panel .my-favorites .addresses-grid .address-item .address-content .corporate-info .tax-office, .customer-panel .my-favorites .addresses-grid .address-item .address-content .corporate-info .tax-number, .customer-panel .my-addresses .addresses-grid .address-item .address-content .corporate-info .tax-office, .customer-panel .my-addresses .addresses-grid .address-item .address-content .corporate-info .tax-number, .customer-panel .edit-profile .addresses-grid .address-item .address-content .corporate-info .tax-office, .customer-panel .edit-profile .addresses-grid .address-item .address-content .corporate-info .tax-number, .customer-panel .edit-address .addresses-grid .address-item .address-content .corporate-info .tax-office, .customer-panel .edit-address .addresses-grid .address-item .address-content .corporate-info .tax-number, .customer-panel .change-password .addresses-grid .address-item .address-content .corporate-info .tax-office, .customer-panel .change-password .addresses-grid .address-item .address-content .corporate-info .tax-number, .customer-panel .order-detail .addresses-grid .address-item .address-content .corporate-info .tax-office, .customer-panel .order-detail .addresses-grid .address-item .address-content .corporate-info .tax-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #004085;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .corporate-info .tax-office:last-child, .customer-panel .my-profile .addresses-grid .address-item .address-content .corporate-info .tax-number:last-child, .customer-panel .my-orders .addresses-grid .address-item .address-content .corporate-info .tax-office:last-child, .customer-panel .my-orders .addresses-grid .address-item .address-content .corporate-info .tax-number:last-child, .customer-panel .my-favorites .addresses-grid .address-item .address-content .corporate-info .tax-office:last-child, .customer-panel .my-favorites .addresses-grid .address-item .address-content .corporate-info .tax-number:last-child, .customer-panel .my-addresses .addresses-grid .address-item .address-content .corporate-info .tax-office:last-child, .customer-panel .my-addresses .addresses-grid .address-item .address-content .corporate-info .tax-number:last-child, .customer-panel .edit-profile .addresses-grid .address-item .address-content .corporate-info .tax-office:last-child, .customer-panel .edit-profile .addresses-grid .address-item .address-content .corporate-info .tax-number:last-child, .customer-panel .edit-address .addresses-grid .address-item .address-content .corporate-info .tax-office:last-child, .customer-panel .edit-address .addresses-grid .address-item .address-content .corporate-info .tax-number:last-child, .customer-panel .change-password .addresses-grid .address-item .address-content .corporate-info .tax-office:last-child, .customer-panel .change-password .addresses-grid .address-item .address-content .corporate-info .tax-number:last-child, .customer-panel .order-detail .addresses-grid .address-item .address-content .corporate-info .tax-office:last-child, .customer-panel .order-detail .addresses-grid .address-item .address-content .corporate-info .tax-number:last-child {
  margin-bottom: 0;
}
.customer-panel .my-profile .addresses-grid .address-item .address-content .corporate-info .tax-office i, .customer-panel .my-profile .addresses-grid .address-item .address-content .corporate-info .tax-number i, .customer-panel .my-orders .addresses-grid .address-item .address-content .corporate-info .tax-office i, .customer-panel .my-orders .addresses-grid .address-item .address-content .corporate-info .tax-number i, .customer-panel .my-favorites .addresses-grid .address-item .address-content .corporate-info .tax-office i, .customer-panel .my-favorites .addresses-grid .address-item .address-content .corporate-info .tax-number i, .customer-panel .my-addresses .addresses-grid .address-item .address-content .corporate-info .tax-office i, .customer-panel .my-addresses .addresses-grid .address-item .address-content .corporate-info .tax-number i, .customer-panel .edit-profile .addresses-grid .address-item .address-content .corporate-info .tax-office i, .customer-panel .edit-profile .addresses-grid .address-item .address-content .corporate-info .tax-number i, .customer-panel .edit-address .addresses-grid .address-item .address-content .corporate-info .tax-office i, .customer-panel .edit-address .addresses-grid .address-item .address-content .corporate-info .tax-number i, .customer-panel .change-password .addresses-grid .address-item .address-content .corporate-info .tax-office i, .customer-panel .change-password .addresses-grid .address-item .address-content .corporate-info .tax-number i, .customer-panel .order-detail .addresses-grid .address-item .address-content .corporate-info .tax-office i, .customer-panel .order-detail .addresses-grid .address-item .address-content .corporate-info .tax-number i {
  color: #004085;
  width: 16px;
  text-align: center;
}
.customer-panel .my-profile .empty-addresses, .customer-panel .my-orders .empty-addresses, .customer-panel .my-favorites .empty-addresses, .customer-panel .my-addresses .empty-addresses, .customer-panel .edit-profile .empty-addresses, .customer-panel .edit-address .empty-addresses, .customer-panel .change-password .empty-addresses, .customer-panel .order-detail .empty-addresses {
  text-align: center;
  padding: 80px 20px;
}
.customer-panel .my-profile .empty-addresses .empty-icon, .customer-panel .my-orders .empty-addresses .empty-icon, .customer-panel .my-favorites .empty-addresses .empty-icon, .customer-panel .my-addresses .empty-addresses .empty-icon, .customer-panel .edit-profile .empty-addresses .empty-icon, .customer-panel .edit-address .empty-addresses .empty-icon, .customer-panel .change-password .empty-addresses .empty-icon, .customer-panel .order-detail .empty-addresses .empty-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f8f8f0 0%, #f0f0f0 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 30px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.customer-panel .my-profile .empty-addresses .empty-icon i, .customer-panel .my-orders .empty-addresses .empty-icon i, .customer-panel .my-favorites .empty-addresses .empty-icon i, .customer-panel .my-addresses .empty-addresses .empty-icon i, .customer-panel .edit-profile .empty-addresses .empty-icon i, .customer-panel .edit-address .empty-addresses .empty-icon i, .customer-panel .change-password .empty-addresses .empty-icon i, .customer-panel .order-detail .empty-addresses .empty-icon i {
  color: #F5B301;
  font-size: 3rem;
}
.customer-panel .my-profile .empty-addresses h3, .customer-panel .my-orders .empty-addresses h3, .customer-panel .my-favorites .empty-addresses h3, .customer-panel .my-addresses .empty-addresses h3, .customer-panel .edit-profile .empty-addresses h3, .customer-panel .edit-address .empty-addresses h3, .customer-panel .change-password .empty-addresses h3, .customer-panel .order-detail .empty-addresses h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
}
.customer-panel .my-profile .empty-addresses p, .customer-panel .my-orders .empty-addresses p, .customer-panel .my-favorites .empty-addresses p, .customer-panel .my-addresses .empty-addresses p, .customer-panel .edit-profile .empty-addresses p, .customer-panel .edit-address .empty-addresses p, .customer-panel .change-password .empty-addresses p, .customer-panel .order-detail .empty-addresses p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.customer-panel .my-profile .empty-addresses .btn-add-address, .customer-panel .my-orders .empty-addresses .btn-add-address, .customer-panel .my-favorites .empty-addresses .btn-add-address, .customer-panel .my-addresses .empty-addresses .btn-add-address, .customer-panel .edit-profile .empty-addresses .btn-add-address, .customer-panel .edit-address .empty-addresses .btn-add-address, .customer-panel .change-password .empty-addresses .btn-add-address, .customer-panel .order-detail .empty-addresses .btn-add-address {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #F5B301;
  color: #fff;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.customer-panel .my-profile .empty-addresses .btn-add-address:hover, .customer-panel .my-orders .empty-addresses .btn-add-address:hover, .customer-panel .my-favorites .empty-addresses .btn-add-address:hover, .customer-panel .my-addresses .empty-addresses .btn-add-address:hover, .customer-panel .edit-profile .empty-addresses .btn-add-address:hover, .customer-panel .edit-address .empty-addresses .btn-add-address:hover, .customer-panel .change-password .empty-addresses .btn-add-address:hover, .customer-panel .order-detail .empty-addresses .btn-add-address:hover {
  background: #E5A301;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.customer-panel .my-profile .favorites-header, .customer-panel .my-orders .favorites-header, .customer-panel .my-favorites .favorites-header, .customer-panel .my-addresses .favorites-header, .customer-panel .edit-profile .favorites-header, .customer-panel .edit-address .favorites-header, .customer-panel .change-password .favorites-header, .customer-panel .order-detail .favorites-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  border-radius: 6px;
  border: 1px solid rgba(245, 179, 1, 0.1);
}
.customer-panel .my-profile .favorites-header .favorites-info .favorites-count, .customer-panel .my-orders .favorites-header .favorites-info .favorites-count, .customer-panel .my-favorites .favorites-header .favorites-info .favorites-count, .customer-panel .my-addresses .favorites-header .favorites-info .favorites-count, .customer-panel .edit-profile .favorites-header .favorites-info .favorites-count, .customer-panel .edit-address .favorites-header .favorites-info .favorites-count, .customer-panel .change-password .favorites-header .favorites-info .favorites-count, .customer-panel .order-detail .favorites-header .favorites-info .favorites-count {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1b1b;
}
.customer-panel .my-profile .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .my-orders .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .my-favorites .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .my-addresses .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .edit-profile .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .edit-address .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .change-password .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .order-detail .favorites-header .favorites-actions .btn-clear-favorites {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.customer-panel .my-profile .favorites-header .favorites-actions .btn-clear-favorites:hover, .customer-panel .my-orders .favorites-header .favorites-actions .btn-clear-favorites:hover, .customer-panel .my-favorites .favorites-header .favorites-actions .btn-clear-favorites:hover, .customer-panel .my-addresses .favorites-header .favorites-actions .btn-clear-favorites:hover, .customer-panel .edit-profile .favorites-header .favorites-actions .btn-clear-favorites:hover, .customer-panel .edit-address .favorites-header .favorites-actions .btn-clear-favorites:hover, .customer-panel .change-password .favorites-header .favorites-actions .btn-clear-favorites:hover, .customer-panel .order-detail .favorites-header .favorites-actions .btn-clear-favorites:hover {
  background: #c82333;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.customer-panel .my-profile .favorites-header .favorites-actions .btn-clear-favorites i, .customer-panel .my-orders .favorites-header .favorites-actions .btn-clear-favorites i, .customer-panel .my-favorites .favorites-header .favorites-actions .btn-clear-favorites i, .customer-panel .my-addresses .favorites-header .favorites-actions .btn-clear-favorites i, .customer-panel .edit-profile .favorites-header .favorites-actions .btn-clear-favorites i, .customer-panel .edit-address .favorites-header .favorites-actions .btn-clear-favorites i, .customer-panel .change-password .favorites-header .favorites-actions .btn-clear-favorites i, .customer-panel .order-detail .favorites-header .favorites-actions .btn-clear-favorites i {
  font-size: 0.8rem;
}
.customer-panel .my-profile .favorites-grid, .customer-panel .my-orders .favorites-grid, .customer-panel .my-favorites .favorites-grid, .customer-panel .my-addresses .favorites-grid, .customer-panel .edit-profile .favorites-grid, .customer-panel .edit-address .favorites-grid, .customer-panel .change-password .favorites-grid, .customer-panel .order-detail .favorites-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}
.customer-panel .my-profile .favorites-grid .favorite-item, .customer-panel .my-orders .favorites-grid .favorite-item, .customer-panel .my-favorites .favorites-grid .favorite-item, .customer-panel .my-addresses .favorites-grid .favorite-item, .customer-panel .edit-profile .favorites-grid .favorite-item, .customer-panel .edit-address .favorites-grid .favorite-item, .customer-panel .change-password .favorites-grid .favorite-item, .customer-panel .order-detail .favorites-grid .favorite-item {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 179, 1, 0.1);
  position: relative;
}
.customer-panel .my-profile .favorites-grid .favorite-item:hover, .customer-panel .my-orders .favorites-grid .favorite-item:hover, .customer-panel .my-favorites .favorites-grid .favorite-item:hover, .customer-panel .my-addresses .favorites-grid .favorite-item:hover, .customer-panel .edit-profile .favorites-grid .favorite-item:hover, .customer-panel .edit-address .favorites-grid .favorite-item:hover, .customer-panel .change-password .favorites-grid .favorite-item:hover, .customer-panel .order-detail .favorites-grid .favorite-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.customer-panel .my-profile .favorites-grid .favorite-item .stock-badge, .customer-panel .my-orders .favorites-grid .favorite-item .stock-badge, .customer-panel .my-favorites .favorites-grid .favorite-item .stock-badge, .customer-panel .my-addresses .favorites-grid .favorite-item .stock-badge, .customer-panel .edit-profile .favorites-grid .favorite-item .stock-badge, .customer-panel .edit-address .favorites-grid .favorite-item .stock-badge, .customer-panel .change-password .favorites-grid .favorite-item .stock-badge, .customer-panel .order-detail .favorites-grid .favorite-item .stock-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.customer-panel .my-profile .favorites-grid .favorite-item .stock-badge.out-of-stock, .customer-panel .my-orders .favorites-grid .favorite-item .stock-badge.out-of-stock, .customer-panel .my-favorites .favorites-grid .favorite-item .stock-badge.out-of-stock, .customer-panel .my-addresses .favorites-grid .favorite-item .stock-badge.out-of-stock, .customer-panel .edit-profile .favorites-grid .favorite-item .stock-badge.out-of-stock, .customer-panel .edit-address .favorites-grid .favorite-item .stock-badge.out-of-stock, .customer-panel .change-password .favorites-grid .favorite-item .stock-badge.out-of-stock, .customer-panel .order-detail .favorites-grid .favorite-item .stock-badge.out-of-stock {
  background: #dc3545;
  color: #fff;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-image, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-image, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-image, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-image, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-image, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-image, .customer-panel .change-password .favorites-grid .favorite-item .favorite-image, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-image a, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-image a, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-image a, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-image a, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-image a, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-image a, .customer-panel .change-password .favorites-grid .favorite-item .favorite-image a, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-image a {
  display: block;
  height: 100%;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-image a img, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-image a img, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-image a img, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-image a img, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-image a img, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-image a img, .customer-panel .change-password .favorites-grid .favorite-item .favorite-image a img, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-image .no-image, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-image .no-image, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-image .no-image, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-image .no-image, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-image .no-image, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-image .no-image, .customer-panel .change-password .favorites-grid .favorite-item .favorite-image .no-image, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-image .no-image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f9fa;
  color: #6c757d;
  font-size: 2rem;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-image .remove-favorite, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-image .remove-favorite, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-image .remove-favorite, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-image .remove-favorite, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-image .remove-favorite, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-image .remove-favorite, .customer-panel .change-password .favorites-grid .favorite-item .favorite-image .remove-favorite, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-image .remove-favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.9);
  color: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-image .remove-favorite:hover, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-image .remove-favorite:hover, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-image .remove-favorite:hover, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-image .remove-favorite:hover, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-image .remove-favorite:hover, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-image .remove-favorite:hover, .customer-panel .change-password .favorites-grid .favorite-item .favorite-image .remove-favorite:hover, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-image .remove-favorite:hover {
  background: #dc3545;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-image .remove-favorite i, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-image .remove-favorite i, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-image .remove-favorite i, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-image .remove-favorite i, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-image .remove-favorite i, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-image .remove-favorite i, .customer-panel .change-password .favorites-grid .favorite-item .favorite-image .remove-favorite i, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-image .remove-favorite i {
  font-size: 0.9rem;
}
.customer-panel .my-profile .favorites-grid .favorite-item:hover .favorite-image img, .customer-panel .my-orders .favorites-grid .favorite-item:hover .favorite-image img, .customer-panel .my-favorites .favorites-grid .favorite-item:hover .favorite-image img, .customer-panel .my-addresses .favorites-grid .favorite-item:hover .favorite-image img, .customer-panel .edit-profile .favorites-grid .favorite-item:hover .favorite-image img, .customer-panel .edit-address .favorites-grid .favorite-item:hover .favorite-image img, .customer-panel .change-password .favorites-grid .favorite-item:hover .favorite-image img, .customer-panel .order-detail .favorites-grid .favorite-item:hover .favorite-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content {
  padding: 20px;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-title, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-title, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-title, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-title, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-title, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-title, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-title, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-title {
  margin-bottom: 10px;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-title a, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-title a, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-title a, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-title a, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-title a, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-title a, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-title a, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-title a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d1b1b;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-title a:hover, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-title a:hover, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-title a:hover, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-title a:hover, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-title a:hover, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-title a:hover, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-title a:hover, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-title a:hover {
  color: #F5B301;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-details, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-details, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-details, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-details, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-details, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-details, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-details, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-details .product-weight, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-details .product-weight, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-details .product-weight, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-details .product-weight, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-details .product-weight, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-details .product-weight, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-details .product-weight, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-details .product-weight {
  font-size: 0.85rem;
  color: #6c757d;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-details .discount-badge, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-details .discount-badge, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-details .discount-badge, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-details .discount-badge, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-details .discount-badge, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-details .discount-badge, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-details .discount-badge, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-details .discount-badge {
  background: #dc3545;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-price, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-price, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-price, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-price, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-price, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-price, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-price, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-price {
  margin-bottom: 20px;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-price .old-price, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-price .old-price, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-price .old-price, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-price .old-price, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-price .old-price, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-price .old-price, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-price .old-price, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-price .old-price {
  font-size: 0.9rem;
  color: #6c757d;
  text-decoration: line-through;
  margin-right: 8px;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-price .new-price, .customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-price .current-price, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-price .new-price, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-price .current-price, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-price .new-price, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-price .current-price, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-price .new-price, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-price .current-price, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-price .new-price, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-price .current-price, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-price .new-price, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-price .current-price, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-price .new-price, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-price .current-price, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-price .new-price, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-price .current-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #F5B301;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-actions .btn-view, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-actions .btn-view {
  background: #f8f9fa;
  color: #6c757d;
  border: 1px solid #e9ecef;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-view:hover, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-actions .btn-view:hover, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-actions .btn-view:hover, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-actions .btn-view:hover, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-view:hover, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-actions .btn-view:hover, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-actions .btn-view:hover, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-actions .btn-view:hover {
  background: #e9ecef;
  color: #2d1b1b;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart {
  background: #F5B301;
  color: #fff;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart:hover:not(.disabled), .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart:hover:not(.disabled), .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart:hover:not(.disabled), .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart:hover:not(.disabled), .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart:hover:not(.disabled), .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart:hover:not(.disabled), .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart:hover:not(.disabled), .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart:hover:not(.disabled) {
  background: #E5A301;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.disabled, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.disabled, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.disabled, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.disabled, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.disabled, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.disabled, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.disabled, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.disabled {
  background: #6c757d;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}
.customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.processing, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.processing, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.processing, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.processing, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.processing, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.processing, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.processing, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-actions .btn-add-cart.processing {
  background: #6c757d;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.8;
}
.customer-panel .my-profile .favorites-pagination, .customer-panel .my-orders .favorites-pagination, .customer-panel .my-favorites .favorites-pagination, .customer-panel .my-addresses .favorites-pagination, .customer-panel .edit-profile .favorites-pagination, .customer-panel .edit-address .favorites-pagination, .customer-panel .change-password .favorites-pagination, .customer-panel .order-detail .favorites-pagination {
  text-align: center;
  margin-top: 40px;
}
.customer-panel .my-profile .empty-favorites, .customer-panel .my-orders .empty-favorites, .customer-panel .my-favorites .empty-favorites, .customer-panel .my-addresses .empty-favorites, .customer-panel .edit-profile .empty-favorites, .customer-panel .edit-address .empty-favorites, .customer-panel .change-password .empty-favorites, .customer-panel .order-detail .empty-favorites {
  text-align: center;
  padding: 80px 20px;
}
.customer-panel .my-profile .empty-favorites .empty-icon, .customer-panel .my-orders .empty-favorites .empty-icon, .customer-panel .my-favorites .empty-favorites .empty-icon, .customer-panel .my-addresses .empty-favorites .empty-icon, .customer-panel .edit-profile .empty-favorites .empty-icon, .customer-panel .edit-address .empty-favorites .empty-icon, .customer-panel .change-password .empty-favorites .empty-icon, .customer-panel .order-detail .empty-favorites .empty-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f8f8f0 0%, #f0f0f0 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 30px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.customer-panel .my-profile .empty-favorites .empty-icon i, .customer-panel .my-orders .empty-favorites .empty-icon i, .customer-panel .my-favorites .empty-favorites .empty-icon i, .customer-panel .my-addresses .empty-favorites .empty-icon i, .customer-panel .edit-profile .empty-favorites .empty-icon i, .customer-panel .edit-address .empty-favorites .empty-icon i, .customer-panel .change-password .empty-favorites .empty-icon i, .customer-panel .order-detail .empty-favorites .empty-icon i {
  color: #F5B301;
  font-size: 3rem;
}
.customer-panel .my-profile .empty-favorites h3, .customer-panel .my-orders .empty-favorites h3, .customer-panel .my-favorites .empty-favorites h3, .customer-panel .my-addresses .empty-favorites h3, .customer-panel .edit-profile .empty-favorites h3, .customer-panel .edit-address .empty-favorites h3, .customer-panel .change-password .empty-favorites h3, .customer-panel .order-detail .empty-favorites h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
}
.customer-panel .my-profile .empty-favorites p, .customer-panel .my-orders .empty-favorites p, .customer-panel .my-favorites .empty-favorites p, .customer-panel .my-addresses .empty-favorites p, .customer-panel .edit-profile .empty-favorites p, .customer-panel .edit-address .empty-favorites p, .customer-panel .change-password .empty-favorites p, .customer-panel .order-detail .empty-favorites p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.customer-panel .my-profile .empty-favorites .btn-browse-products, .customer-panel .my-orders .empty-favorites .btn-browse-products, .customer-panel .my-favorites .empty-favorites .btn-browse-products, .customer-panel .my-addresses .empty-favorites .btn-browse-products, .customer-panel .edit-profile .empty-favorites .btn-browse-products, .customer-panel .edit-address .empty-favorites .btn-browse-products, .customer-panel .change-password .empty-favorites .btn-browse-products, .customer-panel .order-detail .empty-favorites .btn-browse-products {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #F5B301;
  color: #fff;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.customer-panel .my-profile .empty-favorites .btn-browse-products:hover, .customer-panel .my-orders .empty-favorites .btn-browse-products:hover, .customer-panel .my-favorites .empty-favorites .btn-browse-products:hover, .customer-panel .my-addresses .empty-favorites .btn-browse-products:hover, .customer-panel .edit-profile .empty-favorites .btn-browse-products:hover, .customer-panel .edit-address .empty-favorites .btn-browse-products:hover, .customer-panel .change-password .empty-favorites .btn-browse-products:hover, .customer-panel .order-detail .empty-favorites .btn-browse-products:hover {
  background: #E5A301;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.customer-panel .my-profile .order-detail-page .order-detail-group, .customer-panel .my-orders .order-detail-page .order-detail-group, .customer-panel .my-favorites .order-detail-page .order-detail-group, .customer-panel .my-addresses .order-detail-page .order-detail-group, .customer-panel .edit-profile .order-detail-page .order-detail-group, .customer-panel .edit-address .order-detail-page .order-detail-group, .customer-panel .change-password .order-detail-page .order-detail-group, .customer-panel .order-detail .order-detail-page .order-detail-group {
  background: #f8f9fa;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}
.customer-panel .my-profile .order-detail-page .order-detail-group h2, .customer-panel .my-orders .order-detail-page .order-detail-group h2, .customer-panel .my-favorites .order-detail-page .order-detail-group h2, .customer-panel .my-addresses .order-detail-page .order-detail-group h2, .customer-panel .edit-profile .order-detail-page .order-detail-group h2, .customer-panel .edit-address .order-detail-page .order-detail-group h2, .customer-panel .change-password .order-detail-page .order-detail-group h2, .customer-panel .order-detail .order-detail-page .order-detail-group h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F5B301;
}
.customer-panel .my-profile .order-detail-page .order-detail-group .order-status, .customer-panel .my-orders .order-detail-page .order-detail-group .order-status, .customer-panel .my-favorites .order-detail-page .order-detail-group .order-status, .customer-panel .my-addresses .order-detail-page .order-detail-group .order-status, .customer-panel .edit-profile .order-detail-page .order-detail-group .order-status, .customer-panel .edit-address .order-detail-page .order-detail-group .order-status, .customer-panel .change-password .order-detail-page .order-detail-group .order-status, .customer-panel .order-detail .order-detail-page .order-detail-group .order-status {
  display: inline-block !important;
  padding: 10px 18px !important;
  border-radius: 25px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}
.customer-panel .my-profile .order-detail-page .order-detail-group .order-status.o-created, .customer-panel .my-orders .order-detail-page .order-detail-group .order-status.o-created, .customer-panel .my-favorites .order-detail-page .order-detail-group .order-status.o-created, .customer-panel .my-addresses .order-detail-page .order-detail-group .order-status.o-created, .customer-panel .edit-profile .order-detail-page .order-detail-group .order-status.o-created, .customer-panel .edit-address .order-detail-page .order-detail-group .order-status.o-created, .customer-panel .change-password .order-detail-page .order-detail-group .order-status.o-created, .customer-panel .order-detail .order-detail-page .order-detail-group .order-status.o-created {
  background: linear-gradient(135deg, #ffc107, #ffca2c) !important;
  color: #2c1810 !important;
}
.customer-panel .my-profile .order-detail-page .order-detail-group .order-status.o-approved, .customer-panel .my-orders .order-detail-page .order-detail-group .order-status.o-approved, .customer-panel .my-favorites .order-detail-page .order-detail-group .order-status.o-approved, .customer-panel .my-addresses .order-detail-page .order-detail-group .order-status.o-approved, .customer-panel .edit-profile .order-detail-page .order-detail-group .order-status.o-approved, .customer-panel .edit-address .order-detail-page .order-detail-group .order-status.o-approved, .customer-panel .change-password .order-detail-page .order-detail-group .order-status.o-approved, .customer-panel .order-detail .order-detail-page .order-detail-group .order-status.o-approved {
  background: linear-gradient(135deg, #17a2b8, #20c997) !important;
  color: #fff !important;
}
.customer-panel .my-profile .order-detail-page .order-detail-group .order-status.o-shipped, .customer-panel .my-orders .order-detail-page .order-detail-group .order-status.o-shipped, .customer-panel .my-favorites .order-detail-page .order-detail-group .order-status.o-shipped, .customer-panel .my-addresses .order-detail-page .order-detail-group .order-status.o-shipped, .customer-panel .edit-profile .order-detail-page .order-detail-group .order-status.o-shipped, .customer-panel .edit-address .order-detail-page .order-detail-group .order-status.o-shipped, .customer-panel .change-password .order-detail-page .order-detail-group .order-status.o-shipped, .customer-panel .order-detail .order-detail-page .order-detail-group .order-status.o-shipped {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  color: #fff !important;
}
.customer-panel .my-profile .order-detail-page .order-detail-group .order-status.o-received_by_customer, .customer-panel .my-orders .order-detail-page .order-detail-group .order-status.o-received_by_customer, .customer-panel .my-favorites .order-detail-page .order-detail-group .order-status.o-received_by_customer, .customer-panel .my-addresses .order-detail-page .order-detail-group .order-status.o-received_by_customer, .customer-panel .edit-profile .order-detail-page .order-detail-group .order-status.o-received_by_customer, .customer-panel .edit-address .order-detail-page .order-detail-group .order-status.o-received_by_customer, .customer-panel .change-password .order-detail-page .order-detail-group .order-status.o-received_by_customer, .customer-panel .order-detail .order-detail-page .order-detail-group .order-status.o-received_by_customer {
  background: linear-gradient(135deg, #6f42c1, #8e44ad) !important;
  color: #fff !important;
}
.customer-panel .my-profile .order-detail-page .order-detail-group .order-status.o-cancelled, .customer-panel .my-orders .order-detail-page .order-detail-group .order-status.o-cancelled, .customer-panel .my-favorites .order-detail-page .order-detail-group .order-status.o-cancelled, .customer-panel .my-addresses .order-detail-page .order-detail-group .order-status.o-cancelled, .customer-panel .edit-profile .order-detail-page .order-detail-group .order-status.o-cancelled, .customer-panel .edit-address .order-detail-page .order-detail-group .order-status.o-cancelled, .customer-panel .change-password .order-detail-page .order-detail-group .order-status.o-cancelled, .customer-panel .order-detail .order-detail-page .order-detail-group .order-status.o-cancelled {
  background: linear-gradient(135deg, #dc3545, #e74c3c) !important;
  color: #fff !important;
}
.customer-panel .my-profile .order-detail-page .order-detail-group .order-status.o-payment_completed, .customer-panel .my-orders .order-detail-page .order-detail-group .order-status.o-payment_completed, .customer-panel .my-favorites .order-detail-page .order-detail-group .order-status.o-payment_completed, .customer-panel .my-addresses .order-detail-page .order-detail-group .order-status.o-payment_completed, .customer-panel .edit-profile .order-detail-page .order-detail-group .order-status.o-payment_completed, .customer-panel .edit-address .order-detail-page .order-detail-group .order-status.o-payment_completed, .customer-panel .change-password .order-detail-page .order-detail-group .order-status.o-payment_completed, .customer-panel .order-detail .order-detail-page .order-detail-group .order-status.o-payment_completed {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  color: #fff !important;
}
.customer-panel .my-profile .no-orders-message, .customer-panel .my-orders .no-orders-message, .customer-panel .my-favorites .no-orders-message, .customer-panel .my-addresses .no-orders-message, .customer-panel .edit-profile .no-orders-message, .customer-panel .edit-address .no-orders-message, .customer-panel .change-password .no-orders-message, .customer-panel .order-detail .no-orders-message {
  text-align: center;
  padding: 60px 20px;
  color: #2d1b1b;
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .customer-panel {
    padding: 40px 0;
  }
  .customer-panel .user-head {
    padding: 20px;
    margin-bottom: 30px;
  }
  .customer-panel .user-head p {
    font-size: 1rem;
  }
  .customer-panel .user-head p:first-child {
    font-size: 1.2rem;
  }
  .customer-panel .customer-sidebar {
    margin-bottom: 30px;
    position: static;
  }
  .customer-panel .customer-sidebar .page-item {
    margin-bottom: 15px;
  }
  .customer-panel .customer-sidebar .page-item a {
    padding: 15px;
  }
  .customer-panel .customer-sidebar .page-item a .title h3 {
    font-size: 1rem;
  }
  .customer-panel .customer-sidebar .page-item a .content p {
    font-size: 0.8rem;
  }
  .customer-panel .my-profile, .customer-panel .my-orders, .customer-panel .my-favorites, .customer-panel .my-addresses, .customer-panel .edit-profile, .customer-panel .edit-address, .customer-panel .change-password, .customer-panel .order-detail {
    padding: 20px;
  }
  .customer-panel .my-profile .section-head h1, .customer-panel .my-orders .section-head h1, .customer-panel .my-favorites .section-head h1, .customer-panel .my-addresses .section-head h1, .customer-panel .edit-profile .section-head h1, .customer-panel .edit-address .section-head h1, .customer-panel .change-password .section-head h1, .customer-panel .order-detail .section-head h1 {
    font-size: 1.5rem;
  }
  .customer-panel .my-profile .section-head .icon img, .customer-panel .my-orders .section-head .icon img, .customer-panel .my-favorites .section-head .icon img, .customer-panel .my-addresses .section-head .icon img, .customer-panel .edit-profile .section-head .icon img, .customer-panel .edit-address .section-head .icon img, .customer-panel .change-password .section-head .icon img, .customer-panel .order-detail .section-head .icon img {
    width: 50px;
    height: 50px;
  }
  .customer-panel .my-profile .info-category .info-group, .customer-panel .my-orders .info-category .info-group, .customer-panel .my-favorites .info-category .info-group, .customer-panel .my-addresses .info-category .info-group, .customer-panel .edit-profile .info-category .info-group, .customer-panel .edit-address .info-category .info-group, .customer-panel .change-password .info-category .info-group, .customer-panel .order-detail .info-category .info-group {
    padding: 12px;
  }
  .customer-panel .my-profile .form-one .btn-group, .customer-panel .my-orders .form-one .btn-group, .customer-panel .my-favorites .form-one .btn-group, .customer-panel .my-addresses .form-one .btn-group, .customer-panel .edit-profile .form-one .btn-group, .customer-panel .edit-address .form-one .btn-group, .customer-panel .change-password .form-one .btn-group, .customer-panel .order-detail .form-one .btn-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .customer-panel .my-profile .order-list .order-item, .customer-panel .my-profile .order-list .address-item, .customer-panel .my-profile .order-list .favorite-item, .customer-panel .my-profile .address-list .order-item, .customer-panel .my-profile .address-list .address-item, .customer-panel .my-profile .address-list .favorite-item, .customer-panel .my-profile .favorites-list .order-item, .customer-panel .my-profile .favorites-list .address-item, .customer-panel .my-profile .favorites-list .favorite-item, .customer-panel .my-orders .order-list .order-item, .customer-panel .my-orders .order-list .address-item, .customer-panel .my-orders .order-list .favorite-item, .customer-panel .my-orders .address-list .order-item, .customer-panel .my-orders .address-list .address-item, .customer-panel .my-orders .address-list .favorite-item, .customer-panel .my-orders .favorites-list .order-item, .customer-panel .my-orders .favorites-list .address-item, .customer-panel .my-orders .favorites-list .favorite-item, .customer-panel .my-favorites .order-list .order-item, .customer-panel .my-favorites .order-list .address-item, .customer-panel .my-favorites .order-list .favorite-item, .customer-panel .my-favorites .address-list .order-item, .customer-panel .my-favorites .address-list .address-item, .customer-panel .my-favorites .address-list .favorite-item, .customer-panel .my-favorites .favorites-list .order-item, .customer-panel .my-favorites .favorites-list .address-item, .customer-panel .my-favorites .favorites-list .favorite-item, .customer-panel .my-addresses .order-list .order-item, .customer-panel .my-addresses .order-list .address-item, .customer-panel .my-addresses .order-list .favorite-item, .customer-panel .my-addresses .address-list .order-item, .customer-panel .my-addresses .address-list .address-item, .customer-panel .my-addresses .address-list .favorite-item, .customer-panel .my-addresses .favorites-list .order-item, .customer-panel .my-addresses .favorites-list .address-item, .customer-panel .my-addresses .favorites-list .favorite-item, .customer-panel .edit-profile .order-list .order-item, .customer-panel .edit-profile .order-list .address-item, .customer-panel .edit-profile .order-list .favorite-item, .customer-panel .edit-profile .address-list .order-item, .customer-panel .edit-profile .address-list .address-item, .customer-panel .edit-profile .address-list .favorite-item, .customer-panel .edit-profile .favorites-list .order-item, .customer-panel .edit-profile .favorites-list .address-item, .customer-panel .edit-profile .favorites-list .favorite-item, .customer-panel .edit-address .order-list .order-item, .customer-panel .edit-address .order-list .address-item, .customer-panel .edit-address .order-list .favorite-item, .customer-panel .edit-address .address-list .order-item, .customer-panel .edit-address .address-list .address-item, .customer-panel .edit-address .address-list .favorite-item, .customer-panel .edit-address .favorites-list .order-item, .customer-panel .edit-address .favorites-list .address-item, .customer-panel .edit-address .favorites-list .favorite-item, .customer-panel .change-password .order-list .order-item, .customer-panel .change-password .order-list .address-item, .customer-panel .change-password .order-list .favorite-item, .customer-panel .change-password .address-list .order-item, .customer-panel .change-password .address-list .address-item, .customer-panel .change-password .address-list .favorite-item, .customer-panel .change-password .favorites-list .order-item, .customer-panel .change-password .favorites-list .address-item, .customer-panel .change-password .favorites-list .favorite-item, .customer-panel .order-detail .order-list .order-item, .customer-panel .order-detail .order-list .address-item, .customer-panel .order-detail .order-list .favorite-item, .customer-panel .order-detail .address-list .order-item, .customer-panel .order-detail .address-list .address-item, .customer-panel .order-detail .address-list .favorite-item, .customer-panel .order-detail .favorites-list .order-item, .customer-panel .order-detail .favorites-list .address-item, .customer-panel .order-detail .favorites-list .favorite-item {
    padding: 15px;
  }
  .customer-panel .my-profile .favorites-header, .customer-panel .my-orders .favorites-header, .customer-panel .my-favorites .favorites-header, .customer-panel .my-addresses .favorites-header, .customer-panel .edit-profile .favorites-header, .customer-panel .edit-address .favorites-header, .customer-panel .change-password .favorites-header, .customer-panel .order-detail .favorites-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .customer-panel .my-profile .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .my-orders .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .my-favorites .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .my-addresses .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .edit-profile .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .edit-address .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .change-password .favorites-header .favorites-actions .btn-clear-favorites, .customer-panel .order-detail .favorites-header .favorites-actions .btn-clear-favorites {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .customer-panel .my-profile .favorites-grid, .customer-panel .my-orders .favorites-grid, .customer-panel .my-favorites .favorites-grid, .customer-panel .my-addresses .favorites-grid, .customer-panel .edit-profile .favorites-grid, .customer-panel .edit-address .favorites-grid, .customer-panel .change-password .favorites-grid, .customer-panel .order-detail .favorites-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .customer-panel .my-profile .favorites-grid .favorite-item .favorite-content, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content {
    padding: 15px;
  }
  .customer-panel .my-profile .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .my-orders .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .my-favorites .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .my-addresses .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .edit-profile .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .edit-address .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .change-password .favorites-grid .favorite-item .favorite-content .product-actions, .customer-panel .order-detail .favorites-grid .favorite-item .favorite-content .product-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .customer-panel .my-profile .empty-favorites, .customer-panel .my-orders .empty-favorites, .customer-panel .my-favorites .empty-favorites, .customer-panel .my-addresses .empty-favorites, .customer-panel .edit-profile .empty-favorites, .customer-panel .edit-address .empty-favorites, .customer-panel .change-password .empty-favorites, .customer-panel .order-detail .empty-favorites {
    padding: 40px 20px;
  }
  .customer-panel .my-profile .empty-favorites .empty-icon, .customer-panel .my-orders .empty-favorites .empty-icon, .customer-panel .my-favorites .empty-favorites .empty-icon, .customer-panel .my-addresses .empty-favorites .empty-icon, .customer-panel .edit-profile .empty-favorites .empty-icon, .customer-panel .edit-address .empty-favorites .empty-icon, .customer-panel .change-password .empty-favorites .empty-icon, .customer-panel .order-detail .empty-favorites .empty-icon {
    width: 80px;
    height: 80px;
  }
  .customer-panel .my-profile .empty-favorites .empty-icon i, .customer-panel .my-orders .empty-favorites .empty-icon i, .customer-panel .my-favorites .empty-favorites .empty-icon i, .customer-panel .my-addresses .empty-favorites .empty-icon i, .customer-panel .edit-profile .empty-favorites .empty-icon i, .customer-panel .edit-address .empty-favorites .empty-icon i, .customer-panel .change-password .empty-favorites .empty-icon i, .customer-panel .order-detail .empty-favorites .empty-icon i {
    font-size: 2rem;
  }
  .customer-panel .my-profile .empty-favorites h3, .customer-panel .my-orders .empty-favorites h3, .customer-panel .my-favorites .empty-favorites h3, .customer-panel .my-addresses .empty-favorites h3, .customer-panel .edit-profile .empty-favorites h3, .customer-panel .edit-address .empty-favorites h3, .customer-panel .change-password .empty-favorites h3, .customer-panel .order-detail .empty-favorites h3 {
    font-size: 1.5rem;
  }
  .customer-panel .my-profile .empty-favorites p, .customer-panel .my-orders .empty-favorites p, .customer-panel .my-favorites .empty-favorites p, .customer-panel .my-addresses .empty-favorites p, .customer-panel .edit-profile .empty-favorites p, .customer-panel .edit-address .empty-favorites p, .customer-panel .change-password .empty-favorites p, .customer-panel .order-detail .empty-favorites p {
    font-size: 0.9rem;
  }
}
.related-products .product-actions .action-btn.add-to-cart-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: linear-gradient(135deg, #F5B301, #FFF4D6);
  color: #2d1b1b;
  text-decoration: none;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.related-products .product-actions .action-btn.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #E5A301, #FFE8A3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
  text-decoration: none;
  color: #2d1b1b;
}

.shopping-pages {
  padding: 60px 0;
  background: #fff;
}
.shopping-pages .section-head {
  text-align: center;
  margin-bottom: 40px;
}
.shopping-pages .section-head h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1b1b;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}
.shopping-pages .section-head .icon img {
  width: 60px;
  height: 60px;
  opacity: 0.8;
}
.shopping-pages .order-item-list {
  background: linear-gradient(135deg, #f8f8f0 0%, #f0f0f0 100%);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.shopping-pages .order-item-list h2 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #2d1b1b;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}
.shopping-pages .order-item-list .item-list .item {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shopping-pages .order-item-list .item-list .item:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.shopping-pages .order-item-list .item-list .item .image img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #f8f8f8;
}
.shopping-pages .order-item-list .item-list .item .image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.shopping-pages .order-item-list .item-list .item .image .no-image-placeholder {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ccc;
  border: 2px dashed #e0e0e0;
}
.shopping-pages .order-item-list .item-list .item .image .no-image-placeholder i {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #ddd;
}
.shopping-pages .order-item-list .item-list .item .image .no-image-placeholder span {
  font-size: 0.8rem;
  color: #999;
  font-weight: 500;
}
.shopping-pages .order-item-list .item-list .item .name a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2d1b1b;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shopping-pages .order-item-list .item-list .item .name a:hover {
  color: #F5B301;
}
.shopping-pages .order-item-list .item-list .item .name p {
  font-size: 0.85rem;
  color: #666;
  margin-top: 6px;
  font-weight: 400;
}
.shopping-pages .order-item-list .item-list .item .total-number .complex-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f8f8f8;
  border-radius: 25px;
  padding: 5px;
  -webkit-box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}
.shopping-pages .order-item-list .item-list .item .total-number .complex-input button {
  background: linear-gradient(135deg, #F5B301, #FFF4D6);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #2d1b1b;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.shopping-pages .order-item-list .item-list .item .total-number .complex-input button:hover {
  background: linear-gradient(135deg, #E5A301, #FFE8A3);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.shopping-pages .order-item-list .item-list .item .total-number .complex-input button i {
  font-size: 0.8rem;
}
.shopping-pages .order-item-list .item-list .item .total-number .complex-input input {
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 600;
  color: #2d1b1b;
  width: 60px;
  font-size: 1rem;
}
.shopping-pages .order-item-list .item-list .item .total-number .complex-input input:focus {
  outline: none;
}
.shopping-pages .order-item-list .item-list .item .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #F5B301;
  text-align: center;
}
.shopping-pages .order-item-list .item-list .item .item-delete .remove-item {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.shopping-pages .order-item-list .item-list .item .item-delete .remove-item:hover {
  background: linear-gradient(135deg, #ff5252, #ff7676);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
          box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}
.shopping-pages .order-item-list .item-list .item .item-delete .remove-item i {
  font-size: 0.8rem;
}
.shopping-pages .order-item-list .other-operations {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.shopping-pages .order-item-list .other-operations a {
  background: linear-gradient(135deg, #F5B301, #FFF4D6);
  color: #2d1b1b;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.85rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.shopping-pages .order-item-list .other-operations a:hover {
  background: linear-gradient(135deg, #E5A301, #FFE8A3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
  text-decoration: none;
  color: #2d1b1b;
}
.shopping-pages .order-item-list .other-operations a:last-child {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: #fff;
}
.shopping-pages .order-item-list .other-operations a:last-child:hover {
  background: linear-gradient(135deg, #ff5252, #ff7676);
  color: #fff;
}
.shopping-pages .order-item-list .other-operations a i {
  font-size: 0.8rem;
}
.shopping-pages .order-summary {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 25px;
  color: #2d1b1b;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.shopping-pages .order-summary h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  color: #2d1b1b;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shopping-pages .order-summary h2 i {
  color: #F5B301;
  font-size: 1rem;
}
.shopping-pages .order-summary .content .count-item {
  background: #f8f8f8;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
}
.shopping-pages .order-summary .content .count-item span:first-child {
  font-size: 1.2rem;
  font-weight: 500;
  color: #F5B301;
  display: inline-block;
  margin-right: 5px;
}
.shopping-pages .order-summary .content .count-item span:last-child {
  font-size: 0.8rem;
  color: #666;
  display: inline-block;
  font-weight: 400;
}
.shopping-pages .order-summary .content .price-inner .part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.shopping-pages .order-summary .content .price-inner .part:last-child {
  border-bottom: none;
}
.shopping-pages .order-summary .content .price-inner .part span:first-child {
  font-size: 0.85rem;
  color: #666;
  font-weight: 400;
}
.shopping-pages .order-summary .content .price-inner .part span:first-child i {
  color: #F5B301;
  margin-right: 5px;
}
.shopping-pages .order-summary .content .price-inner .part span:last-child {
  font-weight: 500;
  color: #2d1b1b;
}
.shopping-pages .order-summary .content .total-price {
  background: linear-gradient(135deg, #f8f8f0 0%, #f0f0f0 100%);
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  text-align: center;
  border: 1px solid #e0e0e0;
}
.shopping-pages .order-summary .content .total-price h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
}
.shopping-pages .order-summary .content .total-price .amount span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F5B301;
}
.shopping-pages .order-summary .content .confirm-order .btn-one.btn-orange {
  background: linear-gradient(135deg, #F5B301, #FFF4D6) !important;
  color: #2d1b1b !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 15px 30px !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  text-decoration: none !important;
}
.shopping-pages .order-summary .content .confirm-order .btn-one.btn-orange:hover {
  background: linear-gradient(135deg, #E5A301, #FFE8A3) !important;
  -webkit-transform: translateY(-2px) !important;
          transform: translateY(-2px) !important;
  -webkit-box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4) !important;
          box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4) !important;
  text-decoration: none !important;
  color: #2d1b1b !important;
}
.shopping-pages .order-summary .content .confirm-order .btn-one.btn-orange i {
  font-size: 0.8rem !important;
}

@media (max-width: 768px) {
  .shopping-pages {
    padding: 40px 0;
  }
  .shopping-pages .section-head h1 {
    font-size: 2rem;
  }
  .shopping-pages .order-item-list {
    padding: 20px;
  }
  .shopping-pages .order-item-list h2 {
    font-size: 1.5rem;
  }
  .shopping-pages .order-item-list .item {
    padding: 20px;
  }
  .shopping-pages .order-item-list .item .name a {
    font-size: 1.1rem;
  }
  .shopping-pages .order-item-list .item .total-number .complex-input button {
    width: 30px;
    height: 30px;
  }
  .shopping-pages .order-item-list .item .total-number .complex-input input {
    width: 50px;
  }
  .shopping-pages .order-summary {
    padding: 20px;
    margin-top: 20px;
  }
  .shopping-pages .order-summary h2 {
    font-size: 1.2rem;
  }
  .shopping-pages .order-summary .content .count-item {
    padding: 10px;
  }
  .shopping-pages .order-summary .content .count-item span:first-child {
    font-size: 1.1rem;
  }
  .shopping-pages .order-summary .content .total-price {
    padding: 12px;
  }
  .shopping-pages .order-summary .content .total-price .amount span {
    font-size: 1.4rem;
  }
}
.order-confirmation .confirmation-group {
  background: linear-gradient(135deg, #f8f8f0 0%, #f0f0f0 100%);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.order-confirmation .confirmation-group h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d1b1b;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
}
.order-confirmation .confirmation-group .order-form .form-one .form-group {
  margin-bottom: 20px;
}
.order-confirmation .confirmation-group .order-form .form-one .form-group label {
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 8px;
  display: block;
}
.order-confirmation .confirmation-group .order-form .form-one .form-group .input-style {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
}
.order-confirmation .confirmation-group .order-form .form-one .form-group .input-style:focus {
  outline: none;
  border-color: #F5B301;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
}
.order-confirmation .confirmation-group .order-form .form-one .form-group .text-danger {
  color: #ff6b6b !important;
  font-size: 0.85rem;
  margin-top: 5px;
}
.order-confirmation .alert {
  border-radius: 15px;
  border: none;
  padding: 15px 20px;
  margin-bottom: 25px;
}
.order-confirmation .alert.alert-danger {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: #fff;
}
.order-confirmation .alert ul {
  margin: 0;
  padding-left: 20px;
}
.order-confirmation .alert ul li {
  margin-bottom: 5px;
}
.order-confirmation .alert ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .order-confirmation .confirmation-group {
    padding: 20px;
  }
  .order-confirmation .confirmation-group h2 {
    font-size: 1.5rem;
  }
  .order-confirmation .confirmation-group .address-selection .address-group {
    margin-bottom: 15px;
  }
  .order-confirmation .confirmation-group .address-selection .address-group label .content {
    padding: 15px;
  }
  .order-confirmation .confirmation-group .address-selection .address-group label .content strong {
    font-size: 1rem;
  }
  .order-confirmation .confirmation-group .address-selection .address-group label .content .city {
    font-size: 0.85rem;
  }
  .order-confirmation .confirmation-group .address-selection .address-group label .content .descp {
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  .order-confirmation .confirmation-group {
    padding: 15px;
  }
  .order-confirmation .confirmation-group h2 {
    font-size: 1.3rem;
  }
  .order-confirmation .confirmation-group .address-selection .address-group label .content {
    padding: 12px;
  }
  .order-confirmation .confirmation-group .address-selection .address-group label .content strong {
    font-size: 0.95rem;
  }
  .order-confirmation .confirmation-group .address-selection .address-group label .content .city {
    font-size: 0.8rem;
  }
  .order-confirmation .confirmation-group .address-selection .address-group label .content .descp {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .addresses-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .addresses-header .addresses-actions {
    width: 100%;
  }
  .addresses-header .addresses-actions .btn-add-address {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .addresses-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .addresses-grid .address-item .address-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .addresses-grid .address-item .address-header .address-actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .addresses-grid .address-item .address-content .recipient-info .recipient-name, .addresses-grid .address-item .address-content .recipient-info .recipient-email, .addresses-grid .address-item .address-content .recipient-info .recipient-phone,
  .addresses-grid .address-item .address-content .recipient-info .city-district, .addresses-grid .address-item .address-content .recipient-info .neighbourhood, .addresses-grid .address-item .address-content .address-details .recipient-name, .addresses-grid .address-item .address-content .address-details .recipient-email, .addresses-grid .address-item .address-content .address-details .recipient-phone,
  .addresses-grid .address-item .address-content .address-details .city-district, .addresses-grid .address-item .address-content .address-details .neighbourhood {
    font-size: 0.85rem;
  }
  .empty-addresses {
    padding: 40px 20px;
  }
  .empty-addresses .empty-icon {
    width: 80px;
    height: 80px;
  }
  .empty-addresses .empty-icon i {
    font-size: 2rem;
  }
  .empty-addresses h3 {
    font-size: 1.4rem;
  }
  .empty-addresses p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .addresses-grid .address-item .address-header {
    padding: 15px;
  }
  .addresses-grid .address-item .address-header .address-title h3 {
    font-size: 1.1rem;
  }
  .addresses-grid .address-item .address-content {
    padding: 15px;
  }
}
.modal {
  z-index: 999999 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.modal .modal-dialog {
  max-width: 600px;
  margin: 2rem auto;
}
.modal .modal-dialog .modal-content {
  border: none;
  border-radius: 15px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.modal .modal-dialog .modal-content .modal-header {
  background: linear-gradient(135deg, #F5B301 0%, #E5A301 100%);
  color: #fff;
  border-bottom: none;
  padding: 20px 25px;
  position: relative;
  z-index: 99999;
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}
.modal .modal-dialog .modal-content .modal-header .close {
  color: #fff;
  opacity: 0.8;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.modal .modal-dialog .modal-content .modal-header .close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.modal .modal-dialog .modal-content .modal-header .close:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 30px 25px;
  background: #fff;
  position: relative;
  z-index: 99999;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group {
  margin-bottom: 20px;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group label {
  font-weight: 600;
  color: #2d1b1b;
  margin-bottom: 8px;
  display: block;
  font-size: 0.9rem;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group .input-style {
  width: 100%;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 0.95rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
  color: #2d1b1b;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group .input-style:focus {
  outline: none;
  border-color: #F5B301;
  -webkit-box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
          box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.1);
  background: #fff;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group .input-style::-webkit-input-placeholder {
  color: #adb5bd;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group .input-style::-moz-placeholder {
  color: #adb5bd;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group .input-style:-ms-input-placeholder {
  color: #adb5bd;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group .input-style::-ms-input-placeholder {
  color: #adb5bd;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group .input-style::placeholder {
  color: #adb5bd;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group select.input-style {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group textarea.input-style {
  resize: vertical;
  min-height: 100px;
}
.modal .modal-dialog .modal-content .modal-body .form-one .form-group .text-danger {
  color: #dc3545 !important;
  font-size: 0.8rem;
  margin-top: 5px;
  font-weight: 500;
}
.modal .modal-dialog .modal-content .modal-body #success-message {
  background: #d4edda;
  color: #155724;
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  font-weight: 500;
}
.modal .modal-dialog .modal-content .modal-footer {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  position: relative;
  z-index: 99999;
}
.modal .modal-dialog .modal-content .modal-footer .btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 100px;
}
.modal .modal-dialog .modal-content .modal-footer .btn.btn-secondary {
  background: #6c757d;
  color: #fff;
}
.modal .modal-dialog .modal-content .modal-footer .btn.btn-secondary:hover {
  background: #5a6268;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.modal .modal-dialog .modal-content .modal-footer .btn.btn-success {
  background: #F5B301;
  color: #fff;
}
.modal .modal-dialog .modal-content .modal-footer .btn.btn-success:hover {
  background: #E5A301;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 999998 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.corporate-fields {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}
.corporate-fields.show {
  -webkit-animation: slideDown 0.3s ease;
          animation: slideDown 0.3s ease;
}
.corporate-fields.hide {
  -webkit-animation: slideUp 0.3s ease;
          animation: slideUp 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 200px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  from {
    opacity: 1;
    max-height: 200px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    max-height: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes slideUp {
  from {
    opacity: 1;
    max-height: 200px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    max-height: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@media (max-width: 768px) {
  .modal .modal-dialog {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
  .modal .modal-dialog .modal-content .modal-header {
    padding: 15px 20px;
  }
  .modal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 1.1rem;
  }
  .modal .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
  .modal .modal-dialog .modal-content .modal-body .form-one .form-group .input-style {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
  .modal .modal-dialog .modal-content .modal-footer {
    padding: 15px 20px;
  }
  .modal .modal-dialog .modal-content .modal-footer .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-width: 80px;
  }
}

/* WhatsApp Fixed Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  -webkit-box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
          box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  -webkit-transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  color: #fff;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
          box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
  line-height: 1;
}

/* =============================================================================
   İzmir Füme Dünyası — ana sayfa (köklü / endüstriyel füme atölyesi)
   ============================================================================= */

body.page-home {
  background-color: #0c0a09;
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(139, 40, 28, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 60% at -10% 110%, rgba(201, 162, 39, 0.08), transparent 45%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.012) 2px, rgba(255, 255, 255, 0.012) 4px);
  color: #ede6df;
}

/* Üst bar: cam, çizgisiz ayrım */
body.theme-fume .modern-header {
  background: rgba(18, 14, 12, 0.88);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
          backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: none;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
body.theme-fume .modern-header::after {
  display: none;
}
body.theme-fume .modern-header .header-top {
  border-bottom: none;
  height: auto;
  padding: 8px 0;
  background: rgba(10, 8, 7, 0.78);
  -webkit-box-shadow: inset 0 -1px 0 rgba(240, 215, 140, 0.08);
          box-shadow: inset 0 -1px 0 rgba(240, 215, 140, 0.08);
  -webkit-transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding-block 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding-block 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}
body.theme-fume .modern-header.scrolled .header-top {
  grid-template-rows: 0fr;
  padding-block: 0;
  opacity: 0;
  pointer-events: none;
  border-bottom: none;
}
body.theme-fume .modern-header.scrolled .main-menu {
  border-top: none;
}
body.theme-fume .modern-header .header-top .header-top-content .logo-section .logo {
  background: rgba(0, 0, 0, 0.42);
}
body.theme-fume .modern-header .header-top .header-top-content .logo-section .logo img {
  -webkit-filter: none;
          filter: none;
  max-height: 88px;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}
body.theme-fume .modern-header .header-top .header-top-content .search-section .search-input input {
  width: min(340px, 32vw);
  border-radius: 999px;
  border: none !important;
  background: rgba(0, 0, 0, 0.45) !important;
  padding-left: 22px;
}
body.theme-fume .modern-header .header-top .header-top-content .search-section .search-btn {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #9e2f22, #6b1c14);
  border: none;
}
body.theme-fume .modern-header .header-top .header-top-content .search-section .search-btn:hover {
  background: linear-gradient(145deg, #c0392b, #8b2a1c);
}
body.theme-fume .modern-header .header-top .header-top-content .header-actions .action-btn {
  border-radius: 999px;
  border: none !important;
  background: rgba(0, 0, 0, 0.38) !important;
  font-family: "Oswald", "Montserrat", sans-serif;
  letter-spacing: 0.08em;
}
body.theme-fume .modern-header .header-top .header-top-content .header-actions .action-btn.cart-btn .cart-count {
  border-radius: 999px;
  border: none !important;
  background: linear-gradient(135deg, #c0392b, #d4a84b);
  color: #0c0a09;
}

/* Nav şeridi: çizgisiz, arka planla ayrım */
body.theme-fume .modern-header .main-menu {
  background: rgba(8, 6, 5, 0.97);
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
body.theme-fume .modern-header .main-menu::after {
  display: none;
}
body.theme-fume .modern-header .main-menu .container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
body.theme-fume .modern-header .main-menu .container::-webkit-scrollbar {
  display: none;
}
body.theme-fume .modern-header .main-menu nav .main-nav {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px 12px;
  padding: 6px 4px 14px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  min-height: 52px;
  justify-content:center;
}
body.theme-fume .modern-header .main-menu nav .main-nav li {
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
body.theme-fume .modern-header .main-menu nav .main-nav li a {
  font-family: "Oswald", "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #ffffff !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
body.theme-fume .modern-header .main-menu nav .main-nav li a::after {
  display: none;
}
body.theme-fume .modern-header .main-menu nav .main-nav li a:hover {
  color: #ffffff !important;
  background: rgba(192, 57, 43, 0.45);
}
body.theme-fume .modern-header .main-menu nav .main-nav li .submenu {
  border-radius: 12px;
  border: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

/* Hero */
body.page-home .hero-section {
  position: relative;
  min-height: 72vh;
  height: auto;
  max-height: 920px;
  background: #080706;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
}
@media (max-width: 768px) {
  body.page-home .hero-section {
    min-height: 58vh;
    max-height: none;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
  }
}
body.page-home .hero-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.page-home .hero-angled-cut {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 7;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #0c0a09);
  opacity: 0.85;
}
body.page-home .hero-section .hero-slider {
  min-height: 72vh;
  height: 72vh;
  max-height: 920px;
}
body.page-home .hero-section .hero-slider .slick-slide {
  height: 72vh;
  min-height: 420px;
  max-height: 920px;
}
@media (max-width: 768px) {
  body.page-home .hero-section .hero-slider {
    min-height: 58vh;
    height: 58vh;
  }
  body.page-home .hero-section .hero-slider .slick-slide {
    height: 58vh;
    min-height: 360px;
  }
}
body.page-home .hero-section .hero-image.hero-image--fallback {
  background-image: linear-gradient(105deg, rgba(12, 6, 5, 0.75) 0%, rgba(12, 6, 5, 0.5) 45%, rgba(60, 22, 14, 0.3) 100%), url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1920&q=80");
}

body.page-home .hero-static-copy {
  position: relative;
  background-color: #080706;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 6vw 3.5rem;
  text-align: left;
  z-index: 1;
  display: flex;
}
@media (max-width: 992px) {
  body.page-home .hero-static-copy {
    padding: 5rem 1.25rem 5.5rem;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body.page-home .hero-static-copy__inner {
  position: relative;
  max-width: 38rem;
  border: none;
  padding-left: 0.25rem;
  margin-left: 0;
}
@media (max-width: 992px) {
  body.page-home .hero-static-copy__inner {
    border: none;
    padding-left: 0;
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
body.page-home .hero-index {
  position: absolute;
  left: -2.5rem;
  top: -0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.02em;
  pointer-events: none;
}
@media (max-width: 992px) {
  body.page-home .hero-index {
    left: 50%;
    -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
    top: -3rem;
  }
}
body.page-home .hero-static-copy .hero-eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.65rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #f0d78c;
  margin: 0 0 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}
body.page-home .hero-eyebrow__line {
  display: none;
}
body.page-home .hero-static-copy .hero-heading {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(2.4rem, 6.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 0.75rem;
  max-width: none;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 0, 0, 0.35);
}
body.page-home .hero-static-copy .hero-heading em {
  font-style: italic;
  color: #ffe08a;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
body.page-home .hero-static-copy .hero-brand {
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff5e6;
  margin: 0 0 1.75rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}
body.page-home .hero-cta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 992px) {
  body.page-home .hero-cta-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
body.page-home .hero-static-copy .hero-cta {
  margin-top: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 1rem 1.85rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #c0392b, #7b241c);
  border: none;
  color: #fff !important;
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
body.page-home .hero-static-copy .hero-cta--ghost {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #ffffff !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
body.page-home .hero-static-copy .hero-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}

body.page-home .hero-section .slick-dots {
  left: 6vw;
  bottom: 32px;
}
@media (max-width: 768px) {
  body.page-home .hero-section .slick-dots {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 24px;
  }
}
body.page-home .hero-section .slick-dots li.slick-active button {
  background: linear-gradient(135deg, #c0392b, #d4a84b);
  border-color: #f5ebe0;
}

/* Mobil arama */
body.page-home .hero-mobile-search .hero-mobile-search-inner {
  border-radius: 999px;
  background: rgba(22, 18, 16, 0.95);
  border: none;
  -webkit-box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
          box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* Editöryal bölüm başlıkları */
body.page-home .section-header--editorial {
  text-align: left;
  margin-left: 0;
  margin-bottom: 2.5rem;
  max-width: 40rem;
}
body.page-home .section-header--editorial .section-kicker {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #f0d78c;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
body.page-home .section-header--editorial .section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}
body.page-home .section-header--editorial .section-title::after {
  display: none;
}
body.page-home .section-header--editorial .section-title::before {
  display: none;
}
body.page-home .section-header--editorial .section-subtitle {
  text-align: left;
  color: #e3d8ce;
  font-weight: 500;
  margin-top: 0.75rem;
}

body.page-home .featured-products .product-tabs .tab-navigation {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  margin-bottom: 36px;
}
body.page-home .featured-products .product-tabs .tab-navigation .tab-btn {
  font-family: "Oswald", sans-serif;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #e8dfd4;
}
body.page-home .featured-products .product-tabs .tab-navigation .tab-btn::before {
  display: none !important;
}
body.page-home .featured-products .product-tabs .tab-navigation .tab-btn:hover,
body.page-home .featured-products .product-tabs .tab-navigation .tab-btn.active {
  background: rgba(192, 57, 43, 0.55);
  color: #ffffff;
  border: none !important;
  -webkit-transform: none !important;
          transform: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
body.page-home .featured-products .product-tabs .tab-navigation .tab-btn.active::after {
  display: none !important;
  content: none !important;
  height: 0 !important;
}
body.page-home .featured-products .products-grid {
  gap: 22px 20px;
}
body.page-home .featured-products .products-grid .product-card {
  border-radius: 14px;
  border: none;
  background: linear-gradient(165deg, #2a231f 0%, #1a1512 100%);
  overflow: hidden;
  -webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
          box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
body.page-home .featured-products .products-grid .product-card:nth-child(3n + 1) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
body.page-home .featured-products .products-grid .product-card:nth-child(3n + 3) {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
@media (max-width: 768px) {
  body.page-home .featured-products .products-grid .product-card:nth-child(n) {
    -webkit-transform: none;
            transform: none;
  }
}
body.page-home .featured-products .products-grid .product-card .product-image {
  background: radial-gradient(ellipse at center, rgba(60, 40, 32, 0.35), transparent 70%);
}

/* Kategori vitrin — birinci kart geniş */
body.page-home .category-showcase .showcase-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
body.page-home .category-showcase .showcase-item--featured {
  grid-column: 1 / -1;
  height: 340px;
}
@media (max-width: 768px) {
  body.page-home .category-showcase .showcase-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .category-showcase .showcase-item--featured {
    height: 260px;
  }
}
body.page-home .category-showcase .showcase-grid .showcase-item {
  border-radius: 16px;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
body.page-home .category-showcase .section-header {
  text-align: left;
  margin-bottom: 2rem;
}
body.page-home .category-showcase .section-header .section-title {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  color: #ffffff;
}
body.page-home .category-showcase .section-header .section-subtitle {
  color: #e3d8ce;
}
body.page-home .category-showcase .section-header .section-title::after {
  display: none;
}
body.page-home .category-showcase .showcase-grid .showcase-item .showcase-overlay h3 {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}
body.page-home .category-showcase .showcase-grid .showcase-item .showcase-overlay .explore-btn {
  border: none;
}

/* Hızlı kategoriler */
body.page-home .quick-categories .quick-categories-grid .quick-category-item {
  border-radius: 16px;
  border: none !important;
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
body.page-home .quick-categories .quick-categories-grid .quick-category-item::before {
  display: none !important;
}
body.page-home .quick-categories .quick-categories-grid .quick-category-item:hover {
  border: none !important;
  -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
          box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
body.page-home .quick-categories .quick-categories-grid .quick-category-item .quick-category-overlay h3 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

/* Hakkımızda — çapraz bant */
body.page-home .about-section .about-content {
  gap: 60px;
}
body.page-home .about-section .about-text .section-header .section-title {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Blog */
body.page-home .blog-section .section-header .section-title {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
}
body.page-home .blog-section .blog-grid .blog-card {
  border-radius: 14px;
}

/* Önceki bloktaki renk / footer kuralları korunur — aşağıda tekrar */
body.page-home .featured-products {
  background: linear-gradient(180deg, #100d0b 0%, #161210 55%, #0f0c0b 100%);
  border-top: none;
  border-bottom: none;
  padding-top: 88px;
  padding-bottom: 88px;
}
body.page-home .featured-products .section-header .section-subtitle {
  color: #e3d8ce;
}
body.page-home .featured-products .products-grid .product-card .product-info .product-category {
  color: #d4a84b;
}
body.page-home .featured-products .products-grid .product-card .product-info .product-title a {
  color: #ffffff;
  font-weight: 600;
}
body.page-home .featured-products .products-grid .product-card .product-info .product-price .current-price {
  color: #f0d78c;
}
body.page-home .featured-products .products-grid .product-card .product-info .product-price .old-price {
  color: #c4b8ab;
}
body.page-home .quick-categories {
  background: #0e0b0a;
  padding-top: 56px;
  padding-bottom: 56px;
  border-top: none;
  border-bottom: none;
}
body.page-home .category-showcase {
  background: #0a0807;
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: none;
}
body.page-home .about-section {
  background: linear-gradient(125deg, #14100e 0%, #1c1510 40%, #120e0c 100%);
  border-top: none;
  border-bottom: none;
}
body.page-home .about-section::before {
  display: none;
}
body.page-home .about-section .about-text .section-header .section-title {
  color: #ffffff;
}
body.page-home .about-section .about-text .section-header .section-subtitle {
  color: #e3d8ce;
}
body.page-home .about-section .about-text .about-description p {
  color: #e8dfd4;
}
body.page-home .about-section .about-text .about-features .feature-item .feature-content h4 {
  color: #ffffff;
}
body.page-home .about-section .about-text .about-features .feature-item .feature-content p {
  color: #d8cec4;
}
body.page-home .about-section .about-text .about-features .feature-item .feature-icon {
  border: none;
}
body.page-home .blog-section {
  background: #080706;
  border-top: none;
}
body.page-home .blog-section .section-header .section-title {
  color: #ffffff;
}
body.page-home .blog-section .section-header .section-subtitle {
  color: #e3d8ce;
}
body.page-home .blog-section .blog-grid .blog-card {
  border: none;
  background: linear-gradient(165deg, #2a231f 0%, #1a1512 100%);
  -webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
          box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
body.page-home .blog-section .blog-grid .blog-card .blog-content .blog-title {
  color: #ffffff;
}
body.page-home .blog-section .blog-grid .blog-card .blog-content .blog-meta {
  color: #c4b8ab;
}
body.page-home .blog-section .blog-grid .blog-card .blog-content .blog-excerpt,
body.page-home .blog-section .blog-grid .blog-card .blog-content .blog-excerpt p {
  color: #d8cec4;
}
body.theme-fume .modern-footer {
  --mf-accent: #f0d78c;
  --mf-accent-soft: rgba(240, 215, 140, 0.28);
  --mf-text: rgba(245, 240, 232, 0.92);
  --mf-muted: rgba(232, 223, 212, 0.65);
  background: radial-gradient(1200px 500px at 10% -20%, rgba(240, 215, 140, 0.075), transparent 55%),
    radial-gradient(900px 400px at 95% 0%, rgba(192, 57, 43, 0.085), transparent 50%),
    linear-gradient(180deg, #0a0807 0%, #14100e 48%, #080706 100%);
}
body.theme-fume .modern-footer::before {
  display: block;
}
body.theme-fume .modern-footer .footer-section .footer-links li a:hover {
  color: #f0d78c;
}

/* Header vurguları (arama / hover) — önceki palet */
body.theme-fume .modern-header .header-top .header-top-content .search-section .search-input input:focus {
  outline: none;
  border: none !important;
  -webkit-box-shadow: 0 0 0 2px rgba(240, 215, 140, 0.45), 0 8px 24px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 0 2px rgba(240, 215, 140, 0.45), 0 8px 24px rgba(0, 0, 0, 0.35);
}
body.theme-fume .modern-header .header-top .header-top-content .header-actions .action-btn:hover {
  background: rgba(192, 57, 43, 0.45) !important;
}
body.theme-fume .modern-header .header-top .header-top-content .header-actions .dropdown .dropdown-menu {
  border: none;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}
body.page-home .featured-products .products-grid .product-card .product-badge.discount {
  background: linear-gradient(135deg, #c0392b 0%, #f0d78c 100%);
  color: #1a100e;
}

/* theme-fume: mobil menü çekmecesi (tüm sayfalar) */
body.theme-fume .mobile-menu-content {
  background: linear-gradient(180deg, #120e0c 0%, #1a1512 100%);
  border: none;
  -webkit-box-shadow: -16px 0 48px rgba(0, 0, 0, 0.55);
          box-shadow: -16px 0 48px rgba(0, 0, 0, 0.55);
}
body.theme-fume .mobile-menu-header {
  border-bottom: none;
}
body.theme-fume .mobile-menu-header::after {
  display: none;
}
body.theme-fume .mobile-menu-header h3 {
  color: #f0d78c;
  font-family: "Oswald", "Montserrat", sans-serif;
  letter-spacing: 0.12em;
}
body.theme-fume .mobile-menu-header .mobile-menu-close {
  background: rgba(192, 57, 43, 0.2);
  border: none;
  color: #f5ebe0;
}
body.theme-fume .mobile-menu-header .mobile-menu-close:hover {
  background: #c0392b;
  color: #fff;
}
body.theme-fume .mobile-search {
  border-bottom: none;
}
body.theme-fume .mobile-search .search-input input:focus {
  outline: none;
  border: none !important;
  -webkit-box-shadow: 0 0 0 2px rgba(240, 215, 140, 0.4);
          box-shadow: 0 0 0 2px rgba(240, 215, 140, 0.4);
}
body.theme-fume .mobile-search .search-input .search-btn {
  background: linear-gradient(135deg, #c0392b, #922b21);
  border: none;
}
body.theme-fume .mobile-menu-btn.active .mobile-menu-btn-icon span {
  background: #e74c3c !important;
}
body.theme-fume .mobile-nav .mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.theme-fume .mobile-nav .mobile-nav-header:hover {
  background: rgba(192, 57, 43, 0.12);
}
body.theme-fume .mobile-nav .mobile-nav-header .mobile-nav-link:hover {
  color: #f0d78c;
}
body.theme-fume .mobile-nav .mobile-nav-header .mobile-nav-toggle {
  background: rgba(192, 57, 43, 0.2);
  border: none;
  color: #f0d78c;
}
body.theme-fume .mobile-nav .mobile-nav-link:hover {
  background: rgba(192, 57, 43, 0.15);
  color: #f0d78c;
}
body.theme-fume .mobile-nav .mobile-submenu {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.theme-fume .mobile-nav .mobile-submenu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ana içerik alanı (layout) — fixed header altında kalmaması için (yükseklik JS ile güncellenir) */
main.site-main {
  padding-top: var(--modern-header-spacer, 168px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body.theme-fume .site-main {
  display: block;
  min-height: 50vh;
}
