.boxshadow-css {
  padding: 10px;
}

.card-product.style-1 {
  /* background: linear-gradient(
    135deg,
    #fffbea,
    #fef6d3
  );  
  border-radius: 16px;
  border: 2px solid #e6c200;  
  padding: 20px; */

  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25), 0 0 10px rgba(128, 128, 128, 0.4),
    0 0 4px rgba(255, 255, 255, 0.6) inset, 0 0 1px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  border-radius: 16px;
}

.card-product.style-1:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 223, 0, 0.45); /* brighter gold glow */
}

.flat-spacing-curated-classics {
  padding-top: 40px !important;
  padding-bottom: 40px;
}

.tf-social-icon.style-large .social-facebook {
  background: var(--facebook-cl);
  color: var(--white);
  border: transparent;
}
.tf-social-icon.style-large .social-x {
  background: var(--twitter-cl);
  color: var(--white);
  border: transparent;
}
.tf-social-icon.style-large .social-instagram {
  background: var(--instagram-cl);
  color: var(--white);
  border: transparent;
}
.tf-social-icon.style-large .social-snapchat {
  background-color: var(--snapchat-cl);
  color: var(--white);
  border: transparent;
}
.tf-social-icon.style-large .social-linkedin {
  background: var(--linked_in-cl);
  color: var(--white);
  border: transparent;
}

.bg-light-image-add {
  background: url(../images/new-background/back-ground7.jpg);
  background-size: cover;
  background-attachment: fixed; /* Optional: parallax effect */
  width: 100%;
  min-height: 400px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.bg-light-image-shpo-look {
  background: url(../images/new-background/back-ground5.jpg);
  background-size: cover;
  background-attachment: fixed; /* Optional: parallax effect */
  width: 100%;
  min-height: 400px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.bg-light-image-footer {
  background: url(../images/new-background/back-ground7.jpg);
  background-size: cover;
  background-attachment: fixed; /* Optional: parallax effect */
  background-color: rgba(255, 255, 255, 0.3);
  /* width: 100%; */
  min-height: 400px; /* Adjust as needed */
  /* display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px; */
}

.tf-icon-box.style-2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffd700, #ffcc00, #ffa500, #ffd700);
  border-radius: 16px;
  padding: 20px;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.tf-icon-box.style-2::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  animation: sheen 5s linear infinite;
  transform: rotateZ(25deg);
}

@keyframes sheen {
  0% {
    transform: translateX(-100%) rotateZ(25deg);
  }
  100% {
    transform: translateX(100%) rotateZ(25deg);
  }
}

.tf-btn.btn-yellow {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tf-btn.btn-yellow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-25deg);
  z-index: 2;
}

.tf-btn.btn-yellow:hover::before {
  animation: shine 1s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.topbar-bg-new {
  background: linear-gradient(135deg, #ffd700, #ffcc00, #ffa500, #ffd700);
}

/* =============================================== */

.right-grid {
  padding-left: 20px;
}

.grid-2x4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 15px;
}

.grid-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.grid-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.grid-box img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 576px) {
  .grid-2x4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
  }
}

/* ============================================= */

@media (max-width: 576px) {
  .tf-view-layout-switch.sw-layout-5 {
    display: none;
  }

  .tf-view-layout-switch.sw-layout-6 {
    display: none;
  }
}

.variants {
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
}

.variants label {
  margin-right: 8px;
}

.variants select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 12px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  transition: border 0.3s;
}

.variants select:focus {
  border-color: #999;
}

.gold-specs-table {
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
}

.table-gold-specs {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  background-color: #fffdfa;
  border: 1px solid #e4d5c7;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.table-gold-specs thead {
  background: linear-gradient(to right, #d4af37, #f6e27a);
  color: #3b2f1b;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.table-gold-specs th,
.table-gold-specs td {
  border: 1px solid #f2e7dc;
  padding: 8px 16px;
  vertical-align: middle;
  text-align: left;
  color: #3e342d;
}

.table-gold-specs th {
  font-size: 16px;
}

.table-gold-specs tbody tr:nth-child(even) {
  background-color: #fdf7ee;
}

.table-gold-specs tbody tr:hover {
  background-color: #fff5dc;
  transition: 0.3s ease;
}

.text-delivered {
  font-weight: bold;
  color: #a26a00;
  /* Warm gold tone */
}

.on-sale-item-product-details {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  word-break: break-word;
  padding: 0px 10px;
  min-width: 50px;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  height: 26px;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 22px;
}


.tf-product-info-wrap .tf-product-info-trust-seal .card-item.product-detils-img {
  width: 100px;
  height: 100px;
  border: 1px solid #ffffff00;
  border-radius: 2.5px; 
}