@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap");

:root {
  --primary: #1E3A8A;
  --primary-dark: #0F172A;
  --primary-soft: #DBEAFE;
  --secondary: #F59E0B;
  --secondary-dark: #D97706;
  --accent: #3B82F6;
  --bg-light: #F8FAFC;
  --bg-muted: #F1F5F9;
  --bg-dark: #020617;
  --surface: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --success: #10B981;
  --danger: #EF4444;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", "Roboto", sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
}

.clear {
  clear: both;
}

.ovh {
  overflow: hidden;
}

.error {
  color: var(--danger);
}

.success {
  color: var(--success);
}

a:hover {
  text-decoration: none;
}

.headline {
  text-align: center;
  margin-bottom: 50px;
}

.headline h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 0;
}

.headline h3 {
  font-size: 18px;
  margin-top: 0;
}

.headline-white {
  color: var(--white);
}

.bg-gray {
  background: var(--bg-muted) !important;
}

.bg-white {
  background: var(--white) !important;
}

.top {
  width: 100%;
  height: 40px;
  /* background: #ececec; */
  background: var(--bg-dark);
}

.top .left {
  float: left;
}

.top .left ul {
  padding-top: 8px;
}

.top .left ul li {
  list-style-type: none;
  float: left;
  margin-right: 14px;
  /* color: var(--primary); */
  color: white;
}

.top .left ul li i {
  /* color: var(--primary); */
  color: white;
}

.top .right {
  float: right;
}

.top .right ul {
  padding-top: 8px;
}

.top .right ul li {
  list-style-type: none;
  float: left;
  margin-left: 5px;
}

.top .right ul li a {
  /* color: var(--primary); */
  color: white;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  display: block;
  transition: all 0.4s ease;
}

.top .right ul li a:hover {
  background: #1c257e;
  color: var(--white);
}

.header {
  width: 100%;
  height: auto;
  background: var(--white);
}

.header .inner {
  height: auto;
  display: table;
}

.header .logo {
  float: none;
  display: table-cell;
  vertical-align: middle;
}

.header .logo img {
  max-width: 100%;
  height: 80px;
}

.header .navbar-form .form-control {
  width: 300px;
}

.header .search-area {
  float: none;
  display: table-cell;
  vertical-align: middle;
}

.header .search-area .form-group {
  width: calc(100% - 84px);
}

.header .search-area button {
  width: 80px;
}

.header .search-area form {
  width: 100%;
}

.header .right {
  float: none;
  display: table-cell;
  vertical-align: middle;
  padding-right: 0;
}

.header .right ul {
  float: right;
  margin-bottom: 0;
}

.header .right ul li {
  list-style-type: none;
  float: left;
  margin-left: 14px;
  color: var(--primary);
}

.header .right ul li a {
  color: var(--primary);
}

.header .navbar-form .search-top {
  width: 100%;
}

.nav {
  /* background: var(--primary); */
  background: var(--primary-dark);
}

.menu-container {
  width: 100%;
  margin: 0 auto;
  /* background: var(--primary); */
  background: var(--primary-dark);
}

.menu-mobile {
  display: none;
  padding: 20px;
  color: var(--white);
}

.menu-mobile:hover {
  color: var(--white);
}

.menu-mobile:after {
  content: "\f067";
  font-family: "FontAwesome";
  font-size: 2.5rem;
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
}

.menu-dropdown-icon:before {
  content: "\f067";
  font-family: "FontAwesome";
  display: none;
  cursor: pointer;
  float: right;
  padding: 1.5em 2em;
  background: var(--white);
  color: var(--text-dark);
}

.menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
}

.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}

.menu > ul:after {
  clear: both;
}

.menu > ul > li {
  float: left;
  /*background: #76767e;*/
  padding: 0;
  margin: 0;
}

.menu > ul > li a {
  text-decoration: none;
  padding: 1.5em 20px;
  display: block;
  color: var(--white);
}

.menu > ul > li:hover {
  background: var(--text-dark);
}

.menu > ul > li > ul {
  display: none;
  width: 100%;
  background: #f0f0f0;
  padding: 20px;
  position: absolute;
  z-index: 999999;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
}

.menu > ul > li > ul > li a {
  color: var(--text-muted);
  padding: 0.2em 0;
  width: 95%;
  display: block;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  color: var(--text-dark);
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: 0.8em;
}

.menu > ul > li > ul > li > ul > li a {
  border: 0;
}

.menu > ul > li > ul.normal-sub {
  width: 220px;
  left: auto;
  padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
  width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 959px) {
  .menu-container {
    width: 100%;
  }
  .menu-mobile {
    display: block;
  }
  .menu-dropdown-icon:before {
    display: block;
  }
  .menu > ul {
    display: none;
  }
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
  }
  .menu > ul > li a {
    padding: 1.5em;
    width: 100%;
    display: block;
  }
  .menu > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%;
  }
  .menu > ul > li > ul > li {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .menu .show-on-mobile {
    display: block;
  }
}

.bx-wrapper {
  position: relative;
  box-shadow: none;
  border: 0;
  margin-bottom: 0;
}

.bx-controls {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
}

.welcome {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--text-dark);
  text-align: center;
  padding: 70px 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}

.welcome .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: var(--text-dark);
}

.welcome h2 {
  color: var(--white);
  margin-bottom: 25px;
}

.welcome p {
  color: var(--white);
}

.welcome p.button {
  color: var(--white);
  margin-top: 35px;
}

.welcome p.button a {
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.welcome p.button a:hover {
  background: var(--white);
  color: var(--primary);
}

.service {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 70px 0;
}

.service .item {
  text-align: center;
}
.service .icon {
  text-align: center;
}

.service .icon i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  font-size: 38px;
  border-radius: 50%;
}

.product .product-carousel {
  position: relative;
}

.product .owl-controls {
  position: absolute;
  top: -60px;
  right: 0;
}

.product .owl-controls .owl-prev,
.product .owl-controls .owl-next {
  background: #334155;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 13px;
  padding-right: 13px;
}

.product .owl-controls .owl-prev i,
.product .owl-controls .owl-next i {
  font-size: 14px;
}

.product .owl-controls .owl-prev:hover,
.product .owl-controls .owl-next:hover {
  background: var(--primary);
}

.product .item {
  border: 2px solid var(--border);
}

.product .text {
  background: var(--bg-muted);
  padding: 14px;
  overflow: hidden;
}

.product .text del {
  color: #9d9d9d;
}

.product .text h3 {
  font-weight: 700;
  text-align: center;
  color: #334155;
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 0;
}

.product .text h3 a {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.product .text h3 a:hover {
  text-decoration: none;
}

.product .text h4 {
  color: var(--primary);
  text-align: center;
  font-size: 18px;
}

.product .text p {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 14px;
}

.product .text p a {
  /* background: var(--primary); */
  background: var(--secondary);
  color: var(--white);
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}
.product .out-of-stock {
  width: 100%;
  text-align: center;
}

.product .out-of-stock .inner {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
  text-decoration: line-through;
}

.product .text .rating {
  text-align: center;
}

.product .text p a:hover {
  background: var(--text-dark);
}

.product .item .thumb {
  position: relative;
  overflow: hidden;
}

.product .item .thumb .photo {
  width: 100%;
  height: 280px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.product .item .thumb .overlay {
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: rgba(255, 255, 255, 0.6);
}

.product .item:hover .thumb .overlay {
  opacity: 1;
  filter: alpha(opacity=1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.product-cat {
  padding-top: 14px;
}

.product-cat .item {
  margin-bottom: 30px;
}

.product .item-product-cat {
  border: 0;
}
.product .item-product-cat .inner {
  border: 2px solid var(--border);
}

.product .item-search-result {
  border: 0;
}
.product .item-search-result .inner {
  border: 2px solid var(--border);
}
.product .item-search-result:nth-of-type(4n + 1) {
  clear: both;
}
.product .item-product-cat:nth-of-type(3n + 1) {
  clear: both;
}

.testimonial-v1 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.testimonial-v1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #334155;
  opacity: 0.7;
}

.testimonial-v1 .container {
  position: relative;
  z-index: 9999;
}

.testimonial-v1 .heading {
  margin-bottom: 50px;
}

.testimonial-v1 .heading h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

.testimonial-v1 .heading p {
  font-size: 14px;
  text-align: center;
  color: var(--white);
}

.testimonial-v1 .testimonial-carousel {
  text-align: center;
  position: relative;
  width: 70%;
  margin: 0 auto;
}

.testimonial-v1 .content .comment {
  color: var(--white);
  padding: 14px 50px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  position: relative;
}

.testimonial-v1 .content .comment p {
  margin: 0 auto;
  color: var(--white);
  font-size: 14px;
}

.testimonial-v1 .author {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.testimonial-v1 .photo {
  display: inline-block;
  margin-right: -4px;
  vertical-align: top;
}

.testimonial-v1 .photo img {
  width: 80px;
  height: 80px;
  float: right;
  margin-right: 25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.testimonial-v1 .text {
  display: inline-block;
  vertical-align: top;
}

.testimonial-v1 .text h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
  text-align: left;
  margin-top: 10px;
}

.testimonial-v1 .text h4 {
  font-size: 13px;
  color: var(--white);
  text-align: left;
}

.testimonial-v1 .owl-nav {
  margin-top: 20px;
}

.testimonial-v1 .owl-nav i {
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 20px;
  text-align: center;
}

.testimonial-v1 .owl-nav .owl-prev,
.testimonial-v1 .owl-nav .owl-next {
  color: var(--white);
  background: none;
  position: absolute;
  top: 14%;
}

.testimonial-v1 .owl-nav .owl-prev i,
.testimonial-v1 .owl-nav .owl-next i {
  font-size: 30px;
  font-weight: bold;
}

.testimonial-v1 .owl-nav .owl-prev {
  left: -80px;
}

.testimonial-v1 .owl-nav .owl-next {
  right: -80px;
}

.testimonial-v1 .owl-nav .owl-prev:hover,
.testimonial-v1 .owl-nav .owl-next:hover {
  background: none;
}

.home-blog {
  width: 100%;
  height: auto;
  padding: 70px 0;
  overflow: hidden;
}

.home-blog .item {
}

.home-blog .item .photo {
  width: 100%;
  height: 300px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.home-blog .text {
  padding: 14px;
  background: var(--bg-muted);
}

.home-blog .text h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}

.home-blog .text p.button {
  margin-top: 25px;
}

.home-blog .text p.button a {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}

.home-blog .text p.button a:hover {
  background: var(--text-dark);
}

.footer-main {
  width: 100%;
  height: auto;
  padding: 50px 0;
  background: #111827;
}
.footer-main h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  border-bottom: 1px solid #374151;
}
.footer-main h3:after {
  content: "";
  position: absolute;
  width: 50px;
  background: var(--primary);
  left: 0;
  bottom: -2px;
  height: 4px;
}
.footer-main .footer-col p {
  color: #CBD5E1;
  font-size: 14px;
  line-height: 22px;
}
.footer-main .footer-col p a {
  color: #CBD5E1;
}
.footer-main .footer-col p span {
  display: block;
  color: #CBD5E1;
}
.footer-main .footer-col ul li {
  color: #CBD5E1;
  font-size: 14px;
  line-height: 22px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  list-style-type: none;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.footer-main .footer-col ul li a {
  color: #CBD5E1;
  font-size: 14px;
  line-height: 22px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.footer-main .footer-col ul li a:hover {
  color: var(--white);
}
.footer-main .footer-col ul li:before {
  color: #CBD5E1;
  content: "\f0a4";
  font-family: "FontAwesome";
  left: 0;
  position: absolute;
  top: 0;
}
.footer-main .footer-col .contact-item {
  color: #CBD5E1;
  font-size: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  display: table;
}
.footer-main .footer-col .contact-item .icon {
  width: 35px;
  display: table-cell;
  vertical-align: top;
  font-size: 14px;
  margin-right: 10px;
}
.footer-main .footer-col .contact-item .icon i {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #E5E7EB;
  color: #111827;
  border-radius: 50%;
}
.footer-main .footer-col .contact-item .text {
  display: table-cell;
  vertical-align: top;
  line-height: 22px;
  display: block;
}
.footer-main .footer-col p.social {
  margin-bottom: 10px;
}

.footer-bottom {
  width: 100%;
  height: auto;
  background: #030712;
  padding: 14px 0;
}
.footer-bottom .copyright {
  font-size: 13px;
  color: #CBD5E1;
  text-align: center;
}

.scrollup {
  position: fixed;
  z-index: 99999;
  bottom: 20px;
  right: 20px;
  display: none;
}
.scrollup i {
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: 4px solid var(--primary);
  text-align: center;
  font-size: 26px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.scrollup i:hover {
  opacity: 1;
  filter: alpha(opacity=1);
}

ul.prod-slider li {
  height: 450px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top center;
  position: relative;
}
ul.prod-slider li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 99999999;
}
.bx-controls {
  display: none;
}
.prod-pager-thumb {
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top center;
}
#prod-pager {
  margin-top: 20px;
}

#prod-pager a {
  float: left;
  margin-right: 3px;
}

ul.nav-tabs {
  margin-top: 50px;
}
.product .p-title h2 {
  color: var(--primary);
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
}

.product .p-status {
  margin-bottom: 10px;
}

.product .p-review {
  margin-bottom: 10px;
}

.product .p-price {
  line-height: 30px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.product .p-price span {
  font-size: 30px;
}

.product .p-price del {
  color: #CBD5E1;
}

.product .p-short-des {
  margin-bottom: 30px;
}

.product .p-quantity {
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 35px;
  font-size: 14px;
}

.product .p-quantity input[type="number"] {
  height: 30px;
  width: 100px;
  border: 2px solid #CBD5E1;
}

.product .btn-cart {
  margin-bottom: 30px;
}

.product .btn-cart a {
  padding: 10px 14px;
  /* background: var(--primary); */
  background: var(--secondary);
  color: var(--white);
}

.product .btn-cart1 input[type="submit"] {
  border: 0;
  padding: 10px 14px;
  /* background: var(--primary); */
  background: var(--secondary);
  color: var(--white);
}

.product .share {
  line-height: 30px;
  font-weight: 700;
}

.product .nav {
  background: transparent;
}

.product .nav-tabs li a {
  font-weight: 700;
  color: var(--text-dark);
}

.product .tab-content > .tab-pane {
  padding-top: 20px;
}

.review-form h2 {
  font-size: 24px;
  font-weight: 700;
}
.review-form .btn-default {
  background: var(--primary);
  color: var(--white);
  border-radius: 0;
  border: 0;
  padding: 10px 14px;
}
.rating-section {
  margin-bottom: 14px;
}

.page-banner {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  /* padding-top: 80px;
  padding-bottom: 80px; */
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}

.page-banner .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  /* background: var(--text-dark); */
  background: var(--bg-dark);
}

.page-banner h1 {
  color: var(--white);
  text-align: center;
  z-index: 999;
  position: relative;
}

.page {
  width: 100%;
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page h3.special {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page h3.special:after {
  content: "";
  position: absolute;
  width: 50px;
  background: var(--primary);
  left: 0;
  bottom: -2px;
  height: 4px;
}

.cart {
  width: 100%;
  height: auto;
}

.cart table img {
  width: 100px;
}

.cart table tr td {
  vertical-align: middle;
}

.cart input[type="number"] {
  height: 30px;
  width: 70px;
  border: 2px solid #CBD5E1;
  padding-left: 10px;
  padding-right: 10px;
}

.cart table tr td .trash {
  color: var(--primary);
  font-size: 18px;
}

.cart table tr td.total-text,
.cart table tr th.total-text {
  text-align: right;
  font-size: 14px;
}

.cart table tr td.total-amount,
.cart table tr th.total-amount {
  text-align: right;
  font-size: 14px;
}

.cart-buttons {
  width: 100%;
  float: right;
  margin-top: 40px;
}

.cart-buttons ul {
  float: right;
}

.cart-buttons li {
  float: left;
  list-style-type: none;
  margin-left: 14px;
}

.cart-buttons li input[type="submit"],
.cart-buttons li a {
  background: var(--primary);
  border: 0;
  border-radius: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
  padding: 10px 20px;
  color: var(--white);
}

.cart-buttons li input[type="submit"]:hover,
.cart-buttons li a:hover {
  background: var(--text-dark);
  color: var(--white);
}

.cform input[type="submit"] {
  background: var(--primary);
  border: 0;
}

.cform address span,
.cform address a span {
  color: var(--primary);
}

.page iframe {
  width: 100%;
}

.gal-container {
  padding: 12px;
}
.gal-item {
  overflow: hidden;
  padding: 3px;
}
.gal-item .box {
  height: 350px;
  overflow: hidden;
}
.box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.gal-item a:focus {
  outline: none;
}
.gal-item a:after {
  content: "\e003";
  font-family: "Glyphicons Halflings";
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  right: 3px;
  left: 3px;
  top: 3px;
  bottom: 3px;
  text-align: center;
  line-height: 350px;
  font-size: 30px;
  color: var(--white);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.gal-item a:hover:after {
  opacity: 1;
}
.modal-open .gal-container .modal {
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-open .gal-item .modal-body {
  padding: 0px;
}
.modal-open .gal-item button.close {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #000000;
  opacity: 1;
  color: var(--white);
  z-index: 999;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  font-size: 14px;
  border: 2px solid var(--white);
  line-height: 25px;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
}
.modal-open .gal-item button.close:focus {
  outline: none;
}
.modal-open .gal-item button.close span {
  position: relative;
  top: -3px;
  font-weight: lighter;
  text-shadow: none;
}
.gal-container .modal-dialogue {
  width: 80%;
}
.gal-container .description {
  position: relative;
  height: 40px;
  top: -40px;
  padding: 10px 25px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  text-align: left;
}
.gal-container .description h4 {
  margin: 0px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
.gal-container .modal.fade .modal-dialog {
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  top: 100px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.gal-container .modal.fade.in .modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
  opacity: 1;
}
@media (min-width: 768px) {
  .gal-container .modal-dialog {
    width: 55%;
    margin: 50 auto;
  }
}
@media (max-width: 768px) {
  .gal-container .modal-content {
    height: 250px;
  }
}
/* Footer Style */
i.var(--danger) {
  color: #bc0213;
}
.gal-container {
  padding-top: 0px;
  padding-bottom: 75px;
}

.videos {
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: center;
}
.videos .adv img {
  width: 100%;
  height: auto;
}
.videos .prop-4-col:nth-of-type(4n + 1) {
  clear: both;
}
.videos .prop-3-col:nth-of-type(3n + 1) {
  clear: both;
}
.videos h2 {
  color: var(--text-dark);
  font-family: "Open Sans", serif;
  font-size: 26px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}
.videos h3 {
  color: var(--text-dark);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 20px;
}
.single-room {
  position: relative;
  margin-bottom: 30px;
  background: var(--white);
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
}
.single-room .photo-col2 {
  width: 100%;
  height: 360px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.single-room .photo-col3 {
  width: 100%;
  height: 150px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.single-room-text {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.single-room-text h2 {
  background: var(--white);
  font-size: 13px;
  line-height: 1.4;
  text-transform: none;
  margin-bottom: 0;
}
.single-room-text h2 a {
  color: var(--text-dark);
  padding: 8px !important;
  font-weight: 600;
  display: block;
}

table.bill-address tr td:nth-of-type(1) {
  font-weight: bold;
  width: 200px;
}

.user-sidebar ul {
  text-align: center;
}

.user-sidebar ul li {
  list-style-type: none;
  border-bottom: 1px solid var(--white);
  display: inline-block;
}

.user-sidebar ul li a {
  padding: 7px 20px;
  min-height: 40px;
  line-height: 40px;
  background: #444;
  color: var(--white);
}

.user-content h3 {
  margin-bottom: 20px;
}

.blog {
  background: var(--white);
}

.blog .post-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.blog .image-holder {
  width: 285px;
  float: left;
  position: relative;
  margin-right: 15px;
}

.blog .image-holder-single {
  width: 100%;
  float: none;
  position: relative;
}

.blog .image-holder-single img {
  width: 100%;
  height: auto;
}

.blog .image-holder .date {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 999;
}

.blog .image-holder .day {
  width: 60px;
  height: 40px;
  line-height: 40px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  position: relative;
  font-size: 16px;
}

.blog .image-holder .day:before {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--primary);
  font-family: "FontAwesome";
  content: "\f0d7";
  font-size: 24px;
}

.blog .image-holder .month {
  width: 60px;
  height: 40px;
  line-height: 40px;
  background: var(--text-dark);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
}

.blog .text {
  width: calc(100% - 300px);
  float: left;
}

.blog .text-single {
  width: 100%;
  float: none;
}

.blog .text-single h3 {
  font-family: "Roboto", sans-serif;
  margin-top: 20px;
}

.blog .text .inner {
  padding: 0 20px 20px 20px;
}

.blog h3 {
  font-family: "Roboto", sans-serif;
  text-align: left;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.blog h3 a {
  font-family: "Roboto", sans-serif;
  color: var(--text-dark);
}

.blog h3 a:hover {
  color: var(--primary);
}

.blog .text ul.status {
  overflow: hidden;
  margin-bottom: 15px;
}

.blog .text ul.status li {
  text-align: left;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 14px;
  float: left;
  list-style-type: none;
  margin-right: 15px;
  line-height: 18px;
  margin-bottom: 5px;
  padding-left: 0;
}

.blog .text ul.status li a {
  color: var(--primary);
}

.blog .text ul.status li i {
  margin-right: 8px;
}

.blog ul.status li:before {
  content: "";
}

.blog ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  list-style-type: none;
}

.blog ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "FontAwesome";
  content: "\f044";
  color: var(--text-dark);
}

.blog h1 {
  font-size: 24px;
  color: var(--primary);
  font-weight: bold;
}

.blog h2 {
  font-size: 20px;
  color: var(--primary);
  font-weight: bold;
}

.blog h3 {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: bold;
}

.blog h4 {
  font-size: 16px;
  color: var(--primary);
  font-weight: bold;
}

.blog h5 {
  font-size: 14px;
  color: var(--primary);
  font-weight: bold;
}

.blog h6 {
  font-size: 12px;
  color: var(--primary);
  font-weight: bold;
}

.blog p {
  margin-bottom: 15px;
  font-size: 14px;
}

.blog p.button {
  margin-top: 20px;
}

.blog p.button a {
  font-family: "Roboto", sans-serif;
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blog p.button a:hover {
  background: #444;
}

.blog .pagination {
  margin-top: 20px;
}

.blog .pagination ul {
  width: 100%;
  height: auto;
  text-align: center;
}

.blog .pagination ul li {
  display: inline-block;
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 10px;
  padding-left: 0;
}

.blog .pagination ul li:before {
  content: "";
}

.blog .pagination ul li a {
  background: var(--primary);
  color: var(--white);
  display: block;
  font-size: 16px;
}

.blog .pagination ul li a i {
  margin-right: 0;
}

.blog .pagination ul li a:hover {
  background: var(--text-dark);
}

.blog .pagination ul li a.active {
  background: var(--text-dark);
}

.blog .gallery-carousel {
  position: relative;
  z-index: 999;
}

.blog .owl-controls {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 999;
}

.blog .owl-controls .owl-prev,
.blog .owl-controls .owl-next {
  background: var(--text-dark);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 13px;
  padding-right: 13px;
}

.blog .owl-controls .owl-prev i,
.blog .owl-controls .owl-next i {
  font-size: 16px;
}

.blog .owl-controls .owl-prev:hover,
.blog .owl-controls .owl-next:hover {
  background: var(--primary);
}

.blog .video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.blog .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog .audio {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/**
 * ---------------------------------------------------
 * Sidebar Style
 * ---------------------------------------------------
 */
.sidebar {
  width: 100%;
}

.widget {
  overflow: hidden;
  margin-bottom: 30px;
}

.widget-search input {
  height: 36px;
  border: 2px solid #CBD5E1;
  float: left;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.widget-search input:focus {
  border: 2px solid var(--primary);
}

.widget-search button {
  width: 42px;
  height: 36px;
  float: left;
  border: 2px solid var(--primary);
  background: var(--primary);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  margin-left: 5px;
  color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.widget-search button:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

.widget h4 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 6px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--primary);
}

.widget ul li {
  display: block;
  float: none;
  color: var(--text-dark);
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.widget ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  color: var(--text-dark);
  top: 1px;
  left: 3px;
}

.widget ul li a {
  color: var(--text-dark);
  font-size: 14px;
}

.widget ul li a:hover {
  color: var(--primary);
}

.widget ul.tag-cloud li {
  display: inline-block;
  padding-left: 0;
  padding: 4px 10px;
  border: 2px solid #CBD5E1;
  font-size: 12px;
  margin-right: 5px;
}

.widget ul.tag-cloud li:before {
  content: "";
}

.widget ul.tag-cloud li:hover {
  background: var(--primary);
  border: 2px solid var(--primary);
}

.widget ul.tag-cloud li:hover a {
  color: var(--white);
}

.card .nav-tabs {
  border-bottom: 2px solid #ddd;
  background: var(--white);
}
.card .nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
}
.card .nav-tabs > li > a {
  border: none;
  color: var(--text-muted);
}
.card .nav-tabs > li.active > a,
.card .nav-tabs > li > a:hover {
  border: none;
  color: var(--primary) !important;
  background: transparent;
}
.card .nav-tabs > li > a::after {
  content: "";
  background: var(--primary);
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: -1px;
  transition: all 250ms ease 0s;
  transform: scale(0);
}
.card .nav-tabs > li.active > a::after,
.nav-tabs > li:hover > a::after {
  transform: scale(1);
}
.tab-nav > li > a::after {
  background: #21527d none repeat scroll 0% 0%;
  color: var(--white);
}
.tab-pane {
  padding: 14px 0;
}
.tab-content {
  padding: 20px;
}

.card {
  background: var(--white) none repeat scroll 0% 0%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.vid iframe {
  width: 100%;
  height: 250px;
}

div.pagination {
  padding: 3px;
  margin: 3px;
  z-index: 1000;
  font-size: 14px;
  margin-bottom: 20px;
}

div.pagination a {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid var(--secondary);
  text-decoration: none; /* no underline */
  background-color: var(--primary);
  color: var(--white);
  font-weight: bold;
}

div.pagination a:hover,
div.pagination a:active {
  border: 1px solid var(--secondary);
  color: var(--white);
  background-color: var(--secondary-dark);
}

div.pagination span.current {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid var(--secondary);
  font-weight: bold;
  background-color: var(--secondary-dark);
  color: var(--white);
  font-weight: bold;
}

div.pagination span.disabled {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #94A3B8;
  color: #94A3B8;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999999;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../img/1.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

.ad-section img {
  width: 100% !important;
  height: auto !important;
}

.breadcrumb {
  background: var(--white);
  margin-top: -40px;
}

.breadcrumb ul li {
  float: left;
  list-style-type: none;
  margin-right: 10px;
  color: var(--primary);
}
.breadcrumb ul li:last-child {
  color: var(--text-dark);
}

.breadcrumb ul li a {
  color: var(--primary);
}

.bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 500px;
}

.home-newsletter {
  padding: 80px 0;
  /* background: var(--primary); */
  background: var(--primary-dark);
}

.home-newsletter .single {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.home-newsletter .single h2 {
  font-size: 22px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 0;
}
.home-newsletter .single .form-control {
  height: 50px;
  border-color: var(--text-dark);
  outline: none;
}
.home-newsletter .single .btn {
  min-height: 50px;
  background: var(--text-dark);
  color: var(--white);
  padding-left: 15px;
  padding-right: 15px;
}


/* Professional Design Upgrade */
a, button, input[type="submit"] {
  transition: all 0.3s ease;
}

.header {
  box-shadow: var(--shadow-sm);
}

.header .navbar-form .form-control,
.widget-search input,
.product .p-quantity input[type="number"],
.cart input[type="number"],
.home-newsletter .single .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: none;
}

.header .navbar-form .form-control:focus,
.widget-search input:focus,
.home-newsletter .single .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
  outline: none;
}

.menu > ul > li a {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.menu > ul > li:hover {
  background: var(--primary);
}

.menu > ul > li > ul {
  background: var(--surface);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.welcome p.button a,
.home-blog .text p.button a,
.blog p.button a,
.cart-buttons li input[type="submit"],
.cart-buttons li a,
.review-form .btn-default,
.cform input[type="submit"],
.widget-search button,
.home-newsletter .single .btn {
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  border: 0;
}

.welcome p.button a:hover,
.home-blog .text p.button a:hover,
.blog p.button a:hover,
.cart-buttons li input[type="submit"]:hover,
.cart-buttons li a:hover,
.widget-search button:hover,
.home-newsletter .single .btn:hover {
  background: var(--secondary);
  color: var(--white);
}

.product .item,
.single-room,
.card,
.product .item-product-cat .inner,
.product .item-search-result .inner {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.product .item:hover,
.single-room:hover,
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product .text {
  background: var(--surface);
}

.product .text p a,
.product .btn-cart a,
.product .btn-cart1 input[type="submit"] {
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.product .text p a:hover,
.product .btn-cart a:hover,
.product .btn-cart1 input[type="submit"]:hover {
  background: var(--primary);
}

.service .icon i {
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.25);
}

.page-banner .overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.82));
}

.home-newsletter {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.footer-main h3:after,
.page h3.special:after {
  background: var(--secondary);
}

.scrollup i {
  background: var(--secondary);
  border-color: var(--secondary);
}

/* =====================================================
   INDEX PAGE PROFESSIONAL UPGRADE STYLES
   Move from upgraded-index.php inline <style> to CSS file
   ===================================================== */
:root {
    --pro-primary: #1e3a8a;
    --pro-primary-dark: #0f172a;
    --pro-primary-soft: #dbeafe;
    --pro-accent: #f59e0b;
    --pro-accent-dark: #d97706;
    --pro-danger: #ef4444;
    --pro-success: #10b981;
    --pro-white: #ffffff;
    --pro-bg: #f8fafc;
    --pro-card: #ffffff;
    --pro-text: #1e293b;
    --pro-muted: #64748b;
    --pro-border: #e2e8f0;
    --pro-shadow: 0 16px 40px rgba(15, 23, 42, .10);
    --pro-shadow-hover: 0 24px 60px rgba(15, 23, 42, .16);
}

body {
    background: var(--pro-bg);
    color: var(--pro-text);
}

.pro-home-slider .item {
    min-height: 560px;
    background-position: center center !important;
    background-size: cover !important;
}

.bs-slider-overlay {
    background: linear-gradient(90deg, rgba(15,23,42,.86), rgba(30,58,138,.54), rgba(15,23,42,.26));
}

.slide-text h1 {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.slide-text p {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.92);
}

.btn-pro,
.btn.btn-primary.btn-pro {
    background: linear-gradient(135deg, var(--pro-accent), var(--pro-accent-dark));
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    box-shadow: 0 14px 30px rgba(245, 158, 11, .35);
    transition: all .3s ease;
}

.btn-pro:hover,
.btn.btn-primary.btn-pro:hover {
    background: linear-gradient(135deg, var(--pro-primary), var(--pro-primary-dark));
    transform: translateY(-2px);
    color: #fff;
}

.service-pro {
    background: linear-gradient(180deg, #fff, var(--pro-bg));
    padding: 80px 0;
}

.service-pro .item {
    background: var(--pro-card);
    border: 1px solid var(--pro-border);
    border-radius: 18px;
    padding: 34px 24px;
    min-height: 255px;
    box-shadow: var(--pro-shadow);
    transition: all .3s ease;
}

.service-pro .item:hover {
    transform: translateY(-8px);
    box-shadow: var(--pro-shadow-hover);
}

.service-pro .photo img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    border-radius: 50%;
    padding: 14px;
    background: var(--pro-primary-soft);
}

.service-pro h3 {
    color: var(--pro-primary-dark);
    font-size: 20px;
    font-weight: 800;
    margin-top: 22px;
}

.service-pro p {
    color: var(--pro-muted);
    line-height: 1.7;
}

.section-pro {
    padding: 88px 0;
    background: #fff;
}

.section-pro.alt-section-pro {
    background: var(--pro-bg);
}

.headline-pro {
    margin-bottom: 44px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--pro-accent-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.headline-pro h2 {
    color: var(--pro-primary-dark);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -.7px;
    text-transform: none;
}

.headline-pro h3 {
    color: var(--pro-muted);
    font-size: 17px;
    line-height: 1.7;
}

.product-card-pro {
    background: var(--pro-card);
    border: 1px solid var(--pro-border) !important;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--pro-shadow);
    transition: all .3s ease;
}

.product-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: var(--pro-shadow-hover);
}

.product-thumb-pro {
    background: #eef2ff;
}

.product-thumb-pro .photo {
    height: 300px;
    transition: transform .45s ease;
}

.product-card-pro:hover .photo {
    transform: scale(1.06);
}

.product .item .thumb .overlay {
    background: linear-gradient(180deg, rgba(15,23,42,0), rgba(15,23,42,.18));
    transform: none;
}

.product-badge {
    position: absolute;
    top: 14px;
    z-index: 3;
    color: #fff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(15,23,42,.20);
}

.sale-badge {
    left: 14px;
    background: var(--pro-danger);
}

.stock-badge,
.new-badge {
    right: 14px;
}

.stock-badge {
    background: #475569;
}

.new-badge {
    background: var(--pro-success);
}

.product-info-pro {
    background: #fff !important;
    padding: 20px 18px 22px !important;
}

.product-info-pro h3 {
    min-height: 52px;
    margin-bottom: 12px;
}

.product-info-pro h3 a {
    color: var(--pro-primary-dark) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

.product-info-pro h3 a:hover {
    color: var(--pro-primary) !important;
}

.product-price-pro {
    color: var(--pro-primary) !important;
    font-size: 22px !important;
    font-weight: 900;
}

.product-price-pro del {
    color: #94a3b8;
    font-size: 14px;
    margin-left: 7px;
    font-weight: 500;
}

.rating-pro {
    color: var(--pro-accent);
    min-height: 24px;
    margin: 12px 0 16px;
}

.rating-pro i {
    color: var(--pro-accent);
    margin: 0 1px;
}

.rating-empty,
.rating-count {
    color: var(--pro-muted);
    font-size: 12px;
    margin-left: 5px;
}

.cart-btn-pro,
.product .text p a.cart-btn-pro {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--pro-accent), var(--pro-accent-dark)) !important;
    border-radius: 12px;
    color: #fff !important;
    font-weight: 800;
    padding: 12px 14px !important;
    box-shadow: 0 12px 24px rgba(245, 158, 11, .25);
}

.cart-btn-pro:hover,
.product .text p a.cart-btn-pro:hover {
    background: linear-gradient(135deg, var(--pro-primary), var(--pro-primary-dark)) !important;
    transform: translateY(-2px);
}

.product .out-of-stock .inner {
    background: #475569;
    border-radius: 12px;
    padding: 12px 14px;
    width: 100%;
    display: block;
    text-decoration: none;
    font-weight: 800;
}

.empty-state-pro {
    background: #fff;
    border: 1px dashed var(--pro-border);
    border-radius: 18px;
    color: var(--pro-muted);
    padding: 40px;
    text-align: center;
}

.carousel-control.left,
.carousel-control.right {
    background-image: none;
}

.carousel-control .fa {
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
}

@media (max-width: 767px) {
    .pro-home-slider .item {
        min-height: 440px;
    }
    .slide-text h1 {
        font-size: 34px;
    }
    .slide-text p {
        font-size: 15px;
    }
    .section-pro,
    .service-pro {
        padding: 56px 0;
    }
}

/* =========================================================
   Professional Login/Auth Page Design
   Add this to complete-professional-style.css
========================================================= */

.auth-banner {
  position: relative;
  min-height: 260px;
  background-color: var(--primary-dark, #172554);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.auth-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 58, 138, 0.75));
  z-index: 1;
}

.auth-banner .inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 15px;
}

.auth-banner h1 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.auth-banner-subtitle {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.auth-page {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  padding: 70px 0;
}

.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.auth-card-header {
  text-align: center;
  margin-bottom: 26px;
}

.auth-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.28);
}

.auth-card-header h2 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 28px;
  font-weight: 800;
}

.auth-card-header p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.auth-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  margin-bottom: 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.auth-alert-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.auth-alert-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.auth-form-group {
  margin-bottom: 18px;
}

.auth-form-group label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.auth-form-group label span {
  color: #ef4444;
}

.auth-input {
  position: relative;
}

.auth-input i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 15px;
  z-index: 2;
}

.auth-input .form-control {
  width: 100%;
  height: 50px;
  padding: 12px 15px 12px 44px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  box-shadow: none;
  transition: all 0.25s ease;
}

.auth-input .form-control:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.auth-actions {
  display: flex;
  justify-content: flex-end;
  margin: 4px 0 20px;
}

.auth-forgot-link {
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.auth-forgot-link:hover {
  color: #f59e0b;
}

.auth-submit-btn {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.30);
  transition: all 0.25s ease;
}

.auth-submit-btn i {
  margin-right: 8px;
}

.auth-submit-btn:hover,
.auth-submit-btn:focus {
  background: linear-gradient(135deg, #1e3a8a, #172554);
  box-shadow: 0 16px 36px rgba(30, 58, 138, 0.28);
  transform: translateY(-2px);
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .auth-banner {
    min-height: 210px;
  }

  .auth-banner h1 {
    font-size: 32px;
  }

  .auth-page {
    padding: 45px 0;
  }

  .auth-card {
    padding: 26px 20px;
    border-radius: 18px;
  }
}

/* =========================================================
   Professional Registration Page Design
   Add this to complete-professional-style.css
========================================================= */

.register-banner.auth-banner {
  min-height: 280px;
}

.register-page.auth-page {
  padding: 75px 0;
}

.register-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-card {
  width: 100%;
  max-width: 920px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
}

.register-card-header {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.register-form-grid {
  margin-left: -10px;
  margin-right: -10px;
}

.register-form-grid > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.auth-textarea i {
  top: 22px;
  transform: none;
}

.auth-textarea .form-control {
  min-height: 96px;
  resize: vertical;
  padding-top: 14px;
}

.auth-input select.form-control {
  padding-left: 44px;
  appearance: auto;
}

.register-submit-btn {
  max-width: 340px;
  display: block;
  margin: 12px auto 0;
}

.register-login-note {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

.register-login-note a {
  color: #1e3a8a;
  font-weight: 800;
}

.register-login-note a:hover {
  color: #f59e0b;
}

@media only screen and (max-width: 767px) {
  .register-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .register-page.auth-page {
    padding: 45px 0;
  }

  .register-submit-btn {
    max-width: 100%;
  }
}
/* =========================================================
   Attractive Premium Index/Homepage Upgrade
   Paste this at the end of complete-professional-style.css
========================================================= */

:root {
  --premium-primary: #1e3a8a;
  --premium-primary-dark: #0f172a;
  --premium-blue: #3b82f6;
  --premium-gold: #f59e0b;
  --premium-orange: #f97316;
  --premium-red: #ef4444;
  --premium-green: #10b981;
  --premium-bg: #f8fafc;
  --premium-card: #ffffff;
  --premium-border: #e2e8f0;
  --premium-text: #0f172a;
  --premium-muted: #64748b;
}

.premium-hero-slider .item {
  height: 620px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.premium-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(59, 130, 246, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.68) 48%, rgba(15, 23, 42, 0.22) 100%);
  z-index: 1;
}

.premium-hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.premium-hero-container .row {
  height: 620px;
  display: flex;
  align-items: center;
}

.premium-slide-content {
  max-width: 620px;
  color: #fff;
}

.premium-slide-content.center-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.premium-slide-content.right-content {
  text-align: right;
  margin-left: auto;
}

.premium-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  color: #fbbf24;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.premium-slide-content h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.premium-slide-content p {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.86);
  font-size: 18px;
  line-height: 1.75;
}

.premium-slide-content.center-content p,
.premium-slide-content.right-content p {
  margin-left: auto;
}

.premium-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--premium-gold), var(--premium-orange));
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.34);
  transition: all 0.28s ease;
}

.premium-hero-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(245, 158, 11, 0.42);
}

.premium-control {
  width: 56px;
  height: 56px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(12px);
  opacity: 1;
  text-shadow: none;
}

.premium-control span.fa {
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 32px;
}

.premium-slider-indicators li {
  width: 11px;
  height: 11px;
  margin: 0 5px;
  border: 0;
  background: rgba(255,255,255,0.45);
}

.premium-slider-indicators li.active {
  width: 30px;
  height: 11px;
  border-radius: 999px;
  background: var(--premium-gold);
}

.premium-trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -48px;
  padding-bottom: 42px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 22px 18px;
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  transition: all 0.28s ease;
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.16);
}

.trust-item i {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--premium-primary), var(--premium-blue));
  color: #fff;
  font-size: 20px;
}

.trust-item h4 {
  margin: 0 0 4px;
  color: var(--premium-text);
  font-size: 15px;
  font-weight: 900;
}

.trust-item p {
  margin: 0;
  color: var(--premium-muted);
  font-size: 13px;
}

.section-title-modern {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title-modern span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(59,130,246,0.10);
  color: var(--premium-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title-modern h2 {
  margin: 0 0 12px;
  color: var(--premium-text);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.section-title-modern p {
  margin: 0;
  color: var(--premium-muted);
  font-size: 16px;
  line-height: 1.7;
}

.premium-service-section {
  padding: 80px 0 50px;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.10), transparent 30%),
    #fff;
}

.premium-service-card {
  min-height: 285px;
  margin-bottom: 30px;
  padding: 34px 26px;
  border: 1px solid var(--premium-border);
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 45px rgba(15,23,42,0.08);
  transition: all 0.28s ease;
}

.premium-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.32);
  box-shadow: 0 24px 70px rgba(15,23,42,0.14);
}

.service-photo-wrap {
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(30,58,138,0.10), rgba(245,158,11,0.12));
}

.service-photo-wrap img {
  max-width: 58px;
  max-height: 58px;
  object-fit: contain;
}

.premium-service-card h3 {
  margin: 0 0 12px;
  color: var(--premium-text);
  font-size: 20px;
  font-weight: 900;
}

.premium-service-card p {
  color: var(--premium-muted);
  font-size: 14px;
  line-height: 1.7;
}

.premium-product-section {
  padding: 84px 0;
}

.featured-section {
  background: var(--premium-bg);
}

.latest-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.popular-section {
  background:
    radial-gradient(circle at top left, rgba(245,158,11,0.10), transparent 30%),
    #fff;
}

.premium-product-carousel {
  position: relative;
}

.premium-product-card {
  border: 1px solid var(--premium-border) !important;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 45px rgba(15,23,42,0.08);
  transition: all 0.28s ease;
}

.premium-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.28) !important;
  box-shadow: 0 28px 80px rgba(15,23,42,0.15);
}

.premium-product-media {
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.premium-product-photo {
  position: relative;
  display: block;
  width: 100%;
  height: 285px;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s ease;
}

.premium-product-card:hover .premium-product-photo {
  transform: scale(1.06);
}

.premium-product-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,0.46);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.premium-product-card:hover .premium-product-overlay {
  opacity: 1;
}

.premium-product-overlay span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--premium-primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-badge {
  position: absolute;
  z-index: 5;
  top: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(15,23,42,0.18);
}

.badge-primary {
  left: 14px;
  background: linear-gradient(135deg, var(--premium-primary), var(--premium-blue));
}

.badge-sale {
  right: 14px;
  background: linear-gradient(135deg, var(--premium-red), #f97316);
}

.badge-stock {
  left: 14px;
  top: 52px;
  background: #334155;
}

.premium-product-body {
  padding: 20px 18px 18px;
}

.premium-product-body h3 {
  margin: 0 0 12px;
  min-height: 48px;
  text-align: center;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 900;
}

.premium-product-body h3 a {
  color: var(--premium-text);
}

.premium-product-body h3 a:hover {
  color: var(--premium-primary);
}

.premium-rating {
  min-height: 22px;
  margin-bottom: 10px;
  text-align: center;
  color: var(--premium-gold);
  font-size: 14px;
}

.rating-empty {
  color: #94a3b8;
  font-size: 12px;
}

.premium-price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.premium-price {
  color: var(--premium-primary);
  font-size: 22px;
  font-weight: 950;
}

.premium-price-row del {
  color: #94a3b8;
  font-size: 14px;
}

.premium-cart-btn,
.premium-stock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-cart-btn {
  background: linear-gradient(135deg, var(--premium-gold), var(--premium-orange));
  color: #fff;
  box-shadow: 0 12px 28px rgba(245,158,11,0.26);
  transition: all 0.28s ease;
}

.premium-cart-btn:hover {
  background: linear-gradient(135deg, var(--premium-primary), var(--premium-primary-dark));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(30,58,138,0.28);
}

.premium-stock-btn.disabled {
  background: #f1f5f9;
  color: #64748b;
}

.product .owl-controls {
  top: -72px;
}

.product .owl-controls .owl-prev,
.product .owl-controls .owl-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0 !important;
  line-height: 42px;
  background: var(--premium-primary) !important;
  box-shadow: 0 10px 24px rgba(30,58,138,0.18);
}

.product .owl-controls .owl-prev:hover,
.product .owl-controls .owl-next:hover {
  background: var(--premium-gold) !important;
}

@media only screen and (max-width: 991px) {
  .premium-hero-slider .item,
  .premium-hero-container .row {
    height: 540px;
  }

  .premium-slide-content h1 {
    font-size: 44px;
  }

  .premium-trust-strip {
    margin-top: 0;
    padding-top: 30px;
  }

  .trust-item {
    margin-bottom: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .premium-hero-slider .item,
  .premium-hero-container .row {
    height: 500px;
  }

  .premium-slide-content,
  .premium-slide-content.right-content {
    text-align: center;
    margin: 0 auto;
  }

  .premium-slide-content h1 {
    font-size: 34px;
  }

  .premium-slide-content p {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .premium-control {
    display: none;
  }

  .section-title-modern h2 {
    font-size: 30px;
  }

  .premium-product-section,
  .premium-service-section {
    padding: 55px 0;
  }

  .premium-product-photo {
    height: 250px;
  }
}

/* =========================================================
   Premium Header / Navbar Upgrade
   Paste this at the end of complete-professional-style.css
========================================================= */

.site-shell {
  background: #fff;
}

.premium-topbar {
  height: auto;
  min-height: 42px;
  background: linear-gradient(135deg, #0f172a, #172554);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
}

.premium-topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.premium-topbar-left,
.premium-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.premium-topbar-left span,
.premium-offer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.premium-topbar i {
  color: #f59e0b;
}

.premium-social {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.premium-social li {
  list-style: none;
}

.premium-social li a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: all 0.25s ease;
}

.premium-social li a:hover {
  background: #f59e0b;
  color: #fff;
  transform: translateY(-2px);
}

.premium-social li a i {
  color: inherit;
}

.premium-header {
  padding: 18px 0;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.08), transparent 28%),
    #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.premium-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.premium-logo {
  flex: 0 0 220px;
}

.premium-logo img {
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.premium-search {
  flex: 1;
}

.premium-search form {
  width: 100%;
}

.premium-search-box {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #f8fafc;
  overflow: hidden;
  transition: all 0.25s ease;
}

.premium-search-box:focus-within {
  background: #fff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}

.premium-search-box > i {
  margin-left: 20px;
  color: #64748b;
  font-size: 16px;
}

.premium-search-box input {
  flex: 1;
  height: 54px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 16px;
  color: #0f172a;
  font-size: 14px;
}

.premium-search-box button {
  height: 46px;
  margin-right: 4px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.premium-search-box button:hover {
  background: linear-gradient(135deg, #1e3a8a, #172554);
}

.premium-header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-action {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  transition: all 0.25s ease;
}

.premium-action:hover {
  color: #0f172a;
  border-color: rgba(59,130,246,0.32);
  box-shadow: 0 12px 34px rgba(15,23,42,0.10);
  transform: translateY(-2px);
}

.action-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(30,58,138,0.10);
  color: #1e3a8a;
  font-size: 16px;
}

.cart-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
}

.action-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.action-text small {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.action-text strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.premium-nav {
  background: #172554;
  box-shadow: 0 8px 26px rgba(15,23,42,0.16);
}

.premium-nav .container {
  position: relative;
}

.premium-menu-container,
.premium-nav .menu-container {
  background: transparent;
}

.premium-nav .menu > ul > li > a {
  position: relative;
  padding: 18px 17px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.premium-nav .menu > ul > li > a i {
  margin-right: 6px;
  color: #f59e0b;
}

.premium-nav .menu > ul > li:hover {
  background: transparent;
}

.premium-nav .menu > ul > li > a:hover,
.premium-nav .menu > ul > li:hover > a {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.premium-nav .menu > ul > li > a:after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: #f59e0b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.premium-nav .menu > ul > li:hover > a:after {
  transform: scaleX(1);
}

.premium-nav .menu > ul > li > ul {
  top: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 0 0 20px 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15,23,42,0.18);
}

.premium-nav .menu > ul > li > ul > li a {
  border-bottom: 1px solid #eef2f7;
  color: #334155;
  font-weight: 700;
}

.premium-nav .menu > ul > li > ul > li a:hover {
  color: #1e3a8a;
}

@media only screen and (max-width: 991px) {
  .premium-topbar-inner,
  .premium-header-inner {
    flex-wrap: wrap;
  }

  .premium-logo {
    flex: 0 0 180px;
  }

  .premium-search {
    order: 3;
    flex: 0 0 100%;
  }

  .hide-small {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .premium-topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .premium-topbar-left,
  .premium-topbar-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .premium-header-inner {
    justify-content: center;
  }

  .premium-logo {
    flex: 0 0 170px;
    text-align: center;
  }

  .premium-header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .premium-action {
    flex: 1 1 140px;
  }

  .premium-search-box {
    border-radius: 18px;
  }

  .premium-search-box button {
    padding: 0 16px;
  }

  .premium-nav .menu-mobile {
    display: block;
    color: #fff;
    background: #172554;
  }

  .premium-nav .menu > ul > li > a {
    padding: 15px 18px;
  }
}

/* =========================================================
   Premium Footer + Newsletter Upgrade
   Paste this at the end of complete-professional-style.css
========================================================= */

.premium-newsletter {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.18), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(59, 130, 246, 0.22), transparent 30%),
    linear-gradient(135deg, #0f172a, #172554);
  overflow: hidden;
}

.premium-newsletter:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.55;
}

.premium-newsletter-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.22);
}

.premium-newsletter-content {
  flex: 1;
  color: #fff;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245,158,11,0.18);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.premium-newsletter-content h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.premium-newsletter-content p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.75;
}

.premium-newsletter-form {
  flex: 0 0 470px;
}

.premium-subscribe-box {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 5px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.20);
}

.premium-subscribe-box > i {
  margin-left: 18px;
  color: #64748b;
  font-size: 16px;
}

.premium-subscribe-box input {
  flex: 1;
  height: 48px;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: #0f172a;
  font-size: 14px;
}

.premium-subscribe-box button {
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.premium-subscribe-box button:hover {
  background: linear-gradient(135deg, #1e3a8a, #172554);
}

.newsletter-alert {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

.newsletter-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.newsletter-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.premium-footer-main {
  position: relative;
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at bottom right, rgba(59,130,246,0.13), transparent 30%),
    #0b1120;
  color: rgba(255,255,255,0.78);
}

.premium-footer-widget {
  margin-bottom: 30px;
}

.premium-footer-widget h3 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.premium-footer-widget h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.premium-footer-widget p {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  line-height: 1.8;
}

.footer-social-modern {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.footer-social-modern a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: all 0.25s ease;
}

.footer-social-modern a:hover {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  transform: translateY(-3px);
}

.premium-footer-links {
  margin: 0;
  padding: 0;
}

.premium-footer-links li {
  list-style: none;
  margin-bottom: 12px;
}

.premium-footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.premium-footer-links li a i {
  color: #f59e0b;
}

.premium-footer-links li a:hover {
  color: #fff;
  transform: translateX(4px);
}

.premium-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.premium-contact-item span {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(245,158,11,0.14);
  color: #fbbf24;
}

.premium-contact-item p {
  margin: 0;
  color: rgba(255,255,255,0.74);
}

.premium-contact-item a {
  color: rgba(255,255,255,0.74);
}

.premium-contact-item a:hover {
  color: #fbbf24;
}

.premium-footer-bottom {
  padding: 18px 0;
  background: #020617;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

.premium-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-payment-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fbbf24;
  font-weight: 800;
}

.premium-scrollup {
  right: 22px;
  bottom: 22px;
}

.premium-scrollup i {
  width: 52px;
  height: 52px;
  line-height: 44px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.55);
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  box-shadow: 0 14px 32px rgba(245,158,11,0.36);
  opacity: 1;
  transition: all 0.25s ease;
}

.premium-scrollup i:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #1e3a8a, #172554);
}

@media only screen and (max-width: 991px) {
  .premium-newsletter-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .premium-newsletter-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .premium-newsletter-form {
    flex: 0 0 auto;
  }

  .premium-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .premium-newsletter {
    padding: 55px 0;
  }

  .premium-newsletter-card {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .premium-newsletter-content h2 {
    font-size: 28px;
  }

  .premium-subscribe-box {
    flex-direction: column;
    border-radius: 18px;
    padding: 14px;
  }

  .premium-subscribe-box > i {
    display: none;
  }

  .premium-subscribe-box input,
  .premium-subscribe-box button {
    width: 100%;
  }

  .premium-subscribe-box input {
    text-align: center;
  }

  .premium-footer-main {
    padding: 52px 0 24px;
  }
}

/* =========================================================
   Fresh Complete Index Page Design
   Paste this at the end of complete-professional-style.css
========================================================= */

:root {
  --fresh-primary: #1e3a8a;
  --fresh-dark: #0f172a;
  --fresh-blue: #3b82f6;
  --fresh-gold: #f59e0b;
  --fresh-orange: #f97316;
  --fresh-red: #ef4444;
  --fresh-bg: #f8fafc;
  --fresh-border: #e2e8f0;
  --fresh-text: #0f172a;
  --fresh-muted: #64748b;
}

/* Slider */
.fresh-hero-slider,
.fresh-hero-slider .carousel-inner,
.fresh-hero-slider .carousel-inner .item {
  height: 580px;
}

.fresh-hero-slider .item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fresh-slider-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(59,130,246,.28), transparent 32%),
    linear-gradient(90deg, rgba(15,23,42,.92), rgba(15,23,42,.67), rgba(15,23,42,.22)) !important;
  opacity: 1 !important;
  z-index: 1;
}

.fresh-hero-slider .container,
.fresh-hero-slider .row {
  height: 100%;
  position: relative;
  z-index: 2;
}

.fresh-slide-text {
  top: 50%;
  max-width: 650px;
  z-index: 3;
  transform: translateY(-50%);
}

.fresh-slide-text.slide_style_center {
  transform: translate(-50%, -50%);
}

.fresh-slide-text h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.2px;
  text-shadow: 0 16px 40px rgba(0,0,0,.30);
}

.fresh-slide-text p {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.75;
}

.fresh-slide-text.slide_style_center p,
.fresh-slide-text.slide_style_right p {
  margin-left: auto;
}

.fresh-hero-label {
  display: inline-block !important;
  margin-bottom: 16px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: #fbbf24;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.fresh-hero-btn,
.fresh-hero-slider .btn.fresh-hero-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 15px 27px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--fresh-gold), var(--fresh-orange)) !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(245,158,11,.34);
  transition: all .28s ease;
}

.fresh-hero-btn:hover {
  color: #fff !important;
  transform: translateY(-3px);
}

.fresh-slider-control {
  width: 54px;
  height: 54px;
  top: 50%;
  margin: 0 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255,255,255,.16) !important;
  opacity: 1;
  text-shadow: none;
  z-index: 10;
}

.fresh-slider-control span.fa {
  width: 54px;
  height: 54px;
  line-height: 54px;
  font-size: 31px;
}

.fresh-slider-indicators {
  z-index: 12;
}

.fresh-slider-indicators li {
  width: 11px;
  height: 11px;
  margin: 0 5px;
  border: 0;
  background: rgba(255,255,255,.50);
}

.fresh-slider-indicators li.active {
  width: 30px;
  height: 11px;
  border-radius: 999px;
  background: var(--fresh-gold);
}

/* Trust */
.fresh-trust-section {
  position: relative;
  z-index: 4;
  margin-top: -45px;
  padding-bottom: 45px;
}

.fresh-trust-card {
  min-height: 112px;
  margin-bottom: 18px;
  padding: 22px 18px;
  border: 1px solid var(--fresh-border);
  border-radius: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 50px rgba(15,23,42,.12);
  transition: all .28s ease;
}

.fresh-trust-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(15,23,42,.16);
}

.fresh-trust-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--fresh-primary), var(--fresh-blue));
  color: #fff;
  font-size: 20px;
}

.fresh-trust-card h4 {
  margin: 0 0 5px;
  color: var(--fresh-text);
  font-size: 15px;
  font-weight: 900;
}

.fresh-trust-card p {
  margin: 0;
  color: var(--fresh-muted);
  font-size: 13px;
}

/* Section Heading */
.fresh-section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.fresh-section-heading span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(59,130,246,.10);
  color: var(--fresh-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fresh-section-heading h2 {
  margin: 0 0 12px;
  color: var(--fresh-text);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.8px;
}

.fresh-section-heading p {
  margin: 0;
  color: var(--fresh-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Services */
.fresh-service-section {
  padding: 78px 0 50px;
  background: #fff;
}

.fresh-service-card {
  min-height: 285px;
  margin-bottom: 30px;
  padding: 34px 25px;
  border: 1px solid var(--fresh-border);
  border-radius: 24px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 42px rgba(15,23,42,.08);
  transition: all .28s ease;
}

.fresh-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 68px rgba(15,23,42,.14);
}

.fresh-service-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(30,58,138,.10), rgba(245,158,11,.14));
}

.fresh-service-icon img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

.fresh-service-card h3 {
  margin: 0 0 12px;
  color: var(--fresh-text);
  font-size: 20px;
  font-weight: 900;
}

.fresh-service-card p {
  color: var(--fresh-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Products */
.fresh-product-section {
  padding: 82px 0;
  background: #fff;
}

.fresh-bg-soft {
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.08), transparent 32%),
    #f8fafc;
}

.fresh-product-card {
  border: 1px solid var(--fresh-border) !important;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 44px rgba(15,23,42,.08);
  transition: all .28s ease;
}

.fresh-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 78px rgba(15,23,42,.15);
}

.fresh-product-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.fresh-product-image {
  position: relative;
  display: block;
  width: 100%;
  height: 285px;
  background-size: cover;
  background-position: center;
  transition: transform .45s ease;
}

.fresh-product-card:hover .fresh-product-image {
  transform: scale(1.06);
}

.fresh-product-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,.48);
  opacity: 0;
  transition: opacity .28s ease;
}

.fresh-product-card:hover .fresh-product-hover {
  opacity: 1;
}

.fresh-product-hover span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--fresh-primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fresh-badge {
  position: absolute;
  z-index: 5;
  top: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(15,23,42,.18);
}

.fresh-badge-main {
  left: 14px;
  background: linear-gradient(135deg, var(--fresh-primary), var(--fresh-blue));
}

.fresh-badge-sale {
  right: 14px;
  background: linear-gradient(135deg, var(--fresh-red), var(--fresh-orange));
}

.fresh-badge-stock {
  left: 14px;
  top: 52px;
  background: #334155;
}

.fresh-product-content {
  padding: 20px 18px 18px;
}

.fresh-product-content h3 {
  min-height: 48px;
  margin: 0 0 12px;
  text-align: center;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 900;
}

.fresh-product-content h3 a {
  color: var(--fresh-text);
}

.fresh-product-content h3 a:hover {
  color: var(--fresh-primary);
}

.fresh-rating {
  min-height: 22px;
  margin-bottom: 10px;
  text-align: center;
  color: var(--fresh-gold);
  font-size: 14px;
}

.fresh-rating-empty {
  color: #94a3b8;
  font-size: 12px;
}

.fresh-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.fresh-price strong {
  color: var(--fresh-primary);
  font-size: 22px;
  font-weight: 950;
}

.fresh-price del {
  color: #94a3b8;
  font-size: 14px;
}

.fresh-cart-btn,
.fresh-out-stock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.fresh-cart-btn {
  background: linear-gradient(135deg, var(--fresh-gold), var(--fresh-orange));
  color: #fff;
  box-shadow: 0 12px 28px rgba(245,158,11,.26);
  transition: all .28s ease;
}

.fresh-cart-btn:hover {
  background: linear-gradient(135deg, var(--fresh-primary), var(--fresh-dark));
  color: #fff;
  transform: translateY(-2px);
}

.fresh-out-stock {
  background: #f1f5f9;
  color: #64748b;
}

/* Owl Controls */
.product .owl-controls {
  top: -72px;
}

.product .owl-controls .owl-prev,
.product .owl-controls .owl-next {
  width: 42px;
  height: 42px;
  padding: 0 !important;
  line-height: 42px;
  border-radius: 50%;
  background: var(--fresh-primary) !important;
}

.product .owl-controls .owl-prev:hover,
.product .owl-controls .owl-next:hover {
  background: var(--fresh-gold) !important;
}

@media only screen and (max-width: 991px) {
  .fresh-hero-slider,
  .fresh-hero-slider .carousel-inner,
  .fresh-hero-slider .carousel-inner .item {
    height: 520px;
  }

  .fresh-slide-text h1 {
    font-size: 42px;
  }

  .fresh-slide-text p {
    font-size: 16px;
  }

  .fresh-trust-section {
    margin-top: 0;
    padding-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .fresh-hero-slider,
  .fresh-hero-slider .carousel-inner,
  .fresh-hero-slider .carousel-inner .item {
    height: 480px;
  }

  .fresh-slide-text,
  .fresh-slide-text.slide_style_left,
  .fresh-slide-text.slide_style_right,
  .fresh-slide-text.slide_style_center {
    left: 20px;
    right: 20px;
    max-width: none;
    text-align: center;
    transform: translateY(-50%);
  }

  .fresh-slide-text.slide_style_center {
    transform: translateY(-50%);
  }

  .fresh-slide-text h1 {
    font-size: 32px;
  }

  .fresh-slide-text p {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .fresh-slider-control {
    display: none;
  }

  .fresh-section-heading h2 {
    font-size: 30px;
  }

  .fresh-service-section,
  .fresh-product-section {
    padding: 55px 0;
  }

  .fresh-product-image {
    height: 250px;
  }
}

/* =========================================================
   Fresh Professional Contact Page Design
   Paste this at the end of fresh-upgraded-complete.css
========================================================= */

.contact-banner {
  position: relative;
  min-height: 280px;
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.76));
  z-index: 1;
}

.contact-banner .inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-banner h1 {
  margin: 0;
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.contact-banner p {
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.contact-page {
  padding: 75px 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.contact-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.contact-heading span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-heading h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.contact-heading p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.contact-layout {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-form-card,
.contact-info-card,
.contact-map-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.contact-form-card {
  padding: 34px;
  min-height: 100%;
}

.contact-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-title-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.24);
}

.contact-card-title h3 {
  margin: 0 0 5px;
  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
}

.contact-card-title p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.contact-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  margin-bottom: 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-alert-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.contact-alert-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.contact-input-group {
  margin-bottom: 18px;
}

.contact-input-group label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.contact-input {
  position: relative;
}

.contact-input i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 15px;
  z-index: 2;
}

.contact-textarea i {
  top: 20px;
  transform: none;
}

.contact-input .form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px 12px 44px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  box-shadow: none;
  transition: all 0.25s ease;
}

.contact-input textarea.form-control {
  min-height: 168px;
  resize: vertical;
  padding-top: 14px;
}

.contact-input .form-control:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 190px;
  height: 52px;
  float: right;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.30);
  transition: all 0.25s ease;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  transform: translateY(-2px);
  color: #fff;
}

.contact-info-card {
  padding: 30px;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 32%),
    #fff;
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.contact-info-header span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 22px;
}

.contact-info-header h3 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e8f0;
}

.contact-info-item:last-child {
  border-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(30, 58, 138, 0.10);
  color: #1e3a8a;
  font-size: 17px;
}

.contact-info-item h4 {
  margin: 0 0 5px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.contact-info-item a:hover {
  color: #f59e0b;
}

.contact-map-section {
  margin-top: 70px;
}

.map-heading {
  margin-bottom: 32px;
}

.contact-map-card {
  padding: 12px;
  overflow: hidden;
}

.contact-map-card iframe {
  width: 100% !important;
  min-height: 420px;
  display: block;
  border: 0 !important;
  border-radius: 18px;
}

@media only screen and (max-width: 991px) {
  .contact-info-card {
    margin-top: 30px;
  }

  .contact-layout {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .contact-banner {
    min-height: 230px;
    padding: 55px 0;
  }

  .contact-banner h1 {
    font-size: 32px;
  }

  .contact-page {
    padding: 50px 0;
  }

  .contact-heading h2 {
    font-size: 30px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .contact-card-title {
    align-items: flex-start;
  }

  .contact-submit-btn {
    width: 100%;
    float: none;
  }

  .contact-map-card iframe {
    min-height: 320px;
  }
}
/* =========================================================
   Fresh Professional About Page Design
   Paste this at the end of fresh-upgraded-complete.css
========================================================= */

.about-banner {
  position: relative;
  min-height: 280px;
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.76));
  z-index: 1;
}

.about-banner .inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-banner h1 {
  margin: 0;
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.about-banner p {
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.about-page {
  padding: 75px 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.about-intro-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-intro-heading span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-intro-heading h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.about-intro-heading p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.about-main-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.about-content-card,
.about-feature-card,
.about-stat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.about-content-card {
  padding: 36px;
  min-height: 100%;
}

.about-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
}

.about-title-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.24);
}

.about-card-title h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 25px;
  font-weight: 900;
}

.about-card-title p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.about-content-text {
  color: #334155;
  font-size: 15px;
  line-height: 1.9;
}

.about-content-text p {
  margin-bottom: 18px;
}

.about-content-text h1,
.about-content-text h2,
.about-content-text h3,
.about-content-text h4 {
  color: #0f172a;
  font-weight: 900;
  margin-top: 24px;
  margin-bottom: 12px;
}

.about-content-text ul,
.about-content-text ol {
  margin-left: 20px;
  margin-bottom: 18px;
}

.about-content-text li {
  margin-bottom: 8px;
}

.about-feature-card {
  min-height: 100%;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 32%),
    #fff;
}

.about-feature-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.28);
  margin-bottom: 22px;
}

.about-feature-card h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 26px;
  font-weight: 900;
}

.about-feature-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-feature-list {
  display: grid;
  gap: 12px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.about-feature-item i {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 12px;
}

.about-stats-row {
  margin-top: 34px;
}

.about-stat-card {
  min-height: 150px;
  margin-bottom: 24px;
  padding: 26px 18px;
  text-align: center;
  transition: all 0.25s ease;
}

.about-stat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 78px rgba(15, 23, 42, 0.15);
}

.about-stat-card i {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  display: inline-grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 22px;
}

.about-stat-card h3 {
  margin: 0 0 5px;
  color: #0f172a;
  font-size: 19px;
  font-weight: 900;
}

.about-stat-card p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

@media only screen and (max-width: 991px) {
  .about-main-row {
    display: block;
  }

  .about-feature-card {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-banner {
    min-height: 230px;
    padding: 55px 0;
  }

  .about-banner h1 {
    font-size: 32px;
  }

  .about-page {
    padding: 50px 0;
  }

  .about-intro-heading h2 {
    font-size: 30px;
  }

  .about-content-card,
  .about-feature-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .about-card-title {
    align-items: flex-start;
  }
}

/* =========================================================
   Fresh Professional FAQ Page Design
   Paste this at the end of fresh-upgraded-complete.css
========================================================= */

.faq-banner {
  position: relative;
  min-height: 280px;
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.76));
  z-index: 1;
}

.faq-banner .inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.faq-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.faq-banner h1 {
  margin: 0;
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.faq-banner p {
  max-width: 680px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.faq-page {
  padding: 75px 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.faq-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.faq-heading span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.faq-heading h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.faq-heading p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.faq-center-col {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.col-md-offset-1-5 {
  margin-left: 12.5%;
}

.faq-card {
  padding: 26px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.faq-accordion {
  margin-bottom: 0;
}

.faq-panel {
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  overflow: hidden;
  margin-bottom: 14px !important;
  background: #fff;
}

.faq-panel:last-child {
  margin-bottom: 0 !important;
}

.faq-panel-heading {
  position: relative;
  padding: 0 !important;
  border: 0 !important;
  background: #fff !important;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-panel-heading:hover {
  background: #f8fafc !important;
}

.faq-panel-heading .panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  margin: 0;
  padding: 18px 20px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}

.faq-question-number {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(30, 58, 138, 0.22);
}

.faq-question-text {
  flex: 1;
}

.faq-toggle-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1f5f9;
  color: #1e3a8a;
  transition: all 0.25s ease;
}

.faq-panel-heading:not(.collapsed) .faq-toggle-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  transform: rotate(45deg);
}

.faq-panel-body {
  padding: 0 22px 22px 72px !important;
  border-top: 0 !important;
  background: #fff;
}

.faq-answer-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-answer-content {
  color: #334155;
  font-size: 15px;
  line-height: 1.85;
}

.faq-answer-content p {
  margin-bottom: 14px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .col-md-offset-1-5 {
    margin-left: 0;
  }

  .faq-center-col {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .faq-banner {
    min-height: 230px;
    padding: 55px 0;
  }

  .faq-banner h1 {
    font-size: 32px;
  }

  .faq-page {
    padding: 50px 0;
  }

  .faq-heading h2 {
    font-size: 30px;
  }

  .faq-card {
    padding: 16px;
    border-radius: 20px;
  }

  .faq-panel-heading .panel-title {
    align-items: flex-start;
    min-height: auto;
    padding: 16px;
    font-size: 15px;
  }

  .faq-question-number {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .faq-toggle-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .faq-panel-body {
    padding: 0 16px 18px 16px !important;
  }
}

/* =========================================================
   Fresh Professional Customer Dashboard Design
   Paste this at the end of fresh-upgraded-complete.css
========================================================= */

.customer-dashboard-page {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
  padding: 38px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(245, 158, 11, 0.18), transparent 30%),
    linear-gradient(135deg, #0f172a, #172554);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.dashboard-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dashboard-hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.dashboard-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  line-height: 1.75;
}

.dashboard-hero-icon {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.10);
  color: #fbbf24;
  font-size: 46px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.dashboard-sidebar-wrap {
  margin-bottom: 26px;
}

.dashboard-sidebar-wrap .user-sidebar {
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}

.dashboard-sidebar-wrap .user-sidebar ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

.dashboard-sidebar-wrap .user-sidebar ul li {
  display: inline-block;
  margin: 5px;
  border-bottom: 0;
  list-style: none;
}

.dashboard-sidebar-wrap .user-sidebar ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-weight: 800;
  line-height: 1.3;
  transition: all 0.25s ease;
}

.dashboard-sidebar-wrap .user-sidebar ul li a:hover,
.dashboard-sidebar-wrap .user-sidebar ul li.active a {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  box-shadow: 0 12px 28px rgba(30, 58, 138, 0.22);
  transform: translateY(-2px);
}

.dashboard-content-card {
  padding: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.dashboard-welcome-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 32%),
    #f8fafc;
  border: 1px solid #e2e8f0;
  margin-bottom: 28px;
}

.dashboard-avatar {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 38px;
  box-shadow: 0 14px 34px rgba(30, 58, 138, 0.24);
}

.dashboard-welcome-text h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 28px;
  font-weight: 900;
  text-align: left;
}

.dashboard-welcome-text p {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 15px;
}

.dashboard-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.dashboard-email i {
  color: #f59e0b;
}

.dashboard-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.dashboard-quick-card {
  display: block;
  min-height: 185px;
  padding: 24px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  color: #0f172a;
  text-align: center;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
}

.dashboard-quick-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.14);
  color: #0f172a;
  border-color: rgba(59, 130, 246, 0.34);
}

.quick-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.24);
}

.dashboard-quick-card h4 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
}

.dashboard-quick-card p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
}

.dashboard-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dashboard-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.dashboard-info-item i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(30, 58, 138, 0.10);
  color: #1e3a8a;
  font-size: 19px;
}

.dashboard-info-item h4 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.dashboard-info-item p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
}

@media only screen and (max-width: 991px) {
  .dashboard-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-info-strip {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .customer-dashboard-page {
    padding: 45px 0;
  }

  .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .dashboard-hero h1 {
    font-size: 30px;
  }

  .dashboard-hero-icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
    font-size: 34px;
  }

  .dashboard-content-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .dashboard-welcome-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 16px;
  }

  .dashboard-welcome-text h3 {
    text-align: center;
    font-size: 24px;
  }

  .dashboard-quick-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-info-item {
    align-items: flex-start;
  }

  .dashboard-sidebar-wrap .user-sidebar ul li {
    display: block;
    margin: 7px 0;
  }

  .dashboard-sidebar-wrap .user-sidebar ul li a {
    width: 100%;
  }
}

/* =========================================================
   Fresh Professional Customer Profile Update Page
   Paste this at the end of fresh-upgraded-complete.css
========================================================= */

.customer-profile-page {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.account-page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
  padding: 38px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(245, 158, 11, 0.18), transparent 30%),
    linear-gradient(135deg, #0f172a, #172554);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

.account-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.account-page-hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.account-page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  line-height: 1.75;
}

.account-hero-icon {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.10);
  color: #fbbf24;
  font-size: 46px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.account-sidebar-wrap {
  margin-bottom: 26px;
}

.account-sidebar-wrap .user-sidebar {
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}

.account-sidebar-wrap .user-sidebar ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

.account-sidebar-wrap .user-sidebar ul li {
  display: inline-block;
  margin: 5px;
  border-bottom: 0;
  list-style: none;
}

.account-sidebar-wrap .user-sidebar ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-weight: 800;
  line-height: 1.3;
  transition: all 0.25s ease;
}

.account-sidebar-wrap .user-sidebar ul li a:hover,
.account-sidebar-wrap .user-sidebar ul li.active a {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  box-shadow: 0 12px 28px rgba(30, 58, 138, 0.22);
  transform: translateY(-2px);
}

.account-form-card {
  padding: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.account-form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
}

.account-form-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.24);
}

.account-form-header h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 26px;
  font-weight: 900;
}

.account-form-header p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.account-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  margin-bottom: 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.account-alert-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.account-alert-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.account-input-group {
  margin-bottom: 18px;
}

.account-input-group label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.account-input-group label span {
  color: #ef4444;
}

.account-input {
  position: relative;
}

.account-input i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 15px;
  z-index: 2;
}

.account-textarea i {
  top: 22px;
  transform: none;
}

.account-input .form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px 12px 44px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  box-shadow: none;
  transition: all 0.25s ease;
}

.account-input textarea.form-control {
  min-height: 96px;
  resize: vertical;
  padding-top: 14px;
}

.account-input select.form-control {
  appearance: auto;
}

.account-input .form-control:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.account-input-disabled .form-control,
.account-input .form-control:disabled {
  background: #e2e8f0;
  color: #64748b;
  cursor: not-allowed;
}

.account-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.account-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 180px;
  height: 52px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.30);
  transition: all 0.25s ease;
}

.account-submit-btn:hover {
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  transform: translateY(-2px);
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .customer-profile-page {
    padding: 45px 0;
  }

  .account-page-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .account-page-hero h1 {
    font-size: 30px;
  }

  .account-hero-icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
    font-size: 34px;
  }

  .account-form-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .account-form-header {
    align-items: flex-start;
  }

  .account-form-header h3 {
    font-size: 23px;
  }

  .account-form-actions {
    justify-content: stretch;
  }

  .account-submit-btn {
    width: 100%;
  }

  .account-sidebar-wrap .user-sidebar ul li {
    display: block;
    margin: 7px 0;
  }

  .account-sidebar-wrap .user-sidebar ul li a {
    width: 100%;
  }
}
/* =========================================================
   Fresh Billing & Shipping Address Page Design
   Paste this at the end of fresh-upgraded-complete.css
========================================================= */

.customer-address-page {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.address-hero {
  margin-bottom: 32px;
}

.address-form-wrapper {
  padding: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.address-card-row {
  display: flex;
  flex-wrap: wrap;
}

.address-card {
  height: 100%;
  padding: 30px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 32%),
    #ffffff;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

.shipping-card {
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 32%),
    #ffffff;
}

.address-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.address-card-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 23px;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.24);
}

.address-card-icon.shipping-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.26);
}

.address-card-header h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
}

.address-card-header p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.address-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.address-submit-btn {
  min-width: 220px;
}

/* Reuse account input styles, plus fallback */
.account-input-group {
  margin-bottom: 18px;
}

.account-input-group label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.account-input {
  position: relative;
}

.account-input i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 15px;
  z-index: 2;
}

.account-textarea i {
  top: 22px;
  transform: none;
}

.account-input .form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px 12px 44px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  box-shadow: none;
  transition: all 0.25s ease;
}

.account-input textarea.form-control {
  min-height: 100px;
  resize: vertical;
  padding-top: 14px;
}

.account-input select.form-control {
  appearance: auto;
}

.account-input .form-control:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.account-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  margin-bottom: 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.account-alert-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.account-alert-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.account-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  border: 0;
  border-radius: 14px;
  padding: 0 26px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.30);
  transition: all 0.25s ease;
}

.account-submit-btn:hover {
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  transform: translateY(-2px);
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .address-card {
    height: auto;
    margin-bottom: 24px;
  }

  .address-card-row {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .customer-address-page {
    padding: 45px 0;
  }

  .address-form-wrapper {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .address-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .address-card-header {
    align-items: flex-start;
  }

  .address-card-header h3 {
    font-size: 22px;
  }

  .address-submit-wrap {
    display: block;
  }

  .address-submit-btn,
  .account-submit-btn {
    width: 100%;
  }
}
/* =========================================================
   Fresh Customer Password Update Page Design
   Paste this at the end of fresh-upgraded-complete.css
========================================================= */

.customer-password-page {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.password-form-outer {
  display: flex;
  justify-content: center;
}

.password-card {
  width: 100%;
  max-width: 520px;
  padding: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.password-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
}

.password-card-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.24);
}

.password-card-header h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 26px;
  font-weight: 900;
}

.password-card-header p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.password-security-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 22px;
  padding: 13px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.password-security-note i {
  margin-top: 2px;
  color: #3b82f6;
}

.password-submit-btn {
  width: 100%;
}

/* fallback shared account styles */
.account-page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
  padding: 38px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(245, 158, 11, 0.18), transparent 30%),
    linear-gradient(135deg, #0f172a, #172554);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

.account-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.account-page-hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.account-page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  line-height: 1.75;
}

.account-hero-icon {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.10);
  color: #fbbf24;
  font-size: 46px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.account-sidebar-wrap {
  margin-bottom: 26px;
}

.account-sidebar-wrap .user-sidebar {
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}

.account-sidebar-wrap .user-sidebar ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

.account-sidebar-wrap .user-sidebar ul li {
  display: inline-block;
  margin: 5px;
  border-bottom: 0;
  list-style: none;
}

.account-sidebar-wrap .user-sidebar ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-weight: 800;
  line-height: 1.3;
  transition: all 0.25s ease;
}

.account-sidebar-wrap .user-sidebar ul li a:hover,
.account-sidebar-wrap .user-sidebar ul li.active a {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  box-shadow: 0 12px 28px rgba(30, 58, 138, 0.22);
  transform: translateY(-2px);
}

.account-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  margin-bottom: 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.account-alert-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.account-alert-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.account-input-group {
  margin-bottom: 18px;
}

.account-input-group label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.account-input-group label span {
  color: #ef4444;
}

.account-input {
  position: relative;
}

.account-input i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 15px;
  z-index: 2;
}

.account-input .form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px 12px 44px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  box-shadow: none;
  transition: all 0.25s ease;
}

.account-input .form-control:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.account-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  border: 0;
  border-radius: 14px;
  padding: 0 26px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.30);
  transition: all 0.25s ease;
}

.account-submit-btn:hover {
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  transform: translateY(-2px);
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .customer-password-page {
    padding: 45px 0;
  }

  .account-page-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .account-page-hero h1 {
    font-size: 30px;
  }

  .account-hero-icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
    font-size: 34px;
  }

  .password-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .password-card-header {
    align-items: flex-start;
  }

  .password-card-header h3 {
    font-size: 23px;
  }

  .account-sidebar-wrap .user-sidebar ul li {
    display: block;
    margin: 7px 0;
  }

  .account-sidebar-wrap .user-sidebar ul li a {
    width: 100%;
  }
}
/* =========================================================
   Fresh Professional Cart Page Design
   Paste this at the end of fresh-upgraded-complete.css
========================================================= */

.cart-banner {
  position: relative;
  min-height: 280px;
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cart-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.76));
  z-index: 1;
}

.cart-banner .page-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cart-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cart-banner h1 {
  margin: 0;
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.cart-banner p {
  max-width: 650px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.cart-page {
  padding: 75px 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.empty-cart-card,
.cart-layout-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.empty-cart-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 50px 28px;
  text-align: center;
}

.empty-cart-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 42px;
  box-shadow: 0 16px 38px rgba(30, 58, 138, 0.26);
}

.empty-cart-card h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 30px;
  font-weight: 900;
}

.empty-cart-card p {
  margin: 0 auto 26px;
  max-width: 430px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.cart-layout-card {
  padding: 28px;
  overflow: hidden;
}

.cart-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.cart-page-header span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.cart-page-header h2 {
  margin: 0;
  color: #0f172a;
  font-size: 30px;
  font-weight: 900;
}

.cart-header-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.28);
}

.cart-modern-table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.cart-modern-table thead tr th {
  border: 0 !important;
  background: #0f172a;
  color: #fff;
  padding: 15px 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-modern-table thead tr th:first-child {
  border-radius: 14px 0 0 14px;
}

.cart-modern-table thead tr th:last-child {
  border-radius: 0 14px 14px 0;
}

.cart-modern-table tbody tr {
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.cart-modern-table tbody tr td {
  vertical-align: middle !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 16px 14px !important;
  color: #334155;
}

.cart-modern-table tbody tr td:first-child {
  border-left: 1px solid #e2e8f0;
  border-radius: 16px 0 0 16px;
}

.cart-modern-table tbody tr td:last-child {
  border-right: 1px solid #e2e8f0;
  border-radius: 0 16px 16px 0;
}

.cart-number {
  color: #1e3a8a !important;
  font-weight: 900;
}

.cart-product-img img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.10);
}

.cart-product-name {
  color: #0f172a;
  font-weight: 900;
  min-width: 170px;
}

.cart-pill {
  display: inline-block;
  padding: 6px 11px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.cart-price,
.cart-row-total {
  color: #1e3a8a;
  font-weight: 900;
}

.cart-qty-input {
  width: 76px;
  height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  text-align: center;
  font-weight: 900;
  outline: none;
  transition: all 0.25s ease;
}

.cart-qty-input:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.cart-trash-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #fef2f2;
  color: #ef4444;
  font-size: 17px;
}

.cart-trash-btn:hover {
  background: #ef4444;
  color: #fff;
  transform: translateY(-2px);
}

.cart-modern-table tfoot tr th {
  border: 0 !important;
  padding: 22px 14px !important;
  background: #f8fafc;
}

.cart-modern-table .total-text {
  border-radius: 16px 0 0 16px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  text-align: right;
}

.cart-modern-table .total-amount {
  color: #1e3a8a;
  font-size: 22px;
  font-weight: 900;
}

.cart-modern-table tfoot tr th:last-child {
  border-radius: 0 16px 16px 0;
}

.cart-action-bar {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
}

.cart-primary-btn,
.cart-secondary-btn,
.cart-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.cart-primary-btn {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.30);
}

.cart-secondary-btn {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  box-shadow: 0 14px 32px rgba(30, 58, 138, 0.24);
}

.cart-light-btn {
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.cart-primary-btn:hover,
.cart-secondary-btn:hover,
.cart-light-btn:hover {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
  transform: translateY(-2px);
}

@media only screen and (max-width: 991px) {
  .cart-modern-table {
    min-width: 960px;
  }
}

@media only screen and (max-width: 767px) {
  .cart-banner {
    min-height: 230px;
    padding: 55px 0;
  }

  .cart-banner h1 {
    font-size: 32px;
  }

  .cart-page {
    padding: 50px 0;
  }

  .cart-layout-card {
    padding: 18px;
    border-radius: 20px;
  }

  .cart-page-header {
    align-items: flex-start;
  }

  .cart-page-header h2 {
    font-size: 25px;
  }

  .cart-header-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 23px;
  }

  .cart-action-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cart-primary-btn,
  .cart-secondary-btn,
  .cart-light-btn {
    width: 100%;
  }

  .empty-cart-card {
    padding: 38px 20px;
    border-radius: 20px;
  }
}
/* =========================================================
   Fresh Professional Product Detail Page Design
   Paste this at the end of fresh-upgraded-complete.css
========================================================= */

.product-detail-page {
  padding: 60px 0 75px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.product-breadcrumb-card {
  margin-bottom: 24px;
  padding: 15px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.product-breadcrumb-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-breadcrumb-card ul li {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.product-breadcrumb-card ul li a {
  color: #1e3a8a;
  font-weight: 800;
}

.product-detail-card,
.product-detail-tabs-card {
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.product-detail-card {
  padding: 30px;
  margin-bottom: 34px;
}

.product-gallery-card {
  padding: 18px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.product-gallery-slider {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-gallery-slider li {
  height: 460px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.product-gallery-slider li a {
  position: absolute;
  inset: 0;
  display: block;
}

.product-gallery-pager {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.product-gallery-pager a {
  display: block;
}

.product-gallery-pager .prod-pager-thumb {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  background-size: cover;
  background-position: center;
  transition: all 0.25s ease;
}

.product-gallery-pager .prod-pager-thumb:hover {
  border-color: #f59e0b;
  transform: translateY(-2px);
}

.product-info-panel {
  padding: 8px 4px 8px 22px;
}

.product-status-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-status-badge.featured {
  background: #fef3c7;
  color: #92400e;
}

.product-status-badge.stock {
  background: #ecfdf5;
  color: #047857;
}

.product-status-badge.out {
  background: #fef2f2;
  color: #b91c1c;
}

.product-status-badge.views {
  background: #eff6ff;
  color: #1e3a8a;
}

.product-main-title h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.product-rating i {
  color: #f59e0b;
  font-size: 16px;
}

.review-count,
.rating-empty {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.product-short-description {
  margin-bottom: 22px;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.product-price-box {
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
}

.price-label {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-line strong {
  color: #1e3a8a;
  font-size: 34px;
  font-weight: 950;
}

.price-line del {
  color: #94a3b8;
  font-size: 18px;
}

.product-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.product-option label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-option .form-control,
.product-qty-input {
  width: 100% !important;
  height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 800;
  box-shadow: none;
}

.product-option .form-control:focus,
.product-qty-input:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.product-add-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.32);
  transition: all 0.25s ease;
}

.product-add-cart-btn:hover {
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  transform: translateY(-2px);
}

.product-add-cart-btn.disabled {
  background: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

.product-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 18px;
}

.product-trust-row div {
  padding: 12px 10px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.product-trust-row i {
  color: #f59e0b;
  margin-right: 4px;
}

.product-share {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.product-share span {
  display: block;
  margin-bottom: 10px;
  color: #334155;
  font-weight: 900;
}

.product-detail-tabs-card {
  padding: 26px;
}

.product-tabs {
  border-bottom: 1px solid #e2e8f0 !important;
  margin-bottom: 0;
}

.product-tabs > li > a {
  border: 0 !important;
  border-radius: 999px;
  margin-right: 8px;
  padding: 11px 18px;
  color: #334155;
  font-weight: 900;
  background: #f8fafc;
}

.product-tabs > li.active > a,
.product-tabs > li > a:hover {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6) !important;
  color: #fff !important;
}

.product-tab-content {
  padding: 26px 4px 4px;
  color: #334155;
  font-size: 15px;
  line-height: 1.85;
}

.product-tab-content .tab-pane {
  padding: 0;
}

.review-card {
  margin-bottom: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.review-card h4 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
}

.review-card p {
  color: #475569;
}

.product-review-form textarea {
  min-height: 110px;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  box-shadow: none;
}

.product-review-submit {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.review-warning {
  color: #ef4444;
  font-weight: 800;
}

.related-product-section {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 32%),
    #f8fafc !important;
}

.related-heading {
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .product-info-panel {
    padding: 28px 0 0;
  }

  .product-options-grid,
  .product-trust-row {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .product-detail-page {
    padding: 40px 0 55px;
  }

  .product-detail-card,
  .product-detail-tabs-card {
    padding: 18px;
    border-radius: 20px;
  }

  .product-gallery-card {
    padding: 12px;
    border-radius: 18px;
  }

  .product-gallery-slider li {
    height: 330px;
    border-radius: 16px;
  }

  .product-main-title h2 {
    font-size: 28px;
  }

  .price-line strong {
    font-size: 28px;
  }

  .product-tabs > li {
    float: none;
    margin-bottom: 8px;
  }

  .product-tabs > li > a {
    display: block;
    text-align: center;
  }
}
/* Fresh Professional Product Category Page Design */
.category-banner{position:relative;min-height:280px;padding:70px 0;background-size:cover;background-position:center;background-repeat:no-repeat}.category-banner-overlay{position:absolute;inset:0;background:radial-gradient(circle at 20% 20%,rgba(245,158,11,.2),transparent 34%),linear-gradient(135deg,rgba(15,23,42,.92),rgba(30,58,138,.76));z-index:1}.category-banner .inner{position:relative;z-index:2;text-align:center}.category-kicker{display:inline-block;margin-bottom:12px;padding:7px 14px;border-radius:999px;background:rgba(245,158,11,.18);color:#fbbf24;font-size:12px;font-weight:900;letter-spacing:1px;text-transform:uppercase}.category-banner h1{margin:0;color:#fff;font-size:44px;font-weight:900;letter-spacing:-.8px;text-transform:uppercase}.category-banner p{max-width:680px;margin:14px auto 0;color:rgba(255,255,255,.82);font-size:16px;line-height:1.7}.category-page{padding:75px 0;background:radial-gradient(circle at top left,rgba(59,130,246,.1),transparent 32%),linear-gradient(180deg,#f8fafc 0%,#eef2f7 100%)}.category-heading{max-width:760px;margin:0 auto 42px;text-align:center}.category-heading span{display:inline-block;margin-bottom:10px;padding:7px 15px;border-radius:999px;background:rgba(59,130,246,.1);color:#1e3a8a;font-size:12px;font-weight:900;letter-spacing:1px;text-transform:uppercase}.category-heading h2{margin:0 0 12px;color:#0f172a;font-size:38px;font-weight:900;letter-spacing:-.8px}.category-heading p{margin:0;color:#64748b;font-size:16px;line-height:1.7}.category-sidebar-card,.category-products-card{border:1px solid #e2e8f0;border-radius:24px;background:#fff;box-shadow:0 24px 70px rgba(15,23,42,.12)}.category-sidebar-card{padding:22px;position:sticky;top:20px}.category-sidebar-title{display:flex;align-items:center;gap:10px;margin-bottom:18px;padding-bottom:16px;border-bottom:1px solid #e2e8f0;color:#0f172a;font-size:18px;font-weight:900}.category-sidebar-title i{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:linear-gradient(135deg,#1e3a8a,#3b82f6);color:#fff}.category-sidebar-card ul{margin:0;padding-left:0;list-style:none}.category-sidebar-card li{margin-bottom:9px}.category-sidebar-card a{display:block;padding:10px 12px;border-radius:12px;color:#334155;font-weight:800;background:#f8fafc}.category-sidebar-card a:hover{background:linear-gradient(135deg,#1e3a8a,#3b82f6);color:#fff;transform:translateX(3px)}.category-products-card{padding:26px}.category-products-top{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:26px;padding-bottom:20px;border-bottom:1px solid #e2e8f0}.category-products-top h3{margin:0 0 6px;color:#0f172a;font-size:26px;font-weight:900}.category-products-top p{margin:0;color:#64748b;font-size:14px}.category-top-icon{width:58px;height:58px;flex:0 0 58px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(135deg,#f59e0b,#f97316);color:#fff;font-size:23px;box-shadow:0 12px 30px rgba(245,158,11,.26)}.category-product-grid.product{padding:0;background:transparent}.category-product-col{margin-bottom:28px}.category-product-card{height:100%;border:1px solid #e2e8f0!important;border-radius:24px;overflow:hidden;background:#fff;box-shadow:0 16px 45px rgba(15,23,42,.08);transition:all .28s ease}.category-product-card:hover{transform:translateY(-8px);box-shadow:0 28px 78px rgba(15,23,42,.15)}.category-product-thumb{position:relative;overflow:hidden;background:#f1f5f9}.category-product-thumb .photo{width:100%;height:260px;background-size:cover;background-position:center;transition:transform .45s ease}.category-product-card:hover .photo{transform:scale(1.06)}.category-product-overlay{position:absolute;inset:0;display:grid;place-items:center;background:rgba(15,23,42,.48);opacity:0;transition:opacity .28s ease}.category-product-card:hover .category-product-overlay{opacity:1}.category-product-overlay span{padding:10px 16px;border-radius:999px;background:#fff;color:#1e3a8a;font-size:13px;font-weight:900;text-transform:uppercase}.category-badge{position:absolute;z-index:5;top:14px;padding:7px 11px;border-radius:999px;color:#fff;font-size:11px;font-weight:900;text-transform:uppercase;box-shadow:0 8px 20px rgba(15,23,42,.18)}.category-badge.sale{right:14px;background:linear-gradient(135deg,#ef4444,#f97316)}.category-badge.stock{left:14px;background:#334155}.category-product-info{padding:20px 18px 18px!important;background:#fff!important}.category-product-info h3{min-height:48px;margin:0 0 12px;text-align:center;font-size:17px;line-height:1.45;font-weight:900}.category-product-info h3 a{color:#0f172a!important;font-size:16px!important;font-weight:900!important}.category-product-info h3 a:hover{color:#1e3a8a!important}.category-product-info h4{margin:0 0 12px;color:#1e3a8a!important;text-align:center;font-size:22px!important;font-weight:950}.category-product-info h4 del{color:#94a3b8;font-size:14px;margin-left:7px;font-weight:500}.category-rating{min-height:22px;margin:12px 0 16px;color:#f59e0b;text-align:center;font-size:14px}.category-rating i{color:#f59e0b}.category-rating-empty{color:#94a3b8;font-size:12px}.category-cart-btn,.category-out-stock,.category-empty-btn{display:flex!important;align-items:center;justify-content:center;gap:9px;width:100%;min-height:46px;padding:12px 14px!important;border-radius:15px;font-size:14px;font-weight:900;text-transform:uppercase}.category-cart-btn{background:linear-gradient(135deg,#f59e0b,#f97316)!important;color:#fff!important;box-shadow:0 12px 28px rgba(245,158,11,.26)}.category-cart-btn:hover,.category-empty-btn:hover{background:linear-gradient(135deg,#1e3a8a,#0f172a)!important;color:#fff!important;transform:translateY(-2px)}.category-out-stock{background:#f1f5f9;color:#64748b}.category-empty-state{padding:54px 24px;text-align:center}.category-empty-icon{width:86px;height:86px;margin:0 auto 20px;display:grid;place-items:center;border-radius:26px;background:linear-gradient(135deg,#1e3a8a,#3b82f6);color:#fff;font-size:38px;box-shadow:0 16px 38px rgba(30,58,138,.26)}.category-empty-state h3{margin:0 0 10px;color:#0f172a;font-size:26px;font-weight:900}.category-empty-state p{margin:0 auto 24px;max-width:420px;color:#64748b;font-size:15px;line-height:1.7}.category-empty-btn{max-width:240px;margin:0 auto;background:linear-gradient(135deg,#f59e0b,#f97316);color:#fff}@media only screen and (max-width:991px){.category-sidebar-card{position:relative;top:auto;margin-bottom:28px}}@media only screen and (max-width:767px){.category-banner{min-height:230px;padding:55px 0}.category-banner h1{font-size:32px}.category-page{padding:50px 0}.category-heading h2{font-size:30px}.category-products-card,.category-sidebar-card{padding:18px;border-radius:20px}.category-products-top{align-items:flex-start}.category-top-icon{width:52px;height:52px;flex-basis:52px}.category-product-thumb .photo{height:250px}}

/* =========================================================
   Fresh Customer Order History Page Design
   Paste this at the end of fresh-upgraded-complete.css
========================================================= */

.customer-order-page {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.order-history-card {
  padding: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
}

.order-card-header span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.order-card-header h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 28px;
  font-weight: 900;
}

.order-card-header p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.order-card-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.28);
}

.order-modern-table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0 12px;
  min-width: 1080px;
}

.order-modern-table thead tr th {
  border: 0 !important;
  background: #0f172a;
  color: #fff;
  padding: 15px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.order-modern-table thead tr th:first-child {
  border-radius: 14px 0 0 14px;
}

.order-modern-table thead tr th:last-child {
  border-radius: 0 14px 14px 0;
}

.order-modern-table tbody tr {
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.order-modern-table tbody tr td {
  vertical-align: top !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 16px 14px !important;
  color: #334155;
}

.order-modern-table tbody tr td:first-child {
  border-left: 1px solid #e2e8f0;
  border-radius: 16px 0 0 16px;
}

.order-modern-table tbody tr td:last-child {
  border-right: 1px solid #e2e8f0;
  border-radius: 0 16px 16px 0;
}

.order-number {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #eff6ff;
  color: #1e3a8a;
  font-weight: 900;
}

.order-product-list {
  min-width: 260px;
}

.order-product-item {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.order-product-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.order-product-item h4 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.order-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.order-product-meta span {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}

.order-date,
.order-method {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.order-date i,
.order-method i {
  color: #f59e0b;
}

.order-txn,
.order-payment-id {
  display: inline-block;
  max-width: 160px;
  word-break: break-word;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.order-amount {
  color: #1e3a8a;
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

.order-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-success {
  background: #ecfdf5;
  color: #047857;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-danger {
  background: #fef2f2;
  color: #b91c1c;
}

.status-default {
  background: #f1f5f9;
  color: #334155;
}

.order-pagination-wrap {
  margin-top: 24px;
  text-align: center;
}

.order-pagination,
.order-pagination-wrap .pagination {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 0;
  overflow: visible !important;
}

.order-pagination a,
.order-pagination span,
.order-pagination-wrap .pagination a,
.order-pagination-wrap .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.order-pagination .current,
.order-pagination-wrap .pagination .current {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  border-color: transparent;
}

.order-pagination a:hover,
.order-pagination-wrap .pagination a:hover {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  border-color: transparent;
}

.order-pagination .disabled,
.order-pagination-wrap .pagination .disabled {
  color: #94a3b8;
  background: #f8fafc;
}

.order-empty-state {
  padding: 54px 24px;
  text-align: center;
}

.order-empty-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  font-size: 38px;
  box-shadow: 0 16px 38px rgba(30, 58, 138, 0.26);
}

.order-empty-state h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 26px;
  font-weight: 900;
}

.order-empty-state p {
  max-width: 420px;
  margin: 0 auto 24px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.order-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-shop-btn:hover {
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  color: #fff;
  transform: translateY(-2px);
}

/* shared account header/sidebar fallback */
.account-page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
  padding: 38px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(245, 158, 11, 0.18), transparent 30%),
    linear-gradient(135deg, #0f172a, #172554);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

.account-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.account-page-hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.account-page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  line-height: 1.75;
}

.account-hero-icon {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.10);
  color: #fbbf24;
  font-size: 46px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.account-sidebar-wrap {
  margin-bottom: 26px;
}

.account-sidebar-wrap .user-sidebar {
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
}

.account-sidebar-wrap .user-sidebar ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

.account-sidebar-wrap .user-sidebar ul li {
  display: inline-block;
  margin: 5px;
  border-bottom: 0;
  list-style: none;
}

.account-sidebar-wrap .user-sidebar ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-weight: 800;
  line-height: 1.3;
  transition: all 0.25s ease;
}

.account-sidebar-wrap .user-sidebar ul li a:hover,
.account-sidebar-wrap .user-sidebar ul li.active a {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  box-shadow: 0 12px 28px rgba(30, 58, 138, 0.22);
  transform: translateY(-2px);
}

@media only screen and (max-width: 767px) {
  .customer-order-page {
    padding: 45px 0;
  }

  .account-page-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .account-page-hero h1 {
    font-size: 30px;
  }

  .account-hero-icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
    font-size: 34px;
  }

  .order-history-card {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .order-card-header {
    align-items: flex-start;
  }

  .order-card-header h3 {
    font-size: 24px;
  }

  .order-card-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 23px;
  }

  .account-sidebar-wrap .user-sidebar ul li {
    display: block;
    margin: 7px 0;
  }

  .account-sidebar-wrap .user-sidebar ul li a {
    width: 100%;
  }
}
