:root {
  --gj-black: #0a0a0a;
  --gj-white: #ffffff;
  --gj-off-white: #f8f7f5;
  --gj-light-grey: #f2f2f2;
  --gj-border: #e0e0e0;
  --gj-text: #000000;
  --gj-text-mid: #646464;
  --gj-text-light: #d6d6d6;
  --gj-font-serif: "Playfair Display", Georgia, serif;
  --gj-font-sans: "Roboto", sans-serif;
  --gj-transition: 0.3s ease;
  --gj-header-h: 64px;
  --gj-announce-h: 52px;
  --gj-fs-hero: 48px;
  --gj-lh-hero: 62px;
  --gj-fs-h1: 32px;
  --gj-lh-h1: 40px;
  --gj-fs-h2: 24px;
  --gj-lh-h2: 36px;
  --gj-fs-h4: 21px;
  --gj-lh-h4: 32px;
  --gj-fs-h5: 18px;
  --gj-lh-h5: 28px;
  --gj-fs-body: 16px;
  --gj-lh-body: 28px;
  --gj-fs-small: 16px;
  --gj-lh-small: 24px;
  --gj-fs-caption: 16px;
  --gj-lh-caption: 28px;
  --gj-ls-caption: 0.102px;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-body);
  line-height: var(--gj-lh-body);
  color: var(--gj-text);
  background: var(--gj-white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--gj-transition);
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

address {
  font-style: normal;
}

.gj-section-title {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h1);
  line-height: var(--gj-lh-h1);
  font-weight: 400;
  color: var(--gj-text);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0px;
}

.gj-announcement-bar {
  background: var(--gj-black);
  padding: 10px 0px;
  text-align: center;
}

.gj-announcement-text {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-small);
  font-weight: 500;
  line-height: var(--gj-lh-small);
  color: rgba(255, 255, 255, 0.85);
  margin: 0px;
}

.gj-announcement-text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.gj-announcement-text a:hover {
  color: var(--gj-white);
}

.gj-header {
  position: sticky;
  top: 0px;
  z-index: 1000;
  background: var(--gj-white);
  border-bottom: 1px solid var(--gj-border);
  transition: box-shadow var(--gj-transition);
}

.gj-header.scrolled {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 16px;
}

.gj-navbar {
  padding: 0px;
  min-height: var(--gj-header-h);
}

.gj-nav-container {
  padding: 0px 24px;
  min-height: var(--gj-header-h);
  display: flex;
  align-items: center;
}

.gj-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.gj-logo-img {
  max-width: 180px;
  height: auto;
}

.gj-footer-logo-img {
  max-width: 250px;
  height: auto;
}

.gj-logo-text {
  font-family: var(--gj-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gj-text);
  white-space: nowrap;
}

.gj-nav-menu {
  gap: 0px;
}

.gj-nav-link {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-caption);
  font-weight: 500;
  line-height: var(--gj-lh-caption);
  white-space: nowrap;
  position: relative;
  color: var(--gj-text-mid) !important;
  padding: 8px 14px !important;
  transition: color var(--gj-transition) !important;
}

.gj-nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gj-text);
  transform: scaleX(0);
  transition: transform var(--gj-transition);
}

.gj-nav-link:hover::after,
.gj-nav-link.active::after {
  transform: scaleX(1);
}

.gj-nav-link:hover {
  color: var(--gj-text) !important;
}

.gj-nav-dropdown .dropdown-toggle::after {
  display: none;
}

.gj-nav-dropdown .dropdown-menu {
  border: 1px solid var(--gj-border);
  border-radius: 0px;
  padding: 8px 0px;
  margin-top: 0px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 24px;
}

.gj-nav-dropdown .dropdown-item {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-small);
  line-height: var(--gj-lh-small);
  padding: 8px 20px;
  color: var(--gj-text-mid);
}

.gj-nav-dropdown .dropdown-item:hover {
  background: var(--gj-off-white);
  color: var(--gj-text);
}

.gj-signin-btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--gj-black);
  color: var(--gj-white);
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-caption);
  font-weight: 600;
  line-height: var(--gj-lh-caption);
  letter-spacing: var(--gj-ls-caption);
  border-radius: 0px;
  transition: var(--gj-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.gj-signin-btn:hover {
  background: rgb(51, 51, 51);
  color: var(--gj-white);
}

.gj-toggler {
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
}

.gj-toggler:focus {
  outline: none;
  box-shadow: none !important;
}

.gj-toggler-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gj-text);
  transition: var(--gj-transition);
}

.gj-hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--gj-white);
}

.gj-hero-viewport {
  overflow: hidden;
  width: 100%;
}

.gj-hero-track {
  display: flex;
  width: 100%;
  transition: transform 1.35s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.gj-hero-slide {
  flex: 0 0 100%;
  position: relative;
  width: 100%;
  min-height: 696px;
  overflow: hidden;
}

.gj-hero-media {
  position: absolute;
  inset: 0px;
  z-index: 0;
}

.gj-hero-media--video {
  background: rgb(0, 0, 0);
}

.gj-hero-video {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gj-hero-bg {
  position: absolute;
  inset: 0px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.gj-hero-bg--wedding-fallback {
  display: none;
  background-image: url("../img/banner1.mp4");
  background-position: 65% center;
}

.gj-hero-bg--fine {
  background-image: url("../img/banner2.webp");
  background-position: 78% center;
}

.gj-hero-bg--gemstones {
  background-image: url("../img/banner3.webp");
  background-position: 70% center;
}

.gj-hero-overlay {
  position: absolute;
  inset: 0px;
  z-index: 1;
  pointer-events: none;
}

.gj-hero-overlay--wedding {
  background: linear-gradient(rgba(0, 0, 0, 0) 2.4%, rgba(0, 0, 0, 0.3) 76.26%);
}

.gj-hero-overlay--gemstones {
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 71.78%);
}

.gj-hero-overlay--fine {
  background: linear-gradient(rgba(0, 0, 0, 0) 2.4%, rgba(0, 0, 0, 0.3) 76.26%);
}

.gj-hero-content-wrap {
  position: absolute;
  inset: 0px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 0px clamp(24px, 10%, 152px) clamp(48px, 8%, 80px);
}

.gj-hero-content {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gj-hero-title {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-hero);
  line-height: var(--gj-lh-hero);
  font-weight: 400;
  letter-spacing: 0px;
  margin-bottom: 8px;
}

.gj-hero-subtitle {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h2);
  line-height: var(--gj-lh-h2);
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.gj-hero-content--light .gj-hero-title,
.gj-hero-content--light .gj-hero-subtitle {
  color: var(--gj-white);
}

.gj-hero-btn {
  display: inline-block;
  padding: 8px 16px;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  background: var(--gj-white);
  color: var(--gj-text);
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-caption);
  font-weight: 600;
  line-height: var(--gj-lh-caption);
  letter-spacing: var(--gj-ls-caption);
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  transition: var(--gj-transition);
}

.gj-hero-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gj-text);
}

.gj-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}

.gj-slider-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 0px;
  border: 1px solid var(--gj-border);
  border-radius: 50%;
  background: var(--gj-white);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color var(--gj-transition),
    color var(--gj-transition),
    opacity var(--gj-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gj-slider-arrow--prev {
  color: rgb(200, 200, 200);
}

.gj-slider-arrow--next {
  color: var(--gj-text);
}

.gj-slider-arrow:hover:not(.is-disabled) {
  border-color: var(--gj-text-mid);
  color: var(--gj-text);
}

.gj-slider-arrow.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.gj-slider-progress {
  width: 130px;
  height: 2px;
  background: var(--gj-border);
  position: relative;
  flex-shrink: 0;
  border-radius: 1px;
}

.gj-progress-bar-inner {
  position: absolute;
  left: 0px;
  top: -0.5px;
  width: 33%;
  height: 3px;
  background: var(--gj-black);
  border-radius: 1px;
  transition: left 0.35s;
}

.gj-diamond-shape-section {
  padding: 60px 0px 50px;
  background: var(--gj-white);
}

.gj-shape-slider-wrap {
  display: block;
}

.gj-shape-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  flex: 1 1 0%;
}

.gj-shape-slider::-webkit-scrollbar {
  display: none;
}

.gj-shape-item {
  flex: 0 0 calc(16.66% - 10px);
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  scroll-snap-align: start;
  cursor: pointer;
}

.gj-shape-img-box {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--gj-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 32px;
  transition: var(--gj-transition);
  background: var(--gj-white);
}

.gj-shape-img-box:hover {
  border: 1px solid #a4a4a4;
  background-color: #f3f3f3;
}

.gj-shape-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.gj-shape-img-box:hover .gj-shape-img {
  transform: scale(1.3);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.gj-shape-label {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-small);
  font-weight: 400;
  line-height: var(--gj-lh-small);
  color: var(--gj-text-mid);
  letter-spacing: 0px;
  display: block;
  text-align: center;
  margin-top: 15px;
}

.gj-new-arrivals-section {
  padding: 60px 0px;
  background: rgb(245, 241, 239);
  border-top: 1px solid var(--gj-border);
}

.gj-arrival-card {
  display: block;
  cursor: pointer;
}

.gj-arrival-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgb(240, 235, 227);
}

.gj-arrival-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gj-arrival-card:hover .gj-arrival-img {
  transform: scale(1.04);
}

.gj-arrival-name {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-small);
  font-weight: 400;
  line-height: var(--gj-lh-small);
  color: var(--gj-text);
  margin-top: 10px;
  text-align: center;
}

.gj-arrivals-footer {
  text-align: center;
  margin-top: 40px;
}

.gj-view-all-btn {
  display: inline-block;
  padding: 14px 60px;
  border: 1px solid var(--gj-text);
  background: var(--gj-white);
  color: var(--gj-text);
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h5);
  font-weight: 400;
  line-height: var(--gj-lh-h5);
  letter-spacing: 0px;
  transition: var(--gj-transition);
}

.gj-view-all-btn:hover {
  background: var(--gj-text);
  color: var(--gj-white);
}

.gj-diamond-colors-section {
  padding: 60px 0px 50px;
  background: var(--gj-off-white);
  border-top: 1px solid var(--gj-border);
}

.gj-colors-slider-wrap {
  display: block;
}

.gj-colors-slider {
  display: flex;
  gap: 0px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  flex: 1 1 0%;
}

.gj-colors-slider::-webkit-scrollbar {
  display: none;
}

.gj-color-item {
  flex: 0 0 calc(16.66% - 10px);
  min-width: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  scroll-snap-align: start;
  cursor: pointer;
  padding: 0px 0px;
}

.gj-color-gem-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.gj-color-gem-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.gj-color-item:hover .gj-color-gem-img {
  transform: translateY(-4px);
}

.gj-color-pedestal {
  width: 80px;
  height: 18px;
  background: radial-gradient(
    at 50% 30%,
    rgb(232, 232, 232) 0%,
    rgb(208, 208, 208) 100%
  );
  border-radius: 50%;
  margin-top: -4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.gj-color-label {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-small);
  font-weight: 400;
  line-height: var(--gj-lh-small);
  color: var(--gj-text);
  display: block;
  text-align: center;
  margin-top: 15px;
}

.gj-trendy-section {
  padding: 60px 0px 50px;
  background: var(--gj-white);
  border-top: 1px solid var(--gj-border);
}

.gj-trendy-slider-wrap {
  display: block;
}

.gj-trendy-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  flex: 1 1 0%;
}

.gj-trendy-slider::-webkit-scrollbar {
  display: none;
}

.gj-trendy-item {
  flex: 0 0 calc(25% - 12px);
  min-width: 268px;
  scroll-snap-align: start;
}

.gj-trendy-card {
  display: block;
  text-align: center;
}

.gj-trendy-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gj-light-grey);
}

.gj-trendy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gj-trendy-card:hover .gj-trendy-img {
  transform: scale(1.05);
}

.gj-trendy-label {
  display: block;
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-small);
  font-weight: 400;
  line-height: var(--gj-lh-small);
  color: var(--gj-text-mid);
  margin-top: 12px;
  letter-spacing: 0px;
}

.gj-promo-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gj-promo-bg {
  position: absolute;
  inset: 0px;
  background: url("../img/offer-bg.webp") left center / cover no-repeat;
  z-index: 0;
}

.gj-promo-content-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 60px clamp(24px, 6%, 80px);
}

.gj-promo-card {
  background: var(--gj-white);
  padding: 48px 52px;
  min-width: 300px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 40px;
}

.gj-promo-heading {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-hero);
  line-height: var(--gj-lh-hero);
  font-weight: 400;
  color: var(--gj-text);
  margin-bottom: 16px;
}

.gj-promo-subtext {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h4);
  line-height: var(--gj-lh-h4);
  font-weight: 400;
  color: var(--gj-text);
  margin-bottom: 20px;
  letter-spacing: 0px;
}

.gj-promo-code-box {
  border: 1.5px dashed var(--gj-text-light);
  padding: 12px 24px;
  margin-bottom: 8px;
}

.gj-promo-code {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-body);
  font-weight: 400;
  line-height: var(--gj-lh-body);
  letter-spacing: 0.2em;
  color: var(--gj-text);
}

.gj-promo-copy-btn {
  display: block;
  width: 100%;
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-small);
  font-weight: 400;
  line-height: var(--gj-lh-small);
  letter-spacing: 0px;
  color: var(--gj-text);
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 4px 0px;
}

.gj-promo-copy-btn:hover {
  color: var(--gj-text);
}

.gj-promo-shop-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border: 2px solid var(--gj-text);
  background: var(--gj-white);
  color: var(--gj-text);
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h5);
  font-weight: 400;
  line-height: var(--gj-lh-h5);
  text-align: center;
  transition: var(--gj-transition);
}

.gj-promo-shop-btn:hover {
  background: var(--gj-text);
  color: var(--gj-white);
}

.gj-testimonials-section {
  padding: 60px 0px;
  background: var(--gj-white);
  border-top: 1px solid var(--gj-border);
}

.gj-testimonials-subtitle {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h5);
  line-height: var(--gj-lh-h5);
  font-weight: 400;
  color: var(--gj-text);
  text-align: center;
  margin-top: -24px;
  margin-bottom: 36px;
}

.gj-testimonials-slider-wrap {
  display: block;
}

.gj-testimonials-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  flex: 1 1 0%;
}

.gj-testimonials-slider::-webkit-scrollbar {
  display: none;
}

.gj-testimonial-item {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 340px;
  scroll-snap-align: start;
}

.gj-testimonial-card {
  border: 1px solid var(--gj-border);
  padding: 32px 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: var(--gj-transition);
}

.gj-testimonial-card:hover {
  box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 20px;
}

.gj-testimonial-text {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h5);
  font-weight: 400;
  line-height: var(--gj-lh-h5);
  color: var(--gj-text);
  text-align: center;
  flex: 1 1 0%;
}

.gj-testimonial-author-img-wrap {
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.gj-testimonial-author-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
}

.gj-newsletter-section {
  border-top: 1px solid var(--gj-border);
}

.gj-newsletter-row {
  min-height: 400px;
}

.gj-newsletter-left {
  background: var(--gj-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 60px 60px;
}

.gj-newsletter-content {
  max-width: 100%;
}

.gj-newsletter-title {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h1);
  line-height: var(--gj-lh-h1);
  font-weight: 400;
  color: var(--gj-text);
  margin-bottom: 12px;
  text-align: center;
}

.gj-newsletter-text {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h4);
  line-height: var(--gj-lh-h4);
  font-weight: 400;
  color: var(--gj-text);
  text-align: center;
  margin-bottom: 32px;
}

.gj-newsletter-text strong {
  font-weight: 700;
}

.gj-newsletter-input-row {
  display: flex;
  border-bottom: 1px solid var(--gj-text);
}

.gj-newsletter-input {
  flex: 1 1 0%;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  background: transparent;
  padding: 8px 16px;
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-body);
  line-height: var(--gj-lh-body);
  color: var(--gj-text);
  outline: none;
}

.gj-newsletter-input::placeholder {
  color: var(--gj-text-light);
}

.gj-newsletter-btn {
  padding: 8px 16px;
  min-height: 44px;
  background: var(--gj-black);
  color: var(--gj-white);
  border: 1px solid var(--gj-text);
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-caption);
  font-weight: 600;
  line-height: var(--gj-lh-caption);
  letter-spacing: var(--gj-ls-caption);
  cursor: pointer;
  transition: var(--gj-transition);
  white-space: nowrap;
}

.gj-newsletter-btn:hover {
  background: rgb(51, 51, 51);
}

.gj-newsletter-right {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: rgb(232, 228, 224);
}

.gj-newsletter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gj-footer {
  background: var(--gj-white);
  border-top: 1px solid var(--gj-border);
  padding-top: 48px;
}

.gj-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.gj-footer-logo-text {
  font-family: var(--gj-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gj-text);
}

.gj-footer-col-title {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h2);
  line-height: var(--gj-lh-h2);
  font-weight: 400;
  color: var(--gj-text);
  margin-bottom: 18px;
  letter-spacing: 0px;
}

.gj-footer-links li {
  margin-bottom: 10px;
}

.gj-footer-links a {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-caption);
  font-weight: 500;
  line-height: var(--gj-lh-caption);
  color: var(--gj-text-mid);
  text-decoration: underline;
  transition: var(--gj-transition);
}

.gj-footer-links a:hover {
  color: var(--gj-text);
}

.gj-footer-address p {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-caption);
  font-weight: 500;
  line-height: var(--gj-lh-caption);
  color: var(--gj-text-mid);
  margin-bottom: 10px;
}

.gj-footer-address a {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-caption);
  font-weight: 500;
  line-height: var(--gj-lh-caption);
  color: var(--gj-text-mid);
  text-decoration: underline;
}

.gj-footer-address a:hover {
  color: var(--gj-text);
}

.gj-footer-socials {
  display: flex;
  gap: 8px;
}

.gj-footer-social {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gj-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gj-text);
  transition: var(--gj-transition);
  border-radius: 0px;
}

.gj-footer-social:hover {
  background: var(--gj-text);
  color: var(--gj-white);
  border-color: var(--gj-text);
}

.gj-footer-bottom {
  background: var(--gj-black);
  margin-top: 40px;
  padding: 18px 0px;
  text-align: center;
}

.gj-footer-copy {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-small);
  line-height: var(--gj-lh-h4);
  font-weight: 400;
  font-style: normal;
  color: var(--gj-white);
  margin: 0px;
}

.gj-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}

.gj-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===================== ABOUT US PAGE ===================== */
.gj-about-intro {
  padding-bottom: 20px;
}

.gj-about-page-title,
.gj-inner-page-title {
  font-family: var(--gj-font-serif);
  font-size: var(--gj-fs-h1);
  line-height: var(--gj-lh-h1);
  font-weight: 400;
  color: var(--gj-text);
  text-align: center;
  padding: 40px 0px;
  margin: 0px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.gj-about-section {
  padding-bottom: 50px;
}

.gj-about-row {
  --bs-gutter-x: 32px;
}

.gj-about-img {
  width: 100%;
  height: auto;
}

.gj-about-img--intro {
  padding-top: 20px;
}

.gj-about-text-col {
  padding-top: 24px;
}

.gj-about-heading {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-h2);
  line-height: var(--gj-lh-h2);
  font-weight: 600;
  color: var(--gj-text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0px 0px 24px;
}

.gj-about-text,
.gj-inner-text {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-body);
  line-height: var(--gj-lh-body);
  color: var(--gj-text-mid);
  margin: 0px;
  max-width: 450px;
}

/* ===================== INNER PAGES — SHARED ===================== */
.gj-inner-intro {
  text-align: center;
  padding-bottom: 20px;
}

.gj-inner-divider {
  width: 60px;
  height: 2px;
  background: var(--gj-text);
  margin: 0px auto 30px;
}

.gj-inner-lead {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-body);
  line-height: var(--gj-lh-body);
  color: var(--gj-text-mid);
  text-align: center;
  max-width: 830px;
  margin: 0px auto 30px;
}

.gj-inner-content {
  padding-bottom: 60px;
}

.gj-inner-content .gj-inner-text {
  max-width: none;
  margin-bottom: 24px;
}

.gj-inner-content .gj-inner-text:last-child {
  margin-bottom: 0px;
}

.gj-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 500px;
  margin: 0px auto 30px;
}

.gj-contact-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gj-black);
  color: var(--gj-white);
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-small);
  font-weight: 600;
  line-height: var(--gj-lh-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--gj-black);
  transition: var(--gj-transition);
}

.gj-contact-btn:hover {
  background: rgb(51, 51, 51);
  color: var(--gj-white);
}

.gj-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
  margin-bottom: 40px;
}

.gj-contact-links a {
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-body);
  line-height: var(--gj-lh-body);
  color: var(--gj-text-mid);
}

.gj-contact-links a:hover {
  color: var(--gj-text);
}

.gj-contact-links i,
.gj-contact-links img {
  margin-right: 6px;
  display: inline-block;
}

.gj-form-wrap {
  max-width: 700px;
  margin: 0px auto;
  padding-bottom: 60px;
}

.gj-form-field {
  position: relative;
  margin-bottom: 16px;
}

.gj-form-input,
.gj-form-select,
.gj-form-textarea {
  width: 100%;
  padding: 10px 16px;
  min-height: 44px;
  border: 1px solid var(--gj-border);
  border-radius: 0px;
  background: var(--gj-white);
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-body);
  line-height: var(--gj-lh-body);
  color: var(--gj-text);
}

.gj-form-input::placeholder,
.gj-form-textarea::placeholder {
  color: var(--gj-text-mid);
}

.gj-form-input:focus,
.gj-form-select:focus,
.gj-form-textarea:focus {
  outline: none;
  border-color: var(--gj-text);
}

.gj-form-textarea {
  min-height: 200px;
  resize: vertical;
}

.gj-form-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gj-text-mid);
  pointer-events: none;
  font-size: 14px;
}

.gj-form-toggle {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 0px;
}

.gj-form-toggle-btn {
  padding: 4px 12px;
  border: 1px solid var(--gj-border);
  background: var(--gj-white);
  color: var(--gj-text);
  font-family: var(--gj-font-sans);
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  transition: var(--gj-transition);
}

.gj-form-toggle-btn.is-active,
.gj-form-toggle-btn:hover {
  background: var(--gj-black);
  border-color: var(--gj-black);
  color: var(--gj-white);
}

.gj-form-submit-wrap {
  text-align: center;
  margin: 40px 0px 20px;
}

.gj-form-submit {
  display: inline-block;
  padding: 10px 40px;
  background: var(--gj-black);
  color: var(--gj-white);
  font-family: var(--gj-font-sans);
  font-size: var(--gj-fs-small);
  font-weight: 600;
  line-height: var(--gj-lh-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--gj-black);
  cursor: pointer;
  transition: var(--gj-transition);
}

.gj-form-submit:hover {
  background: rgb(51, 51, 51);
}

.gj-about-products {
  padding: 20px 0px 40px;
}

.gj-about-products-row {
  position: relative;
  --bs-gutter-x: 32px;
}

.gj-about-products-text-wrap {
  position: relative;
  z-index: 2;
}

.gj-about-products-content {
  position: relative;
  margin-top: -80px;
  right: -40px;
  max-width: 400px;
}

.gj-about-products-img-wrap {
  position: relative;
  z-index: 1;
}

.gj-about-mission {
  padding: 20px 0px 60px;
}

.gj-about-mission-row {
  position: relative;
  --bs-gutter-x: 32px;
}

.gj-about-mission-text-wrap {
  position: relative;
  z-index: 2;
}

.gj-about-mission-content {
  position: relative;
  margin-top: -120px;
  left: -40px;
  max-width: 350px;
}

.gj-about-img--tablet,
.gj-about-img--mobile {
  display: none;
}

@media (min-width: 768px) {
  .gj-about-text-col {
    padding-top: 0px;
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .gj-about-img--desktop {
    display: none;
  }

  .gj-about-img--tablet,
  .gj-about-img--mobile {
    display: block;
  }

  .gj-about-text-col,
  .gj-about-products-text-wrap,
  .gj-about-mission-text-wrap {
    padding-top: 24px;
  }

  .gj-about-heading {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 16px;
  }

  .gj-about-page-title,
  .gj-inner-page-title {
    font-size: 28px;
    line-height: 36px;
    padding: 32px 0px;
  }

  .gj-contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .gj-contact-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
@media (max-width: 1024px) {
  header {
    display: none !important;
  }
  .gj-announcement-bar {
    display: none;
  }
}
@media (max-width: 991px) {
  .gj-about-products-content {
    margin-top: 0px;
    right: 0px;
    max-width: none;
    padding-top: 24px;
  }

  .gj-about-mission-content {
    margin-top: 0px;
    left: 0px;
    max-width: none;
    padding-top: 24px;
  }

  .gj-nav-container {
    padding: 0px 16px;
  }

  .gj-nav-menu {
    flex-direction: column;
    padding: 12px 0px;
    border-top: 1px solid var(--gj-border);
  }

  .gj-nav-link {
    padding: 10px 20px !important;
  }

  .gj-nav-link::after {
    display: none;
  }

  .gj-nav-actions {
    padding: 12px 20px 20px;
  }

  .gj-nav-dropdown .dropdown-menu {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    box-shadow: none;
    padding-left: 12px;
  }

  .gj-hero-slide {
    min-height: clamp(320px, 50vh, 480px);
  }

  .gj-promo-content-wrap {
    padding: 48px 32px;
    justify-content: center;
  }

  .gj-promo-card {
    max-width: 340px;
    padding: 36px 32px;
  }

  .gj-shape-item {
    flex: 0 0 calc(33% - 8px);
    min-width: 120px;
  }

  .gj-color-item {
    flex: 0 0 calc(33%);
    min-width: 110px;
  }

  .gj-trendy-item {
    flex: 0 0 calc(50% - 8px);
  }

  .gj-testimonial-item {
    flex: 0 0 calc(50% - 8px);
  }

  .gj-newsletter-left {
    padding: 48px 32px;
  }

  .gj-newsletter-right {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .gj-announcement-text {
    font-size: 12px;
    line-height: 20px;
  }

  .gj-hero-title {
    font-size: 32px;
    line-height: 42px;
  }

  .gj-hero-subtitle {
    font-size: 18px;
    line-height: 28px;
  }

  .gj-hero-slide {
    min-height: clamp(280px, 58vw, 400px);
  }

  .gj-hero-video {
    display: none;
  }

  .gj-hero-bg--wedding-fallback {
    display: block;
    background-image: url("../img/banner1.mp4");
    background-position: center center;
  }

  .gj-hero-bg--fine {
    background-image: url("../img/banner2.webp");
    background-position: center center;
  }

  .gj-hero-bg--gemstones {
    background-image: url("../img/banner3.webp");
    background-position: center center;
  }

  .gj-hero-content-wrap {
    padding-bottom: 36px;
  }

  .gj-hero-btn {
    padding: 10px 20px;
    font-size: 15px;
    line-height: 24px;
  }

  .gj-promo-section {
    min-height: auto;
  }

  .gj-promo-content-wrap {
    padding: 40px 16px;
    justify-content: center;
  }

  .gj-promo-card {
    padding: 32px 24px;
    max-width: 100%;
  }

  .gj-promo-heading {
    font-size: 36px;
    line-height: 46px;
  }

  .gj-promo-subtext {
    font-size: 18px;
    line-height: 28px;
  }

  .gj-section-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
  }

  .gj-newsletter-title {
    font-size: 28px;
    line-height: 36px;
  }

  .gj-newsletter-text {
    font-size: 18px;
    line-height: 28px;
  }

  .gj-footer-col-title {
    font-size: 20px;
    line-height: 30px;
  }

  .gj-footer-copy {
    font-size: 18px;
    line-height: 28px;
  }

  .gj-shape-item {
    flex: 0 0 calc(50% - 6px);
    min-width: 110px;
  }

  .gj-color-item {
    flex: 0 0 calc(50%);
    min-width: 100px;
  }

  .gj-trendy-item {
    flex: 0 0 50vw;
  }

  .gj-testimonial-item {
    flex: 0 0 100vw;
  }

  .gj-newsletter-left {
    padding: 40px 20px;
  }

  .gj-newsletter-input-row {
    flex-direction: column;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    gap: 0px;
  }

  .gj-newsletter-input {
    border-bottom: 1px solid var(--gj-text);
    padding: 12px 0px;
  }

  .gj-newsletter-btn {
    width: 100%;
    padding: 14px;
    margin-top: 12px;
  }

  .gj-newsletter-right {
    min-height: 260px;
  }

  .gj-footer-main .col-6 {
    width: 100%;
  }
}

@media (min-width: 1440px) {
  .gj-hero-slide {
    min-height: 696px;
  }
}

@keyframes gjFadeInRight {
  0% {
    opacity: 0;
    transform: translateX(36px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.gj-hero-content .gj-hero-title,
.gj-hero-content .gj-hero-subtitle,
.gj-hero-content .gj-hero-btn {
  opacity: 0;
}

.gj-hero-content.is-active .gj-hero-title {
  animation: 0.65s ease 0s 1 normal both running gjFadeInRight;
}

.gj-hero-content.is-active .gj-hero-subtitle {
  animation: 0.65s ease 0.12s 1 normal both running gjFadeInRight;
}

.gj-hero-content.is-active .gj-hero-btn {
  animation: 0.65s ease 0.24s 1 normal both running gjFadeInRight;
}
.logout-part {
  position: relative;
}
.logout {
  position: absolute;
  width: 100%;
  text-align: center;
  background: #0a0a0a;
  padding: 10px 10px;
  left: 0;
  top: 32px;
  color: #000000;
  display: none;
  border-radius: 0px;
  z-index: 999;
}
.logout-part:hover .logout {
  display: block;
}
.logout p {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  cursor: pointer;
  font-family: "Gilroy-Bold", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0px;
}
