@import url(mainstyle.css);

* {
  font-family: var(--primefont);
}
a {
  color: inherit;
  text-decoration: none;
}

[data-ornuvia-theme="dark"] [data-logo="dark"],
[data-ornuvia-theme="light"] [data-logo="light"] {
  display: block;
}

[data-ornuvia-theme="dark"] [data-logo="light"],
[data-ornuvia-theme="light"] [data-logo="dark"] {
  display: none;
}
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 36px;
  padding: 8px 18px;
  overflow: hidden;
  color: #3b111c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 1.4px;
  text-align: center;
  text-transform: uppercase;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.55) 44%, rgba(255, 255, 255, 0) 63%),
    linear-gradient(135deg, #ffe5ec 0%, #f8becb 52%, #f7a8b8 100%);
  background-size: 220% 100%, 100% 100%;
  border-bottom: 1px solid rgba(229, 143, 162, 0.48);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transition: filter 0.25s ease, color 0.25s ease;
  animation: announcementShimmer 7s ease-in-out infinite;
}
.announcement-bar:hover,
.announcement-bar:focus {
  color: #1f080d;
  filter: brightness(1.06);
}
.announcement-bar:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -4px;
}
.announcement-bar__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d41646;
  box-shadow: 0 0 0 4px rgba(212, 22, 70, 0.12), 0 0 12px rgba(212, 22, 70, 0.72);
  animation: livePulse 1.8s ease-in-out infinite;
}
.announcement-bar__text {
  display: inline-block;
}
@keyframes announcementShimmer {
  0%,
  38% {
    background-position: -160% 0, 0 0;
  }
  76%,
  100% {
    background-position: 160% 0, 0 0;
  }
}
@keyframes livePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}
.nav-link {
  color: var(--nav-text);
}
.nav-item.active .nav-link,
.nav-item .nav-link:hover, .nav-link:focus {
  color: var(--prime-text) !important;
}
.navbar {
  min-height: 100px;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.navbar-brand img {
  display: block;
  height: 180px;
  margin-top: -40px;
  margin-bottom: -40px;
  width: auto;
}
.theme-btn{
  width: 50px;
}
.cart-toggle{
  position: relative;
  background: var(--prime-bg);
  color: var(--nav-text);
  border: 1px solid var(--prime-bg);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.cart-toggle:hover{
  background: var(--prime-btn2);
  color: var(--prime-btn-text);
}
.cart-count-badge{
  position: absolute;
  top: -6px;
  right: -6px;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.add-to-cart-btn{
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.product-category-wrap {
  position: relative;
}
.product-category-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--prime-bg) transparent;
}
.product-category-filters::-webkit-scrollbar {
  height: 5px;
}
.product-category-filters::-webkit-scrollbar-track {
  background: transparent;
}
.product-category-filters::-webkit-scrollbar-thumb {
  background: rgba(247, 168, 184, 0.65);
  border-radius: 999px;
}
.product-category-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 15px;
  color: var(--para-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background: rgba(247, 168, 184, 0.1);
  border: 1px solid rgba(247, 168, 184, 0.45);
  border-radius: 999px;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.product-category-btn:hover,
.product-category-btn:focus {
  color: #000000;
  background: #ffdbe4;
  border-color: var(--prime-bg);
  box-shadow: 0 8px 22px rgba(247, 168, 184, 0.18);
}
.product-category-btn.active {
  color: #000000;
  background: linear-gradient(135deg, #ffe5ec 0%, var(--prime-bg) 100%);
  border-color: var(--prime-bg);
  box-shadow: 0 10px 26px rgba(247, 168, 184, 0.24);
}
.product-category-count {
  min-width: 20px;
  padding: 4px 6px;
  color: #000000;
  font-size: 11px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}
.product-card-shell {
  animation: productFadeIn 0.34s ease both;
}
.product-card {
  min-height: 100%;
}
.product-card .card-body {
  min-height: 124px;
}
.product-name {
  min-height: 42px;
}
.product-image-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  min-height: 450px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 241, 244, 0.28), rgba(255, 241, 244, 0) 62%),
    #080808;
  box-shadow: inset 0 0 36px rgba(255, 229, 236, 0.06);
}
.product-image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.58;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 72%, rgba(247, 168, 184, 0.26) 0 1px, transparent 2px),
    linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.16) 48%, transparent 68%);
  background-size: 100% 100%, 100% 100%, 230% 100%;
  background-position: center, center, -120% 0;
  transition: opacity 0.45s ease, background-position 0.75s ease;
}
.product-card-img{
  display: block;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.18) contrast(1.13) saturate(1.035) drop-shadow(0 14px 22px rgba(0, 0, 0, 0.3));
  image-rendering: auto;
  transform: translateZ(0);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.product-card:hover .product-card-img {
  transform: scale(1.065);
  filter: brightness(1.24) contrast(1.17) saturate(1.045) drop-shadow(0 20px 30px rgba(247, 168, 184, 0.24));
}
.product-card:hover .product-image-frame::after {
  opacity: 0.82;
  background-position: center, center, 120% 0;
}
.product-empty {
  padding: 36px 18px;
  text-align: center;
  border: 1px solid rgba(247, 168, 184, 0.2);
  background: rgba(247, 168, 184, 0.06);
}
@keyframes productFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.showcase-video-frame{
  position: relative;
  height: 450px;
  overflow: hidden;
}
.showcase-video-frame video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.showcase-video-overlay{
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 10px 14px;
  color: #f8dfe8;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.68));
  opacity: 0.86;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.showcase-video-card:hover .showcase-video-frame video{
  transform: scale(1.035);
  filter: brightness(1.08);
}
.showcase-video-card:hover .showcase-video-overlay{
  opacity: 1;
}
.btn-close{
  color:var(--prime-btn-text) !important;
}
.jewelry-banner-section {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),  url('../../assets/images/banner.webp')no-repeat;
    background-size: cover;
    background-position: center;  
    min-height: 650px;
}

.promo-banner {
    height: 500px; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; 
}
.promo-banner h3{
  text-shadow:
  1px 1px 10px black,
  0 0 1em rgb(226, 226, 230),
  0 0 0.2em rgb(243, 243, 250);
}
.card {
  position: relative;
  overflow: hidden;
  transition: 0.5s all;
}

/* Shine effect */
.card::before {
  position: absolute;
  content: "";
  top: -10%;
  left: -100%;
  width: 50%;
  height: 300%;
  transform: rotate(-45deg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 100px 40px rgba(255, 255, 255, 0.08);
  transition: 0.7s all;
}

/* Hover effect */
.card:hover::before {
  left: 200%;
  top: -100%;
}

.card:hover {
  transform: scale(1.015);
  filter: brightness(1.15);
  box-shadow: 0 7px 30px 5px rgba(0, 0, 0, 0.4);
}

.engagement-rings {
    background-image: url('../../assets/images/Engagement-Rings.webp');
}

.diamond-necklace {
    background-image: url('../../assets/images/Diamond-Necklace.webp') ; 
}

@media (max-width: 991.98px) {
    .product-image-frame,
    .showcase-video-frame {
      min-height: 380px;
      height: 380px;
    }
}

@media (max-width: 767.98px) {
    .announcement-bar {
      min-height: 34px;
      padding: 7px 12px;
      gap: 7px;
      font-size: 11px;
      letter-spacing: 0.9px;
    }
    .announcement-bar__dot {
      width: 7px;
      height: 7px;
    }
    .product-category-filters {
      gap: 8px;
      margin-right: -12px;
      padding-bottom: 12px;
      scroll-padding-left: 2px;
    }
    .product-category-btn {
      min-height: 40px;
      padding: 10px 13px;
      font-size: 11px;
      letter-spacing: 0.55px;
    }
    .product-image-frame {
      min-height: 340px;
      height: 340px;
      padding: 14px;
    }
    .showcase-video-frame {
      height: 340px;
    }
    .product-card .card-body {
      min-height: 122px;
    }
    .promo-banner{
        height: 450px; 
    }
    .jewelry-banner-section{
      height: 450px;
    }
    .jewelry-banner-section h1{
      font-size: 40px;
    }
    .water-sustainability-banner{
      height: 400px;
    }
  }

.store-banner {
    min-height: 650px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)), 
        url('../../assets/images/second-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.form-control:focus{
 border: 1px solid white;
  box-shadow: none;
}
.input-text::placeholder {
  color: var(--input-text) !important;  
}
#backtotop.show {
    opacity: 1;
    visibility: visible;
}
#backtotop {
    position: fixed;
    bottom: 40px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    width: 50px !important;
    min-width: unset;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-close{
    background: unset !important;
}
.error{
  color: red;
  font-size: 14px;
}
#newsletter div.error{
  position: absolute;
  bottom: -20px;
}

footer a {
  transition: color 0.3s ease;
}
footer a:hover {
  color: var(--prime-bg) !important;
}

footer .footer-logo {
  filter: brightness(0) invert(1);
  height: 50px;
  width: auto;
  display: block;
  margin-top: -80px;
  transform: scale(5);
  transform-origin: left top;
}

footer .col-lg-4 .list-unstyled {
  margin-top: 140px;
}

/* Cart Drawer */
.cart-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1040;
}
.cart-drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #000000;
  color: #ffffff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open{
  transform: translateX(0);
}
.cart-overlay.open{
  opacity: 1;
  visibility: visible;
}
.cart-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cart-title{
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.5px;
}
.cart-close{
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 18px;
}
.cart-body{
  padding: 16px 20px;
  flex: 1;
  overflow-y: auto;
}
.cart-empty{
  text-align: center;
  color: rgba(255,255,255,0.7);
  padding: 40px 10px;
}
.cart-item{
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-item img{
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}
.cart-item-title{
  font-size: 14px;
  margin: 0 0 6px;
}
.cart-item-meta{
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.cart-item-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.qty-controls{
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
}
.qty-controls button{
  background: transparent;
  color: #ffffff;
  border: 0;
  width: 28px;
  height: 28px;
}
.qty-controls span{
  width: 28px;
  text-align: center;
  font-size: 13px;
}
.cart-item-price{
  font-weight: 600;
  font-size: 14px;
}
.cart-remove{
  background: transparent;
  border: 0;
  color: #F7A8B8;
  font-size: 12px;
}
.cart-summary{
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cart-summary-row{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}
.cart-summary .prime-btn{
  background: #F7A8B8;
  color: #000000;
}
.cart-summary .prime-btn:hover{
  background: #E58FA2;
}

.checkout-page{
  min-height: 100vh;
  background: #0f0f0f;
  color: #ffffff;
}
.checkout-page .checkout-card{
  background: #000000;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}
.checkout-summary{
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}
.checkout-item{
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.checkout-item img{
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}
.checkout-item-title{
  font-size: 14px;
  margin: 0 0 4px;
}
.checkout-item-meta{
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.checkout-item-total{
  font-weight: 600;
  font-size: 14px;
}
.checkout-row{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}
.paypal-status{
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}
.paypal-status.success{
  color: #bdf2cf;
}
.paypal-status.error{
  color: #ffd0d0;
}
@media (max-width: 420px) {
    .product-image-frame,
    .showcase-video-frame {
      min-height: 310px;
      height: 310px;
    }
}
@media (max-width: 575.98px){
  .cart-drawer{
    width: 100%;
  }
  .cart-item{
    grid-template-columns: 60px 1fr;
  }
}
