@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  padding-top:120px;
}

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

a {
  text-decoration: none;
}

.clear {
  clear: both;
}

.ovh {
  overflow: hidden;
}

.error {
  color: red;
}

.success {
  color: green;
}

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: #fff;
}

.bg-gray {
  background: #f2f3f3 !important;
}

.bg-white {
  background: #ffffff !important;
}

/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ================= TOP BAR (DESKTOP ONLY) ================= */
.top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 30px;
  background:#b38f3e;
  color: black;
  z-index: 1001;
}

.top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
}

.top a {
  color: #fff;
  margin-left: 10px;
  opacity: 0.85;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 30px;
  width: 100%;
  background: #000;
  color:white!important;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

/* ================= DESKTOP HEADER ================= */
.desktop-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 15px;
}

/* LOGO */
.logo img {
  height: 70px;
}

/* ================= DESKTOP MENU ================= */
.main-menu {
  position: relative;
}

/* ================= MAIN MENU ================= */
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu > ul {
  display: flex;
}

/* MENU LINKS */
.main-menu li {
  position: relative;
}

.main-menu li a {
  display: block;
  padding: 15px 18px;
  text-decoration: none;
  font-weight: 500;
  color: white !important;
  white-space: nowrap;
}

/* ================= DROPDOWN LEVEL 1 ================= */
/* MAIN MENU */
.main-menu > ul {
  display: flex;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  padding: 15px 20px;
  display: block;
  color: white;
  text-decoration: none;
}

/* MEGA DROPDOWN */
.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 400px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* SHOW ALL ON TOP HOVER */
.mega:hover .mega-dropdown {
  display: block;
}

/* MID CATEGORY */
.mid {
  margin-bottom: 10px;
}

.mid strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #111;
}

/* END CATEGORY */
.end-list li a {
  padding: 6px 0;
  color: #555;
}

.end-list li a:hover {
  color: #c59d5f;
}
/* ================= DESKTOP SEARCH ================= */
.desktop-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 30px;
  padding: 5px 12px;
}

.desktop-search input {
  border: none;
  outline: none;
  background: transparent;
  padding: 6px 10px;
  width: 180px;
}

.desktop-search button {
  background: none;
  border: none;
  color: #555;
}

/* ================= HEADER ACTIONS ================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions a {
  color: white;
  text-decoration: none;
}

.header-actions i {
  font-size: 18px;
}

/* ================= MOBILE BAR ================= */
.mobile-bar {
  position: fixed;
  top: 40px; /* below top bar */
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
.main-menu ul ul li a{
  color:black!important;
}
/* TOGGLE */
.menu-toggle {
  width: 40px;
  display: flex;
  align-items: center;
}

.menu-toggle i {
  font-size: 22px;
}

/* MOBILE LOGO */
.mobile-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mobile-logo img {
  height: 42px;
}

/* MOBILE ICONS */
.mobile-icons {
  width: 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  color:white!important;
}

.mobile-icons i {
  font-size: 20px;
}
.mobile-bar{
    display: none;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* Show top bar and mobile bar */
  .top {
    display: flex !important; /* show top bar */
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 6px 5px;
    min-height: 40px;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    box-sizing: border-box; 
  }
 .top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2px;
  }

  .top-left,
  .top-right {
    display: flex;
    gap: 2px;
    align-items: center;
    flex-wrap: wrap; /* allows icons to wrap if too small */
  }
  /* Fixed positions */
.top a {
    color: #fff;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    text-decoration: none;
  }

  .top i {
    font-size: 14px;
  }

    .mobile-bar {
    display: flex !important;
    position: fixed;
    top: 40px; /* right below top bar */
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding: 0 10px;
   box-sizing: border-box;
  }
  body {
    padding-top: 100px; /* 40px top bar + 60px mobile bar */
    margin: 0;
  }

  /* Hide desktop header */
  .desktop-header {
    display: none !important;
  }

  /* Mobile menu */
  .main-menu {
    display: none;
    position: absolute;
    top: 60px; /* below top + mobile bar */
    left: 0;
    width: 100%;
        width: calc(100% - 20px); /* leave 20px extra space on the right */
    margin-right: 20px; /* extra space from right */

    background: #fff;
    border-top: 1px solid #eee;
    z-index: 999;
    flex-direction: column;
    box-sizing: border-box;
  }

  .main-menu.open {
    display: flex;
  }

  .main-menu > ul {
    flex-direction: column;
  }

  .main-menu ul li a {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    color: black!important;
        box-sizing: border-box;

  }

  /* Mobile dropdowns */
  .main-menu ul ul {
    display: none;
    position: static;
    box-shadow: none;
  }

.main-menu a {
    padding-right: 16px; /* consistent extra space on the right */
    display: block; /* ensures padding works correctly */
      box-sizing: border-box;

}

/* For nested submenus, increase left padding */
.main-menu ul ul a {
    padding-left: 32px; /* first level submenu */
}

.main-menu ul ul ul a {
    padding-left: 48px; /* second level submenu */
}

.main-menu ul ul ul ul a {
    padding-left: 64px; /* third level submenu, and so on */
}


  /* Icon colors */
  .header i,
  .mobile-bar i {
    color: #111 !important;
  }

  /* Remove text from actions */
  .header-actions span {
    display: none;
  }
  .desktop-header {
    display: none !important;
}
.main-menu {
    display: none;
}

}

.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: #333;
  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%;
  background: #333;
}

.welcome h2 {
  color: #fff;
  margin-bottom: 25px;
}

.welcome p {
  color: #fff;
}

.welcome p.button {
  color: #fff;
  margin-top: 35px;
}

.welcome p.button a {
  background: #0d1452;
  color: #fff;
  padding: 10px 14px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.welcome p.button a:hover {
  background: #fff;
  color: #0d1452;
}

.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: #0d1452;
  color: #fff;
  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: #353535;
  -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: #0d1452;
}


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

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

.product .text h3 a {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

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

.product .text h4 {
  color: #0d1452;
  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: #0d1452; */
  background: #e7a340;
  color: #fff;
  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: #0d1452;
  color: #fff;
  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: #333;
}

.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 #e5e5e5;
}

.product .item-search-result {
  border: 0;
}
.product .item-search-result .inner {
  border: 2px solid #e5e5e5;
}
.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: #353535;
  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: #fff;
}

.testimonial-v1 .heading p {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

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

.testimonial-v1 .content .comment {
  color: #fff;
  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: #fff;
  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: #fff;
  text-align: left;
  margin-top: 10px;
}

.testimonial-v1 .text h4 {
  font-size: 13px;
  color: #fff;
  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: #fff;
  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: #f2f3f3;
}

.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: #0d1452;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}

.home-blog .text p.button a:hover {
  background: #333;
}

.footer-main {
  width: 100%;
  height: auto;
  padding: 50px 0;
  background: #2a2a2a;
}
.footer-main h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  border-bottom: 1px solid #525252;
}
.footer-main h3:after {
  content: "";
  position: absolute;
  width: 50px;
  background: #0d1452;
  left: 0;
  bottom: -2px;
  height: 4px;
}
.footer-main .footer-col p {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 22px;
}
.footer-main .footer-col p a {
  color: #a3a3a3;
}
.footer-main .footer-col p span {
  display: block;
  color: #a3a3a3;
}
.footer-main .footer-col ul li {
  color: #a3a3a3;
  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: #a3a3a3;
  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: #fff;
}
.footer-main .footer-col ul li:before {
  color: #a3a3a3;
  content: "\f0a4";
  font-family: "FontAwesome";
  left: 0;
  position: absolute;
  top: 0;
}
.footer-main .footer-col .contact-item {
  color: #a3a3a3;
  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: #dedede;
  color: #2a2a2a;
  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: #b38f3e;
  padding: 14px 0;
}
.footer-bottom .copyright {
  font-size: 13px;
  color: black;
  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: #0d1452;
  color: #fff;
  border: 4px solid #0d1452;
  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: #0d1452;
  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: #333;
  margin-bottom: 20px;
}

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

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

.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 #c7c7c7;
}

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

.product .btn-cart a {
  padding: 10px 14px;
  /* background: #0d1452; */
  background: #f19000;
  color: #fff;
}

.product .btn-cart1 input[type="submit"] {
  border: 0;
  padding: 10px 14px;
  /* background: #0d1452; */
  background: #f19000;
  color: #fff;
}

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

.product .nav {
  background: transparent;
}

.product .nav-tabs li a {
  font-weight: 700;
  color: #333;
}

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

.review-form h2 {
  font-size: 24px;
  font-weight: 700;
}
.review-form .btn-default {
  background: #0d1452;
  color: #fff;
  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: #333; */
  background: #131921;
}

.page-banner h1 {
  color: #fff;
  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 #b9b9b9;
  position: relative;
}

.page h3.special:after {
  content: "";
  position: absolute;
  width: 50px;
  background: #0d1452;
  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 #c7c7c7;
  padding-left: 10px;
  padding-right: 10px;
}

.cart table tr td .trash {
  color: #0d1452;
  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: #0d1452;
  border: 0;
  border-radius: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
  padding: 10px 20px;
  color: #fff;
}

.cart-buttons li input[type="submit"]:hover,
.cart-buttons li a:hover {
  background: #333;
  color: #fff;
}

.cform input[type="submit"] {
  background: #0d1452;
  border: 0;
}

.cform address span,
.cform address a span {
  color: #0d1452;
}

.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: #fff;
  -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: #000;
  opacity: 1;
  color: #fff;
  z-index: 999;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  font-size: 14px;
  border: 2px solid #fff;
  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: #fff;
  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.red {
  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: #464646;
  font-family: "Open Sans", serif;
  font-size: 26px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}
.videos h3 {
  color: #464646;
  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: #fff;
  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: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-transform: none;
  margin-bottom: 0;
}
.single-room-text h2 a {
  color: #333;
  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 #fff;
  display: inline-block;
}

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

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

.blog {
  background: #fff;
}

.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: #0d1452;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 16px;
}

.blog .image-holder .day:before {
  position: absolute;
  top: 22px;
  left: 24px;
  color: #0d1452;
  font-family: "FontAwesome";
  content: "\f0d7";
  font-size: 24px;
}

.blog .image-holder .month {
  width: 60px;
  height: 40px;
  line-height: 40px;
  background: #333;
  color: #fff;
  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: #333;
  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: #333;
}

.blog h3 a:hover {
  color: #0d1452;
}

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

.blog .text ul.status li {
  text-align: left;
  margin-bottom: 15px;
  color: #0d1452;
  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: #0d1452;
}

.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: #333;
}

.blog h1 {
  font-size: 24px;
  color: #0d1452;
  font-weight: bold;
}

.blog h2 {
  font-size: 20px;
  color: #0d1452;
  font-weight: bold;
}

.blog h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.blog h4 {
  font-size: 16px;
  color: #0d1452;
  font-weight: bold;
}

.blog h5 {
  font-size: 14px;
  color: #0d1452;
  font-weight: bold;
}

.blog h6 {
  font-size: 12px;
  color: #0d1452;
  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: #0d1452;
  color: #fff;
  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: #333;
  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: #0d1452;
  color: #fff;
  display: block;
  font-size: 16px;
}

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

.blog .pagination ul li a:hover {
  background: #333;
}

.blog .pagination ul li a.active {
  background: #333;
}

.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: #333;
  -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: #0d1452;
}

.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 #afafaf;
  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 #0d1452;
}

.widget-search button {
  width: 42px;
  height: 36px;
  float: left;
  border: 2px solid #0d1452;
  background: #0d1452;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  margin-left: 5px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.widget-search button:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

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

.widget ul li {
  display: block;
  float: none;
  color: #333;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.widget ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  color: #333;
  top: 1px;
  left: 3px;
}

.widget ul li a {
  color: #333;
  font-size: 14px;
}

.widget ul li a:hover {
  color: #0d1452;
}

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

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

.widget ul.tag-cloud li:hover {
  background: #0d1452;
  border: 2px solid #0d1452;
}

.widget ul.tag-cloud li:hover a {
  color: #fff;
}

.card .nav-tabs {
  border-bottom: 2px solid #ddd;
  background: #fff;
}
.nav-tabs > .fade{
  background-color:linear-gradient(135deg,#4f8cff,#6fa3ff);
  color: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: #666;
}
.card .nav-tabs > li.active > a,
.card .nav-tabs > li > a:hover {
  border: none;
  color: #0d1452 !important;
  background: transparent;
}
.card .nav-tabs > li > a::after {
  content: "";
  background: #0d1452;
  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: #fff;
}
.tab-pane {
  padding: 14px 0;
}
.tab-content {
  padding: 20px;
}

.card {
  background: #fff 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 #cf0d42;
  text-decoration: none; /* no underline */
  background-color: #0d1452;
  color: #fff;
  font-weight: bold;
}

div.pagination a:hover,
div.pagination a:active {
  border: 1px solid #cf0d42;
  color: #fff;
  background-color: #b20b39;
}

div.pagination span.current {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #cf0d42;
  font-weight: bold;
  background-color: #b20b39;
  color: #fff;
  font-weight: bold;
}

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

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  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: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: -40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.breadcrumb ul {
  margin: 0;
  padding: 0;
}

.breadcrumb ul li {
  float: left;
  list-style: none;
  margin-right: 10px;
  font-weight: 500;
  color: #0d1452;
  position: relative;
  padding-right: 15px;
}

/* Add arrow separator */
.breadcrumb ul li::after {
  content: "›";
  position: absolute;
  right: 0;
  color: #999;
  font-size: 16px;
}

.breadcrumb ul li:last-child {
  color: #555;
  font-weight: 600;
}

.breadcrumb ul li:last-child::after {
  content: "";
}

.breadcrumb ul li a {
  color: #0d1452;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover effect */
.breadcrumb ul li a:hover {
  color: #B8860B; /* Gold accent */
}

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

.home-newsletter {
  padding: 80px 0;
  /* background: #0d1452; */
  background: #232f3e;
}

.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: #333;
  outline: none;
}
.home-newsletter .single .btn {
  min-height: 50px;
  background: #333;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
}
.jewelry-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  
  /* No vertical gap so right side gets only 10px from margin */
  column-gap: 20px;
  row-gap: 0;

  padding: 40px;
}

.left-large {
  grid-row: span 2;
  border-radius: 10px;
  overflow: hidden;
}

.right-top,
.right-bottom {
  border-radius: 10px;
  overflow: hidden;

  /* Only 10px space from top */
  margin-top: 10px;
}

.left-large img,
.right-top img,
.right-bottom img {
  width: 100%;
  display: block;
}
.container1 {
    width: 100%;
    max-width: 1400px; /* optional */
    margin: 0 auto;    /* center container */
    padding: 20px;
}

.container1 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* rounded edges */
    object-fit: cover;
}
/* General banner container styling */
.banner-container {
  position: relative;
  overflow: hidden;
}

/* Overlay text styling */
.banner-overlay {
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  color: black;
  text-align: right;
}

.desktop-text-end {
  text-align: right;
}

/* Bright overlay block */
.overlay-bright {
  max-width: 65%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .banner-overlay,
  .overlay-bright {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: 90% !important;
    padding: 15px !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.5) !important;
  }

  .banner-overlay h2,
  .overlay-bright h2 {
    font-size: 1.5rem !important;
  }

  .banner-overlay p,
  .overlay-bright p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }

  .banner-overlay a.btn,
  .overlay-bright a.btn {
    font-size: 0.9rem !important;
    padding: 6px 12px !important;
  }
}
.testimonial-item {
    background: #f8f8f8;
}

/* Main image */
.product-main-img {
    width: 100%;
    height: 450px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

/* Main image hover zoom */
.product-main-img:hover {
    transform: scale(1.03);
}

/* Thumbnails */
.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-size: cover !important;
    background-position: center !important;
    border: 2px solid #e5e5e5;
    cursor: pointer;
    transition: 0.3s ease;
}

.product-thumb:hover {
    border-color: #007bff;
    transform: scale(1.05);
}

/* Titles */
.p-title h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Price block */
.p-price {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin: 20px 0;
}

/* Add to cart button */
.btn-cart1 input {
    background: #007bff;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    border-radius: 30px;
    border: none;
    transition: 0.3s ease;
}

.btn-cart1 input:hover {
    background: #0056d2;
}

/* Share buttons */
.share {
    margin-top: 20px;
    font-size: 14px;
}

/* Quantity input */
.qty {
    width: 90px;
    padding: 8px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.forgot-password-card {
    max-width: 450px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #fff;
}
.forgot-password-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 25px;
    text-align: center;
}
.forgot-password-card .form-control {
    border-radius: 8px;
    padding: 10px;
    font-size: 1rem;
}
.forgot-password-card .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}
.forgot-password-card .btn-primary:hover {
    background-color: #0056b3;
}
.forgot-password-card .login-link {
    display: block;
    margin-top: 15px;
    text-align: center;
    color: #b38f3e;
    font-weight: 500;
    transition: color 0.3s;
}
.forgot-password-card .login-link:hover {
    color: #b38f3e;
    text-decoration: underline;
}
.about-section {
    background: #f9f9f9;
    padding: 60px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin-top: 40px;
}
.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.about-section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}
.about-section p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}
/* Replace Blue Buttons With Gold */
.btn-primary {
    background-color: #D4AF37 !important;   /* Gold */
    border-color: #D4AF37 !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #e8d28b !important;   /* darker gold */
    border-color: #e8d28b !important;
    color: #fff !important;
}

/* Golden Background for Table Header */
.table thead th {
    background-color: #D4AF37 !important;
    color: #fff !important;
}

/* Optional: Change borders to gold */
.table-bordered > :not(caption) > * > * {
    border-color: #e8d28b !important;

  
}

/* Gold focus outline on inputs */
input:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.35) !important;
}

/* Gold trash hover */
.trash:hover i {
    color: #D4AF37 !important;
}

/* Buttons under the table */
.cart-buttons .btn {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #fff !important;
}

.cart-buttons .btn:hover {
    background-color: #b8962f !important;
    border-color: #b8962f !important;
}

/* Page Title */
.category-title {
    color: #C9A24B;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Product Card Main */
.gold-product-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0px 6px 20px rgba(201,162,75,0.18);
    padding: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    position: relative;
}

/* Hover Animation */
.gold-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 30px rgba(201,162,75,0.28);
}

/* Product Image Box */
.product-image {
    width: 100%;
    height: 220px; /* reduced height */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #b08a3e;
}

.product-image .photo {
    width: 100%;
    height: 100%;            /* full height of parent */
    background-size: cover;  /* cover entire box */
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

/* Product Info */
.product-info {
    text-align: center;
    padding-top: 12px;
}

/* Product Name */
.product-name a {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

/* Price */
.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #C9A24B;
}

.old-price {
    color: #d8c28c;
    margin-left: 5px;
}

/* Rating Stars */
.rating i {
    color: #C9A24B;
}

/* Out of Stock Badge */
.oos-badge {
    background: #C9A24B;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 600;
}

/* Buy Button */
.buy-btn-wrapper {
    margin-top: 10px;
}

.buy-btn {
    display: inline-block;
    background: #C9A24B;
    color: #fff;
    padding: 7px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #b08a3e;
    color: #fff;
}
.bg-black { background-color: #000 !important; }
.text-gold, .btn-gold, .footer a { color: #C9A24B !important; }
.btn-gold { background-color: #C9A24B; border: none; padding: 8px 18px; transition: all 0.3s; }
.btn-gold:hover { background-color: #b38f3e; color: #fff; }
.footer-title { font-weight: 700; margin-bottom: 15px; }
.footer-links a { display: block; margin-bottom: 8px; transition: all 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-social a { display: inline-block; margin-right: 10px; font-size: 18px; transition: all 0.3s; }
.footer-social a:hover { color: #fff; }
.newsletter-form .input-group { display: flex; gap: 5px; }
.newsletter-form input.form-control { flex: 1; padding: 8px; border-radius: 0; border: 1px solid #C9A24B; background: #000; color: #C9A24B; }
.newsletter-form input.form-control::placeholder { color: #C9A24B; opacity: 0.7; }
.newsletter-form button.btn-gold { border-radius: 0; }

.footer-bottom {
    background-color: gold!important;
    color: black;
}
.features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
    background-color: #fff;
}

.feature-item {
    flex: 1 1 16%; /* roughly 6 items per row */
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
   	border:1px solid #b38f3e;
  margin:10px;
  border-radius:25px;
}

.feature-item i {
    font-size: 40px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    color: #333;
}

.feature-item h4 {
    font-size: 16px;
    margin: 5px 0;
    color: #333;
    transition: color 0.3s ease;
}

.feature-item p {
    font-size: 14px;
    color: #666;
}

.feature-item:hover i,
.feature-item:hover h4 {
    color: #b38f3e;
}
/* Container for all products */
.product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

/* Individual card */
.product-carousel .item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    min-width: 220px;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 0 auto;
}

.product-carousel .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Image section */
.product-carousel .item .thumb {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.product-carousel .item .thumb .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
  border:1px solid #b38f3e;
    background-position: center;
}

/* Product text */
.product-carousel .item .text {
    padding: 15px;
    text-align: center;
}

.product-carousel .item .text h3 {
    font-size: 16px;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

.product-carousel .item .text h3 {
    font-size: 14px;
    color: #b12704;
    margin-bottom: 10px;
}

.product-carousel .item .text h3 del {
    color: #999;
    margin-left: 5px;
    font-weight: normal;
}

/* Rating stars */
.product-carousel .item .rating {
    margin-bottom: 10px;
    color: #ffc107;
}

/* Add to cart button */
.product-carousel .item .text p a {
    display: inline-block;
    padding: 8px 15px;
    background: #d4af37;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.product-carousel .item .text p a:hover {
    background: #b8952c;
}

/* Out of stock overlay */
.product-carousel .item .out-of-stock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #b12704;
    font-size: 16px;
    border-radius: 12px;
}

/* Hide scrollbar for carousel */
.product-carousel::-webkit-scrollbar {
    display: none;
}
.product-carousel {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Make the carousel controls circular and gold */
.carousel-control-prev, 
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: #d4af37;       /* Gold */
    border-radius: 50%;        /* Circle */
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;    /* White border */
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.carousel-control-prev{
  left:5%;
}
.carousel-control-next{
  right:5%;
}
/* White arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%); /* Makes icon white */
}

/* Hover effect */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #ffffff;          /* White */
    border-color: #d4af37;        /* Gold border */
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(55%) sepia(80%) saturate(500%) hue-rotate(20deg); /* Gold arrow */
}
.video-card {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 350px;   
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button */
.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.play-btn::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 20px;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #000;
}
/* Section */
.categories-section {
    text-align: center;
}

/* Owl fixes */
.categories-slider .owl-stage {
    display: flex;
    align-items: stretch;
}

.categories-slider .owl-item {
    display: flex;
    justify-content: center;
}

/* Equal width item */
.category-item {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Card */
.category-card {
    width: 100%;
    max-width: 220px;   /* equal width */
    padding: 10px;
}

/* Image */
.category-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #d4af37;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    margin: 0 auto 15px;
    display: block;
}

/* Title */
.category-card h4 {
    font-size: 18px;
    font-weight: 600;
  color:black !important;
}

/* Responsive */
@media (max-width: 768px) {
    .category-card img {
        width: 140px;
        height: 140px;
    }
}
.owl-theme .owl-nav [class*=owl-]{
    display: none!important;
}
/* Make images control their own height */
.carousel-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Remove Bootstrap forced heights */
.carousel-item {
  transition: opacity 0.8s ease-in-out;
}

/* Prevent squishing on mobile */
@media (max-width: 767px) {
  .carousel-img {
    width: 100%;
    height: auto;
  }
}
.pincode-card {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, #eef3ff, #ffffff);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    font-family: "Segoe UI", system-ui, sans-serif;
    animation: fadeIn 0.6s ease;
    margin: 0 auto; /* center on desktop */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pincode-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 14px;
}

.pincode-header i {
    color: #3f51b5;
    font-size: 18px;
}

.pincode-input-group {
    display: flex;
    gap: 10px;
}

.pincode-input-group input {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #b8c7ff;
    font-size: 15px;
    transition: 0.3s;
}

.pincode-input-group input:focus {
    outline: none;
    border-color: #3f51b5;
    box-shadow: 0 0 0 3px rgba(63,81,181,0.2);
}

.pincode-input-group button {
    background: linear-gradient(135deg, #3f51b5, #5c6bc0);
    border: none;
    color: white;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.pincode-input-group button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(63,81,181,0.4);
}

.pincode-result {
    margin-top: 12px;
    font-size: 14px;
    min-height: 22px;
}

.delivery-info {
    margin-top: 14px;
    display: flex;
    gap: 10px;
}

.info-box {
    flex: 1;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: inset 0 0 0 1px #e0e7ff;
}

.info-box span {
    display: block;
    font-size: 12px;
    color: #666;
}

.info-box strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    color: #1a237e;
}

/* 📱 MOBILE (phones) */
@media (max-width: 576px) {

    .pincode-card {
        padding: 16px;
        border-radius: 14px;
    }

    .pincode-header {
        font-size: 16px;
    }

    .pincode-input-group {
        flex-direction: column;
    }

    .pincode-input-group input,
    .pincode-input-group button {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }

    .delivery-info {
        flex-direction: column;
    }

    .info-box {
        padding: 12px;
    }
}

/* 📱📱 TABLET (iPad etc.) */
@media (min-width: 577px) and (max-width: 991px) {

    .pincode-card {
        max-width: 100%;
    }

    .pincode-input-group input {
        font-size: 16px;
    }

    .info-box strong {
        font-size: 16px;
    }
}
/* 🔥 HOT DEAL STICKER */
.product-carousel .item {
    position: relative;
}

.hot-sticker {
    position: absolute;
    top: 14px;
    left: -6px;
    background: red;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    z-index: 10;
}

/* Mobile optimization */
@media (max-width: 576px) {
    .hot-sticker {
        font-size: 11px;
        padding: 5px 12px;
    }
}
/* Gradient Login Button */
.btn-gradient {
    background: #b38f3e;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-gradient:hover {
    background: #b38f3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(63,81,181,0.35);
}

/* Input fields */
.form-control.form-control-lg {
    border-radius: 12px;
    border: 1px solid #b38f3e;
    padding: 12px;
    transition: 0.3s;
}

.form-control.form-control-lg:focus {
    outline: none;
    border-color: #b38f3e;
    box-shadow: 0 0 0 3px rgba(63,81,181,0.15);
}

/* Register button */
.btn-outline-primary {
    border: 2px solid #b38f3e;
    color: #b38f3e;
    transition: 0.3s;
}

.btn-outline-primary:hover {
    background: #b38f3e;
    color: #fff;
}

/* Card Shadow & Blur */
.card {
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.carousel-slide-wrapper {
    position: relative;
}

.carousel-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Shop Now Button */
.shop-now-btn {
    position: absolute;
    bottom: 85px;          /* 👈 50px from bottom */
    left: 13%;
    transform: translateX(-50%);
    background: #d4af37;
    color: #fff;
    padding: 15px 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    z-index: 10;
}

.shop-now-btn:hover {
    background: #d4af37;   /* gold hover */
    color: #000;
}
@media (max-width: 768px) {
    .shop-now-btn {
        bottom: 30px;
        padding: 10px 24px;
        font-size: 14px;
    }
}

.filter-box {
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.filter-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.price-inputs input {
  margin-bottom: 10px;
}

.price-filter-btn {
  width: 100%;
  background: #000;
  color: #C9A24D;
  padding: 8px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
}
/* General text styling */
.page, 
.page p, 
.page span {
    font-family: 'Arial', sans-serif; /* clean modern font */
    color: #000; /* golden text color */
    line-height: 1.6; /* better readability */
}

/* Headings */
.user-content h3 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #d4af37; /* black text for strong contrast */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* subtle depth */
}

/* Buttons */
.page button, 
.page .btn {
    background-color: #d4af37; /* golden button */
    color: #000; /* black text for better readability */
    border: none;
    padding: 12px 28px; /* slightly larger for elegance */
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px; /* smoother rounded corners */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* subtle depth */
}

.page button:hover, 
.page .btn:hover {
    background-color: #b8962f; /* darker gold on hover */
    color: #fff; /* white text for hover contrast */
    transform: translateY(-2px); /* subtle lift effect */
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* hover shadow for depth */
}

/* Links styled like buttons */
.page a.btn {
    text-decoration: none;
    display: inline-block;
}

/* Optional: spacing */
.user-content, 
.customer-sidebar {
    margin: 12px 0; /* slightly more breathing room */
}

/* Optional: responsive improvements */
@media (max-width: 768px) {
    .page button, 
    .page .btn {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}

/* Main content */
.user-content {
    flex: 1;
    padding: 30px;
    background: #f9f9f9; /* subtle background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* User Info Card */
.user-info {
    background: linear-gradient(145deg, #ffffff, #f0f3ff);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.user-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.user-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
}

.user-info h2 {
    margin: 0;
    font-size: 22px;
    color: #222;
    font-weight: 600;
}

.edit-btn {
    margin-left: auto;
    padding: 8px 16px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.edit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Dashboard Cards */
.dashboard-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: linear-gradient(145deg, #ffffff, #f5f7ff);
    border-radius: 12px;
    flex: 1 1 45%;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 200px;
    border: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 45px;
    margin-bottom: 12px;
    color: #007bff;
}

.card-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 20px;
    color: #222;
}

.card-subtitle {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 14px;
}

.card-link {
    display: inline-block;
    padding: 8px 18px;
    background: #b8962f;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-link:hover {
    background: #b8962f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.popular-wrapper {
  display: flex;
  justify-content: center;   /* CENTER THE FULL CONTAINER */
  width: 100%;
}

.popular-images {
  display: flex;
  gap: 10px;             /* ONLY 10px gap */
  justify-content: center;   /* CENTER IMAGES INSIDE */
}

.popular-images img {
  border-radius: 6px;
  object-fit: cover;
}

/* Progress Steps */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  font-family: "Poppins", sans-serif;
}

/* STEP */
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
}

/* NUMBER CIRCLE */
.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 13px;
  transition: all 0.3s ease;
}

/* ACTIVE STEP */
.step.active {
  color: #222;
  font-weight: 600;
}
.step.active .circle {
  background: #b98b3e;
  border-color: #b98b3e;
  color: #fff;
}

/* COMPLETED STEP */
.step.completed {
  color: #2e7d32;
}
.step.completed .circle {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}

/* ARROW CONNECTOR */
.arrow {
  width: 50px;
  height: 2px;
  background: linear-gradient(
    to right,
    #ddd 0%,
    #ddd 50%,
    #ddd 100%
  );
  margin: 0 12px;
  position: relative;
}

/* Arrow head */
.arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  border-left: 6px solid #ddd;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Completed arrow */
.step.completed + .arrow {
  background: #2e7d32;
}
.step.completed + .arrow::after {
  border-left-color: #2e7d32;
}

/* Active arrow */
.step.active + .arrow {
  background: #b98b3e;
}
.step.active + .arrow::after {
  border-left-color: #b98b3e;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .checkout-steps {
    flex-wrap: wrap;
    gap: 14px;
  }
  .arrow {
    display: none;
  }
}
/* Layout */
.cart-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  margin-top: 30px;
  font-family: "Poppins", sans-serif;
}
.cart-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cart-title span {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

/* Cart Items */
.cart-items h2 {
  font-size: 18px;
  margin-bottom: 20px;
}
.cart-items span {
  color: #888;
  font-size: 14px;
}

.cart-product {
  display: grid;
  grid-template-columns: 150px 1fr 90px;
  gap: 25px;
  padding: 25px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cart-product:hover {
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.cart-product img {
  width: 150px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  background: #fafafa;
}

@media (min-width: 992px) {
  .cart-product img {
    width: 170px;
    height: 200px;
  }
}



.product-info small {
  color: #999;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
  color: #222;
  line-height: 1.4;
}

/* Price */
.price-row {
  margin: 10px 0;
}

.price {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.mrp {
  margin-left: 8px;
  text-decoration: line-through;
  color: #aaa;
  font-size: 13px;
}

.discount {
  margin-left: 10px;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 500;
}

/* Quantity */
.quantity-control {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
}

.quantity-control button {
  width: 34px;
  height: 34px;
  border: none;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 16px;
}

.quantity-control input {
  width: 40px;
  height: 34px;
  text-align: center;
  border: none;
  font-size: 14px;
}

/* Actions */
.actions {
  margin-top: 12px;
}

.actions a {
  font-size: 13px;
  color: #777;
  text-decoration: none;
  transition: color 0.3s;
}

.actions .remove:hover {
  color: #e53935;
}

/* Item Total */
.item-total {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  align-self: center;
  text-align: right;
}


/* Order Summary Card */
.order-summary {
  border: 1px solid #f0f0f0;
  padding: 25px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.order-summary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Coupon Box */
.coupon-box {
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid #f0e6d2;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.coupon-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #b98b3e;
}

.coupon-box p {
  font-size: 13px;
  color: #555;
}

.coupon-box button {
  background: linear-gradient(135deg, #b98b3e, #f0ad4e);
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.coupon-box button:hover {
  background: linear-gradient(135deg, #f0ad4e, #b98b3e);
  transform: translateY(-2px);
}

/* Summary Rows */
.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
  font-size: 15px;
  color: #333;
}

.summary-row.discount {
  color: #2e7d32; /* Green for savings */
  font-weight: 600;
}

.summary-row.total {
  font-weight: 700;
  font-size: 20px;
  color: #b98b3e; /* Highlighted total */
  margin-top: 18px;
}

/* Checkout Button inside summary */
.order-summary .btn {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  background: linear-gradient(135deg, #b98b3e, #f0ad4e);
  border: none;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.order-summary .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Optional: Add subtle dividers */
.summary-row + .summary-row {
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
}
/* Buttons */
.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #b98b3e, #d6aa55);
  color: #fff;
  border: none;
  padding: 14px;
  margin-top: 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.checkout-btn:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-product {
    grid-template-columns: 120px 1fr;
  }

  .item-total {
    text-align: left;
    margin-top: 10px;
  }
}
/* =========================
   PERFECT MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cart-product {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 16px;
  }

  /* Image on top */
  .cart-product img {
    width: 100%;
    max-width: 180px;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
    display: block;
  }

  /* Content alignment */
  .product-info {
    text-align: center;
  }

  .price-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Quantity centered */
  .quantity-control {
    justify-content: center;
    margin: 12px auto 0;
  }

  /* Actions centered */
  .actions {
    text-align: center;
  }

  /* Item total at bottom */
  .item-total {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #eee;
  }

  /* Order summary spacing */
  .order-summary {
    padding: 20px;
  }
}
.login-modal {
  border-radius: 10px;
}

.divider {
  position: relative;
  text-align: center;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}

.divider span {
  background: #fff;
  padding: 0 12px;
  position: relative;
  font-size: 14px;
  color: #888;
}

/* Gold Button */
.btn-gold {
  background-color: #b88b3a;
  color: white!important;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px;
}

.btn-gold:hover {
  background-color: #b88b3a;
  color: #fff;
}
.filter-box {
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.filter-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.price-slider {
  position: relative;
  height: 30px;
}

.slider-track {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 4px;
  background: #eee;
  border-radius: 5px;
}

.price-slider input[type=range] {
  position: absolute;
  width: 100%;
  height: 30px;
  background: none;
  pointer-events: none;
  appearance: none;
}

.price-slider input::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #c19547;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.price-slider input::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.price-values {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 10px;
}

/* CHECKBOX */
.filter-check {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-check input {
  margin-right: 8px;
}

/* COLOR FILTER */
.color-option {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
}

.color-option input {
  display: none;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 8px;
  border: 1px solid #ccc;
}

.gold { background: #d4af37; }
.silver { background: #c0c0c0; }
.rose { background: #b76e79; }

/* BUTTON */
.filter-apply-btn {
  width: 100%;
  background: #b98b3e;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  margin-top: 15px;
  font-weight: 600;
}

.color-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.color-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.color-option input {
  display: none;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
}

/* Colors */
.gold { background: linear-gradient(135deg, #d6aa55, #b98b3e); }
.silver { background: #cfcfcf; }
.rosegold { background: #e0a899; }
.black { background: #000; }

/* Selected State */
.color-option input:checked + .color-dot {
  border-color: #b98b3e;
  box-shadow: 0 0 0 3px rgba(185,139,62,0.25);
}
.payment-wrapper {
    display: flex;
      justify-content: center;   /* CENTER the cards */
    gap: 15px;
    margin: 0 auto;          /* 👈 TRUE CENTER */
}


.payment-card {
      width: 100%!important;              /* FIXED width */
      flex: 1;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
    display: block;
}

.payment-card input {
    display: none;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    font-size: 28px;
}

.text strong {
    display: block;
    font-size: 16px;
    color: #333;
}

.text small {
    color: #777;
}

.payment-card:hover {
    border-color: #f0ad4e;
}

.payment-card input:checked + .card-content {
    border-left: 5px solid #f0ad4e;
    padding-left: 10px;
}

.payment-card input:checked ~ .card-content strong {
    color: #f0ad4e;
}

.payable-box {
    margin-top: 25px;
    font-size: 20px;
    font-weight: bold;
  text-align:center;
    color: #f0ad4e;
}
.payment-wrapper {
  max-width: 450px;
}

.payment-card {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.payment-card input {
  display: none;
}

.card-content {
  display: flex;
  align-items: center;
  
  gap: 15px;
}

.payment-card:hover {
  border-color: #f0ad4e;
}

.payment-card input:checked + .card-content {
  border-left: 5px solid #f0ad4e;
  padding-left: 10px;
}
.payment-card:has(input:checked) {
    border-color: #f0ad4e;
    box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.3);
}

.payment-card:has(input:checked) strong {
    color: #f0ad4e;
}
.payable-box {
  margin: 25px 0;
  font-size: 20px;
  font-weight: bold;
  color: #f0ad4e;
  
}

.proceed-btn {
  width: 100%;
  font-size: 18px;
  padding: 12px;
}
  @media (max-width: 768px) {
    .payment-wrapper {
        flex-direction: column;
    }
}
.custom-nav {
    display: flex;
    gap: 12px;
}

.custom-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #000;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.custom-nav button:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.custom-nav button:active {
    transform: scale(0.95);
}
.address-card,
.order-summary-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.checkout-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.address-card h5,
.order-summary-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.address-card .form-control {
  margin-bottom: 15px;
}

.same-address-check {
  margin: 15px 0;
  font-size: 15px;
}

.payment-section-card, .order-summary-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* PAYMENT CARDS */
.payment-card {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  display: block;
  transition: 0.3s;
}

.payment-card input {
  display: none;
}

.card-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon {
  font-size: 22px;
}

.payment-card:hover {
  border-color: #f0ad4e;
}

.payment-card:has(input:checked) {
  border-color: #f0ad4e;
  box-shadow: 0 0 0 2px rgba(240,173,78,0.25);
}

.payment-card:has(input:checked) strong {
  color: #f0ad4e;
}

.about-aashvi {
  background: #111; /* Light black */
  padding: 80px 0;
  color: #f5f5f5;
}

.about-aashvi .container {
  max-width: 900px;
}

.brand-title {
  font-size: 36px;
  font-weight: 700;
  color: #d4af37; /* Gold */
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.brand-tagline {
  font-size: 18px;
  font-style: italic;
  color: #e6c97a;
  margin-bottom: 35px;
}

.brand-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.brand-content strong {
  color: #d4af37;
}

.brand-content .highlight {
  color: #d4af37;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-title {
    font-size: 28px;
  }
  .brand-tagline {
    font-size: 16px;
  }
}
.otp-input {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }