
/* ========================Product Page======================= */

/* LAYOUT */
.vx-layout {
  display: flex;
}


/* SIDEBAR */
.vx-sidebar {
  width: 290px;
  padding: 22px 18px;
  height: 100vh;
  position: sticky;
  top: 100px;
  padding-bottom: 85px;
  overflow-y: auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-right: 1px solid #eee;
}

/* HEADER */
.vx-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.vx-sidebar-header h3 {
  font-size: 20px;
  font-weight: 600;
}

/* FILTER BLOCK */
.vx-filter-block {
  margin-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 12px;
}

/* TITLE */
.vx-filter-title {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.vx-filter-title::after {
  content: "⮟";
  transition: 0.3s;
  transform: rotate(180deg);
}

.vx-filter-block.vx-active .vx-filter-title::after {
  transform: rotate(0deg);
}

/* CONTENT ANIMATION */
.vx-filter-content {

  overflow: hidden;
  transition: all 0.3s ease;
  
  max-height: 0;
  margin-top: 0;
}

.vx-filter-block:not(.vx-active) .vx-filter-content {
    max-height: 500px;
    margin-top: 10px;
}

/* PRICE */
.vx-price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
}

.vx-range {
  width: 100%;
  margin-top: 10px;
  accent-color: black;
}

/* CHECKBOX */
.vx-check {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.vx-check:hover {
  color: black;
}

/* COLOR */
.vx-color-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.vx-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* SCROLLBAR */
.vx-sidebar::-webkit-scrollbar {
  width: 4px;
}
.vx-sidebar::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}


/* CONTENT */
.vx-content {
  flex: 1;
  padding: 25px;
}

/* TOP SECTION */
.vx-content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.vx-product-count {
  font-size: 18px;
  letter-spacing: 1px;
}

/* FILTER BLOCK */
.vx-filter-block {
  margin-bottom: 25px;
}

.vx-filter-title {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* CHECKBOX */
.vx-check {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

/* DROPDOWN */
.vx-sort-select {
  padding: 8px 15px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
}

/* MOBILE TOP BAR */
.vx-topbar-mobile {
  display: none;
  justify-content: space-between;
  padding: 12px;
}

.vx-filter-btn {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
}

/* SIDEBAR HEADER (MOBILE) */
.vx-sidebar-header {
  /* display: none; */
  justify-content: space-between;
  margin-bottom: 20px;
}
.vx-sidebar-header span{
    display: none;
}



/* ========================Cart  Drawer Section Page============================= */


/* OVERLAY */
.vx-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

/* DRAWER */
.vx-cart-drawer {
  position: fixed;
  right: -420px;
  top: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  z-index: 100000000;
  display: flex;
  flex-direction: column;
  transition: 0.4s ease;
}

/* ACTIVE */
.vx-cart-drawer.vx-open {
  right: 0;
}

.vx-cart-overlay.vx-open {
  opacity: 1;
  visibility: visible;
}

/* HEADER */
.vx-cart-header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.vx-cart-header h2 {
  font-size: 28px;
  font-weight: 500;
}
.vx-cart-header span{
  cursor: pointer;
}

/* BODY SCROLL */
.vx-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* ITEM */
.vx-cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.vx-cart-items {
  display: flex;
  gap: 15px;
  align-items: center;
  /* margin-bottom: 25px; */
}

.vx-cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  object-position: top;
}
.vx-cart-items img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: top;
}

/* INFO */
.vx-cart-info h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.vx-cart-info p {
  font-size: 13px;
  color: #666;
}

/* QTY ROW */
.vx-qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

/* QTY */
.vx-qty {
  border: 1px solid #ddd;
}

/* .vx-qty button {
  border: none;
  background: none;
  padding: 5px 10px;
  cursor: pointer;
} */

.vx-qty span {
  padding: 3px 7px;
}

/* PRICE */
.vx-price {
  font-size: 15px;
}

/* OFFER */
.vx-offer {
  color: red;
  font-size: 13px;
  margin-top: 5px;
}

/* FOOTER FIXED */
.vx-cart-footer {
  border-top: 1px solid #eee;
  padding: 20px;
  background: #fff;
}

/* SUBTOTAL */
.vx-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 10px;
}

/* NOTE */
.vx-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

/* BUTTON */
.vx-checkout-btn {
  width: 100%;
  padding: 14px;
  background: black;
  color: white;
  border: none;
  letter-spacing: 2px;
  cursor: pointer;
  transition: .3s ease;
}

.vx-checkout-btn.btn-2{
  background: transparent;
  border: 1px solid black;
  color: black;
}

.vx-checkout-btn:hover{
  transform: translateY(-6px);
}

/* SCROLLBAR */
.vx-cart-body::-webkit-scrollbar {
  width: 4px;
}
.vx-cart-body::-webkit-scrollbar-thumb {
  background: #ccc;
}



/* =============================Full Cart Page=============================== */

/* PAGE */
.vx-cart-page {
  padding: 40px 20px;
  background: #f7f7f7;
}

/* LAYOUT */
.vx-cart-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* LEFT */
.vx-cart-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.vx-cart-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.vx-cart-card:hover {
  transform: translateY(-4px);
}

/* IMAGE */
.vx-cart-card img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

/* INFO */
.vx-card-info {
  flex: 1;
}

.vx-card-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.vx-card-info p {
  font-size: 13px;
  color: #666;
}

/* BOTTOM */
.vx-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

/* QTY */
.vx-qty {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.vx-qty button {
  border: none;
  background: #f5f5f5;
  padding: 5px 10px;
  cursor: pointer;
}

.vx-qty span {
  padding: 5px 10px;
}

/* PRICE */
.vx-price {
  font-size: 16px;
  font-weight: 600;
}

/* REMOVE */
.vx-remove {
  margin-top: 10px;
  background: none;
  border: none;
  color: red;
  font-size: 13px;
  cursor: pointer;
}

/* RIGHT SIDE */
.vx-cart-right {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  height: fit-content;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 20px;
}

.vx-cart-right h3 {
  margin-bottom: 20px;
}

/* SUMMARY */
.vx-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.vx-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0;
}

/* BUTTON */
.vx-checkout {
  width: 100%;
  padding: 15px;
  background: #EC8B21;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.vx-checkout:hover {
  transform: translateY(-3px);
}




/* =========================Search Baar Popup============================ */

/* BUTTON */
.vx-srch-btn {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

/* OVERLAY */
.vx-srch-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 999;
}

/* MODAL */
.vx-srch-modal {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  max-width: 95%;
  display: none;
  z-index: 1000;
}

/* SEARCH BOX */
.vx-srch-box {
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.vx-srch-box input {
  flex: 1;
  border: none;
  font-size: 16px;
  outline: none;
}

.vx-srch-box span {
  cursor: pointer;
  font-size: 18px;
}

/* RELATED */
.vx-related {
  margin-top: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow-y: scroll;
  max-height:50vh ;
  scrollbar-width: none;
}

.vx-related h4 {
  font-size: 13px;
  margin-bottom: 0px;
}
.vx-related p {
  font-size: 13px;
  margin-bottom: 0px;
}

/* GRID */

.vx-related-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  padding: 10px 0;
}

.vx-related-grid .vx-cart-item{
  padding: 10px;
  border: 1px solid rgb(220, 218, 218);
  margin-bottom: 0;
}

/* ITEM */
.vx-related-item {
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.vx-related-item img {
  width: 100%;
  border-radius: 8px;
}

.vx-related-item p {
  font-size: 13px;
  margin-top: 5px;
}

.vx-related-item:hover {
  transform: translateY(-3px);
}

.view-product{
  padding: 0px 15px 3px;
  color: white;
  font-size: 14px;
  background: #EC8B21;
  cursor: pointer;
  border: 1px solid #EC8B21;
  transition: .3s ease;
}
.view-product:hover{
  padding: 0px 15px 3px;
  color: #EC8B21;
  font-size: 14px;
  background: white;
}




/* ===========================Contact Page========================= */
/* SECTION */
.vx-contact-section {
  background: #FFFAF5;
  padding:  20px;
  font-family: 'Georgia', serif;
  color: #000;
}


/* TOP TEXT */
.vx-contact-top {
  text-align: center;
  margin-bottom: 50px;
}

.vx-contact-top h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.vx-contact-top p {
  font-size: 15px;
  margin: 5px 0;
}

/* FORM BOX */
.vx-contact-form {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.vx-contact-form h3 {
  font-size: 24px;
  margin-bottom: 40px;
}

/* ROW */
.vx-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.vx-row2 {
  display: flex;
  gap: 20px;
  flex-direction: column;
max-width: 600px;
width: 100%;

}

/* INPUT BOX */
.vx-input-box {
  width: 100%;
  text-align: left;
}

.vx-input-box label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.vx-input-box input,
.vx-input-box textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d8d0c8;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.eye-icon-pass{
  top: 37px;
  right: 13px;
}

/* BUTTON */
.vx-btn {
  margin-top: 25px;
  padding: 12px 40px;
  background: #EC8B21;
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  transition: 0.3s;
  width: 100%;
}

.vx-btn:hover {
  background: #b86001;
  transform: translateY(-5px);
}

/* NOTE */
.vx-note {
  margin-top: 20px;
  font-size: 12px;
  color: #555;
}



/* Documentation Pages (privacy-policy,terms-condition etc......) */

.documentaion-page p{
  font-size: 15px;
}
.documentaion-page h3{
  color: rgb(90, 89, 89);
}
.documentaion-page ul {
  padding: 10px;
  padding-left: 20px !important;
}
.documentaion-page ul li{
  list-style: disc;
  font-size: 15px;
}



/* Product Detail Page */






/* WRAPPER */
.pd-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 40px;

  display: flex;              /* ✅ use flex */
  gap: 50px;
  align-items: flex-start;    /* ✅ prevents stretch */
}

/* GALLERY */
.pd-gallery {
  display: flex;
  gap: 15px;
  width: 50%;
  /* overflow: hidden; */
}

/* THUMBNAILS */
.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-x: auto;   /* enable horizontal scroll */
  overflow-y: hidden; /* optional: disable vertical scroll */
  white-space: nowrap; /* keep items in one line */
  scrollbar-width: none;
}

.pd-thumbs::-webkit-scrollbar {
  display: none;
}


.pd-thumbs img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.pd-thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* MAIN IMAGE */
.pd-main {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #fff;
  position: relative;
/* 🔥 UX improvement */
}

/* IMAGE */
.pd-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.25s ease; /* 🔥 smoother zoom */
  will-change: transform;
}

/* 🔥 PREMIUM LENS */
.pd-zoom-lens {
  
  /* position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  display: none;

  background: rgba(255, 255, 255, 0.15);

  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);

  overflow: hidden;
  z-index: 5; */
}

/* 🔥 SHINE EFFECT */
.pd-zoom-lens::after {
  /* content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.5),
    transparent 60%
  ); */
}

/* 🔥 ZOOM CONTROLS */
.pd-zoom-controls {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.pd-zoom-controls button {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: #fff;

  font-size: 18px;
  cursor: pointer;

  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.pd-zoom-controls button:hover {
  background: #000;
  color: #fff;
}

/* 🔥 OPTIONAL: HOVER FEEL */
.pd-main:hover img {
  filter: brightness(1.02);
}
/* DETAILS */
.pd-details {
  width: 50%;
}

.pd-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* PRICE */
.pd-price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pd-old {
  text-decoration: line-through;
  color: #999;
}

.pd-new {
  font-size: 26px;
  font-weight: bold;
}

.pd-discount {
  color: #e53935;
  font-size: 14px;
}

/* RATING */
.pd-rating {
  margin: 10px 0;
  color: #ff9800;
}

/* OFFER */
.pd-offers-box {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

/* Header */
.pd-offers-header {
  background: linear-gradient(to left, #fd5e03, #EC8B21); /* your maroon tone */
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Each offer row */
.pd-offer-item {
  padding: 12px 15px;
  border-top: 1px solid #eee;
  font-size: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Optional hover */
.pd-offer-item:hover {
  background: #fafafa;
}

/* SIZE */
.pd-size-box p {
  margin-bottom: 8px;
  font-weight: 400;
}

.pd-sizes button {
  padding: 5px 13px;
  margin-right: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  background: white;
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.pd-sizes button.active {
  background: black;
  color: white;
}



/* Add to Cart, Buy Now Button  */
/* BUTTONS */
.pd-action-box {
  margin-top: 20px;
  font-family: Arial, sans-serif;
}

/* Top row */
.pd-top-row {
  display: flex;
  gap: 10px;
}

/* Quantity */
.pd-qty-box {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #EC8B21;
  border-radius: 12px;
  padding: 10px;
}

.pd-qty-box button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.pd-qty-box span {
  font-size: 18px;
}

/* Out of stock */
.pd-out-stock {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EC8B21;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  transition: .3s ease;
}
.pd-out-stock:hover{
  transform: translateY(-5px);
  background: #d87001;
}

/* Offer tag */
.pd-upi-offer {
  display: inline-block;
  background: #a8f0c0;
  color: #1a5c3a;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 6px;
  margin: 8px 0;
}

/* Buy button */
.pd-buy-upi {
  width: 100%;
  background: #EC8B21;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  text-align: left;
  cursor: pointer;
  transition: .3s ease;
}

.pd-buy-upi:hover{
  transform: translateY(-5px);
  background: #d87001;
}

/* Text */
.pd-buy-text {
  font-size: 16px;
  font-weight: 500;
}

/* ICON CONTAINER */
.pd-icons {
  position: absolute;
  right: 45px;
  top: 10px;
  display: flex;
  gap: 6px;
}

/* EACH ICON CIRCLE */
.pd-icon {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 6px;
}
.pd-icon:nth-child(1){
  right: 25px;
}
.pd-icon:nth-child(2){
  right: 12px;
}
.pd-icon:nth-child(3){
  right: 0px;
}

/* IMAGE INSIDE */
.pd-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Arrow (Bootstrap) */
.pd-arrow {
  position: absolute;
  right: 12px;
  top: 14px;
  font-size: 20px;
}

/* Powered text */
.pd-buy-upi small {
  display: block;
  font-size: 10px;
  margin-top: 6px;
  opacity: 0.85;
}




/* FEATURES */
.pd-features {
  margin-top: 20px;
  font-size: 14px;
}

.pd-features li {
  margin-bottom: 8px;
}

/* DESC */
.pd-desc {
  margin-top: 15px;
  color: #666;
  font-size: 14px;
}


.btn-review{
  font-size: 16px;
  text-transform: capitalize;
}


/* Accordion header */
.abc-header {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Divider */
.abc-item {
  border-bottom: 1px solid #ccc;
}

/* Content */
.abc-content {
  padding: 10px 0 5px;
}

/* Section titles (smaller now) */
.pd-title {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 10px;
  color: #222;
}

/* GRID */
.pd-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
}

/* Each spec */
.pd-spec-item span {
  font-size: 12px;
  color: #888;
}

.pd-spec-item p {
  font-size: 14px;
  margin-top: 2px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
  color: #222;
}

/* Text blocks */
.pd-text {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
}




/* Product detail dropdown */
/* WRAPPER */
.abc-accordion {
  width: 100%;
  border-top: 1px solid #e5e5e5;
  font-family: Arial, sans-serif;
}

/* ITEM */
.abc-item {
  border-bottom: 1px solid #e5e5e5;
}

/* HEADER */
.abc-header {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 5px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT ICON + TEXT */
.abc-header span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* RIGHT ARROW */
.abc-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* ACTIVE STATE */
.abc-header.active .abc-icon {
  transform: rotate(180deg);
}

/* CONTENT */
.abc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 13px;
  color: #444;
  padding: 0 5px;
}

/* OPEN */
.abc-content.open {
  padding: 10px 5px 15px;
}


/* TEXT */
.abc-label {
  font-weight: 600;
}






/* ===================*/
  .pd-secure {
  text-align: center;
  padding: 20px 0px;
  font-family: Arial, sans-serif;
}

/* Title */
.pd-secure-title {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  margin-bottom: 15px;
}

/* Payment Box */
.pd-payment-box {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fafafa;
  width: 100%;
}

/* Logos */
.pd-payment-box img {
  height: 100%;
  width: 23%;
  aspect-ratio: 7/2;
  object-fit: cover;
  object-position: center;
}

/* Features Row */
.pd-features-new {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  padding: 20px;
}

/* Each Feature */
.pd-feature {
  text-align: center;
}

/* Icons */
.pd-feature i {
  font-size: 35px;
  color: #222;
}

/* Text */
.pd-feature p {
  font-size: 16px;
  margin-top: 8px;
  color: #333;
  line-height: 1.3;
}
/* ===================*/






/* Review and Feedback style */
    .prx-review {
  padding: 30px;
  /* background: #f7f7f9; */
  font-family: 'Inter', sans-serif;
}

/* TOP SECTION */
.prx-top {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 30px;
  align-items: center;
}

/* RATING BOX */
.prx-rating-box h1 {
  font-size: 60px;
  font-weight: 700;
}

.prx-stars {
  color: #ffb400;
  font-size: 20px;
}

/* PROGRESS */
.prx-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.prx-bar {
  flex: 1;
  height: 6px;
  background: #e5e5e5;
  border-radius: 20px;
  overflow: hidden;
}

.prx-bar div {
  height: 100%;
  background: linear-gradient(90deg, #ff9800, #ff5722);
}

/* BUTTON */
.prx-action button {
  padding: 12px 18px;
  border: none;
  background: black;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.prx-action button:hover {
  transform: translateY(-2px);
}

/* GRID */
.prx-grid {
  margin-top: 30px;

  
}

/* CARD */
.prx-card {
  /* display: flex; */
  gap: 15px;
  padding: 18px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.6);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  margin-bottom: 20px;
}

.prx-card:hover {
  transform: translateY(-6px);
}

/* USER */
.prx-user {
/* aspect-ratio: 1/1; */
  /* border-radius: 50%; */
  display: flex;
  /* align-items: center; */
  justify-content: start;
  overflow: hidden;
}
.prx-user img{
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.prx-stars-fill {
  color: #ff9800;
}

.upload-image_row{
  display: flex;
  gap: 10px;
}


.user-upload img{
  width: 100%;
  max-width: 100px;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  object-fit: cover;
  object-position: top;
}




/* Review form Popup */
/* OVERLAY */
.uxr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999999991;
}

/* MODAL */
.uxr-modal {
  width: 95%;
  max-width: 650px;
  height: 500px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: uxrAnim 0.35s ease;
  overflow-y: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

@keyframes uxrAnim {
  from {opacity:0; transform: translateY(30px) scale(0.95);}
  to {opacity:1; transform: translateY(0) scale(1);}
}

/* HEADER */
.uxr-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uxr-head h2 {
  font-size: 22px;
  font-weight: 600;
}

.uxr-head span {
  cursor: pointer;
  font-size: 20px;
}

/* PRODUCT */
.uxr-product {
  text-align: center;
  margin: 20px 0;
}

.uxr-product img {
  width: 130px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.uxr-product p {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
  letter-spacing: 0.3px;
}

/* RATING */
.uxr-rating {
  text-align: center;
  margin-bottom: 15px;
}

.uxr-stars span {
  font-size: 30px;
  color: #ddd;
  cursor: pointer;
  transition: 0.2s;
}

.uxr-stars span:hover,
.uxr-stars span.active {
  color: #111;
  transform: scale(1.1);
}

#uxrLabel {
  margin-top: 6px;
  font-weight: 600;
}

/* FIELD */
.uxr-field {
  margin-top: 15px;
}

.uxr-field label {
  font-size: 14px;
}

.uxr-field span {
  color: red;
}

.uxr-field textarea {
  width: 100%;
  height: 90px;
  margin-top: 6px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.uxr-field textarea:focus {
  border-color: #000;
  outline: none;
}

/* UPLOAD */
.uxr-upload {
  margin: 18px 0;
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.uxr-upload:hover {
  border-color: #000;
  background: #fafafa;
}

.uxr-upload span {
  font-size: 24px;
}

.uxr-upload p {
  margin: 5px 0;
  font-weight: 500;
}

/* BUTTON */
.uxr-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #111, #333);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.uxr-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}





/* Account Page Before login */



/* LAYOUT */
.vx-layout {
  display: flex;
}

/* SIDEBAR (DESKTOP) */
.vx-sidebar-account {
  width: 240px;
  background: #fff;
  padding: 20px;
  display: none;
  height: 100vh;
  border-right: 1px solid #eee;
}

.vx-sidebar-account h2 {
  margin-bottom: 20px;
}

.vx-sidebar-account ul {
  list-style: none;
}

.vx-sidebar-account li {
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.vx-sidebar-account li.active,
.vx-sidebar-account li:hover {
  background: #f1f3f6;
}

/* MAIN */
.vx-account {
  flex: 1;
  /* max-width: 600px; */
  /* margin: auto; */
}

/* HEADER */
.vx-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  border-bottom: 1px solid #ddd;
}

.vx-header-left {
display: flex;
flex-direction: column;
width: 100%;

}

.new-log{
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: start;
}
.new-log i{
  font-size: 35px;
}
.new-log h2{
  font-size: 25px;
}

.vx-login-btn {
  background: #EC8B21;
  color: #fff;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

/* CARD */
.vx-card {
  background: #fff;
  margin: 10px;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.vx-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.vx-muted {
  font-size: 13px;
  color: #666;
}

/* ITEM */
.vx-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #eee;
  cursor: pointer;
}

.vx-item:first-child {
  border-top: none;
}

.vx-item:hover {
  background: #fafafa;
}

.vx-icon {
  color: #EC8B21;
  font-size: 18px;
}

.vx-item p {
  flex: 1;
  font-size: 14px;
  margin-bottom: 0;
}

.vx-item span {
  font-size: 12px;
  color: #777;
}

/* LANGUAGE */
.vx-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vx-lang span {
  padding: 6px 12px;
  background: #f1f3f6;
  border-radius: 20px;
  font-size: 12px;
}

.vx-more {
  color: #2874f0;
  font-weight: 500;
}








/* ===========================DASHBOARD NEW============================== */

/* MAIN BACKGROUND FULL WIDTH */
.brxud-main {
  background: #f1f3f6;
  min-height: 100vh;
  padding: 0;
  /* padding: 30px 0; */
}

/* CENTER CONTENT */
.brxud-wrapper {
  max-width: 900px;
  padding: 0;
}

/* USER CARD */
.brxud-user-card {
  background: #fff;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  margin-top: 15px;
}

.brxud-coin img{
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.brxud-user-card span {
  color: #EC8B21;
}

/* BOX */
.brxud-box {
  display: block;
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
  border: 1px solid #fca84e35;
}

.brxud-box i {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  color: #EC8B21;
}

.brxud-box:hover {
  transform: translateY(-5px);
}

/* VERIFY */
.brxud-verify {
  background: #fff;
  padding: 15px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-radius: 10px;
}

.brxud-verify button {
  background: #EC8B21;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
}

/* SECTION */
.brxud-section {
  background: #fff;
  margin-top: 10px;
  padding: 12px;
  border-radius: 10px;
}

.brxud-section h4 {
  margin-bottom: 8px;
}

/* ITEM */
.brxud-item {
  display: flex;
  align-items: center;
  padding: 12px 5px;
  text-decoration: none;
  color: #333;
  border-top: 1px solid #eee;
}

.brxud-item:first-child {
  border-top: none;
}

.brxud-item i:first-child {
  color: #EC8B21;
  margin-right: 10px;
}

.brxud-item p {
  flex: 1;
  margin-bottom: 0;
}

/* LOGOUT */
.brxud-logout {
  text-align: center;
  margin: 15px 0;
  border-radius: 10px;
  padding: 20px;
  background: #EC8B21;
}

.brxud-logout a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}







/* ======================New User Information Page=============================== */


    /* UNIQUE PREFIX: ux- */
   

    .ux-container {
      display: flex;
      min-height: 100vh;
      
    }

    /* Sidebar */
    .ux-sidebar {
      width: 270px;
      background: #fff;
      padding: 20px;
      border-right: 1px solid #e5e7eb
    }

    .ux-user-box {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      /* border-bottom: 1px solid black; */
    }

    .ux-avatar {
      width: 45px;
      height: 45px;
      object-fit: cover;
      object-position: center;
      border-radius: 50%;
      overflow: hidden;
      /* background: #ffd54f */
    }
    .ux-avatar img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .ux-user-text small {
      color: #777
    }

    .ux-menu-title {
      font-size: 12px;
      color: #888;
      padding: 15px 0 8px;
      margin-bottom: 5px;
      border-bottom: 1px solid rgba(128, 128, 128, 0.142);
    }
    .ux-menu-title i{
      margin-right: 10px;
    }

    .ux-menu a {
      display: block;
      padding: 10px;
      border-radius: 6px;
      text-decoration: none;
      color: #333;
      font-size: 14px
    }
    .ux-menu a i{
      margin-right: 5px;
      color: #EC8B21;
    }

    .ux-menu a:hover,
    a.ux-active {
      background: #fddcbb44;
      color: #EC8B21;
    }

    /* Main */
    .ux-main {
      flex: 1;
      padding: 25px
    }

    .ux-card {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #e5e7eb;
      margin-bottom: 20px
    }

    .ux-card h3 {
      font-size: 16px;
      margin-bottom: 15px
    }

    .ux-row {
      display: flex;
      gap: 15px;
      flex-wrap: wrap
    }

    .ux-field {
      flex: 1;
      min-width: 200px
    }

    .ux-field input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      background: #f9fafb
    }

    .ux-disabled input {
      pointer-events: none;
      background: #f3f4f6
    }

    .ux-edit-btn {
      font-size: 13px;
      color: #2874f0;
      cursor: pointer;
      margin-left: 10px
    }

    .ux-save-btn {
      margin-top: 15px;
      background: #2874f0;
      color: #fff;
      padding: 10px 18px;
      border: none;
      border-radius: 6px;
      cursor: pointer
    }




    /* Search Baar on header top */


    /* Container */
.xzcv-search-container {
  width: 100%;
  padding: 12px 16px;
  background: transparent ;
}

/* Search Box */
.xzcv-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  border: 2px solid rgba(236, 139, 33, 0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-color: #EC8B21;
  
}

/* Hover */
.xzcv-search-box:hover {
  box-shadow: 0 6px 18px rgba(236,139,33,0.2);
}

/* Focus */
/* .xzcv-search-box:focus-within {
  
  box-shadow: 0 6px 20px rgba(236,139,33,0.3);
} */

/* Icon */
.xzcv-search-icon {
  width: 20px;
  height: 20px;
  stroke: #EC8B21;
}

/* Input */
.xzcv-search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: transparent;
}

.xzcv-search-box input::placeholder {
  color: #999;
}





/* Search Baar Discover more */

/* Container */
.xzcv-discover {
  padding: 20px 16px;
  font-family: 'Poppins', sans-serif;
}

/* Title */
.xzcv-discover h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 500;
}

/* Tags Wrapper */
.xzcv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* Tag Button */
.xzcv-tags a {
  text-decoration: none;
  font-size: 13px;
      padding: 3px 7px;
    border-radius: 4px;

  font-weight: 300;
  background: #fff;
  color: #EC8B21;
  border: 1px solid rgba(236, 139, 33, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Hover Premium Effect */
.xzcv-tags a:hover {
  background: #EC8B21;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236,139,33,0.3);
}

/* Active Click Effect */
.xzcv-tags a:active {
  transform: scale(0.95);
}


.search-related a{
  font-size: 12px;
  color: #EC8B21;
}




/* =========================Size Chart Pop up=========================== */
.abc-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  /* position: relative; */
  z-index: 99999999999999;
}

/* ===== MODAL ===== */
.abc-modal {
  width: 95%;
  max-width: 780px;
/* margin-top: 102px; */
    height: 80vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  
}

/* ===== HEADER ===== */
.abc-header {
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  position: relative;
}

.abc-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

.abc-subtitle {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

.abc-close {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
}

/* ===== BODY ===== */
.abc-body {
  padding: 12px 16px;
  overflow-y: auto;
  font-size: 13px;
  color: #333;
}

/* ===== TABS ===== */
.abc-tabs {
  text-align: center;
  margin: 10px 0;
  font-size: 12px;
}

.abc-tabs span {
  margin: 0 6px;
  cursor: pointer;
  color: #007bff;
}

.abc-tabs span:last-child {
  color: #888;
}

/* ===== TABLE ===== */
.abc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.abc-table th,
.abc-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.abc-table th {
  font-weight: 600;
  background: #f5f5f5;
}

/* ===== IMAGE ===== */
.abc-img-wrap {
  text-align: center;
  margin: 20px 0;
}

.abc-img-wrap img {
  width: 220px;
  max-width: 100%;
}

/* ===== NOTES ===== */
.abc-notes {
  font-size: 12px;
  line-height: 1.6;
}

.abc-notes li {
  margin-bottom: 6px;
}



    .brx-blog-title {
        font-size: 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .brx-blog-title a i {
        font-size: 30px;

    }
 








/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  /* .pd-wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
  } */




  .pd-gallery {
    flex-direction: column-reverse;
  }

  .pd-thumbs {
    flex-direction: row;
    justify-content: start;
  }

  /* .pd-main img {
    height: 350px;
    object-position: top;
  } */
}



@media (max-width: 768px) {

  .pd-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .pd-gallery,
  .pd-details {
    width: 100%;
  }

  .pd-thumbs {
    flex-direction: row;   /* thumbnails horizontal */
    overflow-x: auto;
  }

  .vx-topbar-mobile {
    display: flex;
  }
    .vx-header-left{
    display: flex;
  }

  .vx-layout {
    flex-direction: column;
  }

  .vx-sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
    transition: 0.3s;
  }

  .vx-sidebar.vx-open {
    left: 0;
  }

  .vx-sidebar-header {
    display: flex;
  }
  .vx-sidebar-header span{
    display: block;
    cursor: pointer;
}

  .vx-content {
    padding: 15px;
  }

  .vx-content-top {
    display: none;
  }


  /* cart section */
    /* .vx-cart-drawer {
    width: 100%;
  } */


 /* Search Baar Popup */



  .vx-srch-modal {
    top: 6%;
  }

  .vx-related-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  /* contact Page */
     .vx-row {
    flex-direction: column;
    gap: 15px;
  }

  .vx-contact-top h2 {
    font-size: 24px;
  }

  .vx-contact-form h3 {
    font-size: 20px;
  }




  /* review and Feedback style */
    .prx-top {
    grid-template-columns: 1fr;
  }




  /* full Cart Page */

    .vx-cart-container {
    grid-template-columns: 1fr;
  }

  /* .vx-cart-card {
    flex-direction: column;
  } */

  .vx-cart-card img {
    width: 100px;
    height: 120px;
  }



  /* footer In phone size */

  .extra-space{
    height: 30px;
    width: 100%;
    background: transparent;
  }


        .ux-sidebar {
        display: none
      }

      .ux-main {
        padding: 15px
      }


      /* Search Box */
.xzcv-search-container {
  width: 100%;
  background: white;
    position: absolute;
    left: 0;
    bottom: -90px;
    
}




.abc-modal {

/* margin-top: 130px; */
    height: 90vh;
 
}

}

@media (max-width: 600px) {
  .xzcv-search-box {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .xzcv-search-box input {
    font-size: 14px;
  }





  /* size chart modal */
    

  .abc-table th,
  .abc-table td {
    padding: 6px;
    font-size: 11px;
  }


    .abc-header {
    font-size: 12px;
    padding: 12px 8px;
  }
}


@media (max-width:500px) {
  .documentaion-page p{
  font-size: 14px;
}
.vx-contact-section.active{
  padding: 60px 5px;
}
  
}




/* RESPONSIVE */
@media(max-width:480px){
  .uxr-modal {
    padding: 18px;
  }

  .uxr-product img {
    width: 110px;
    height: 130px;
  }

  .uxr-head h2 {
    font-size: 18px;
  }
}



@media (max-width:400px) {
  .documentaion-page p{
  font-size: 13px;
}
.documentaion-page ul li{
  font-size: 13px;
}
  
}