@import url("fonts.css");

/* -- ================================================== */
/* --                 RESET & FOUNDATION                 */
/* -- ================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
main {
  margin: 0;
  padding: 0;
  height: 100vh;
  min-height: 100vh;
}

html {
  font-family: "NimbusRomNo9L-Reg", serif;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--color-text, #fff);
  background: var(--color-bg, #fff);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #000;
  color: #ffffff;
}

/* For Mozilla Firefox */
::-moz-selection {
  background: #000;
  color: #ffffff;
}

.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed;
  width: 100%;
}

/* WebKit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 10px;
  border: 3px solid #ffffff;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #000 #ffffff;
}

/* -- ================================================== */
/* --                  ELEMENT DEFAULTS                  */
/* -- ================================================== */

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
}

a:hover,
a:focus {
  color: var(--color-link-hover);
}

button {
  cursor: pointer;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

button:focus {
  outline: none;
}

main {
  position: relative;
  width: 100%;
}

/* -- ================================================== */
/* --                    THEME SYSTEM                    */
/* -- ================================================== */

.demo-2 {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  --color-text: #fff;
  --color-bg: #fff;
  --color-link: #fff;
  --color-link-hover: #fff;
  --color-info: #000;
}

/* -- ================================================== */
/* --                    LAYOUT SYSTEM                   */
/* -- ================================================== */

.container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}

.content--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85em;
}

.content--switch {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

.content--switch::after {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
}

/* ============================================================================ */
/*                                TYPOGRAPHY                                   */
/* ============================================================================ */

.content__title {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 0;
  position: relative;
  font-weight: normal;
}

.content__subtitle {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-top: 0;
  padding: 0rem 0;
  letter-spacing: 2px;
  text-indent: 2px;
}

.content__subtitle::after {
  content: "\2014";
  position: relative;
  display: block;
  font-size: 2.75rem;
  text-align: center;
}

#content-1 .content__subtitle::after {
  content: none !important;
  display: none !important;
}

[id^="content-"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

[id^="content-"] .content__title,
[id^="content-"] .content__subtitle {
  position: relative;
  z-index: 2;
}

/* ============================================================================ */
/*                                PAGE TRANSITIONS                             */
/* ============================================================================ */

.transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 99999;
  pointer-events: none;
}

.transition-row {
  flex: 1;
  display: flex;
}

.transition-row.row-1 .block {
  -webkit-transform-origin: top;
  transform-origin: top;
}

.transition-row.row-2 .block {
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.block {
  flex: 1;
  background-color: #000;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  will-change: transform;
  visibility: visible;
}

/* ============================================================================ */
/*                                PAGE HEADERS                                 */
/* ============================================================================ */

.page-header {
  text-align: center;
  padding: 5rem 0 4rem;
}

.page-title {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000;
  position: relative;
  display: inline-block;
}

.page-banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

/* ============================================================================ */
/*                                FILTER SECTION                               */
/* ============================================================================ */

.filter-section {
  margin-bottom: clamp(2rem, 6vw, 4rem);
  padding: clamp(1rem, 3vw, 2rem) 0;
  border-bottom: 1px solid rgba(0, 49, 82, 0.1);
}

.filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.filter-label {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1rem;
  font-weight: 500;
  color: #999;
  margin-right: 0px;
}

.filter-dropdowns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-dropdown {
  position: relative;
}

.filter-btn {
  background: none;
  border: 2px solid #000;
  color: #000;
  padding: 0.75rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Asap", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  min-width: 7.5rem;
  justify-content: space-between;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.filter-btn:hover {
  background: #000;
  color: white;
}

.filter-btn.active {
  background: #000;
  color: white;
}

.chevron {
  width: 16px;
  height: 16px;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.filter-btn.active .chevron {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filter-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #000;
  padding: 1.25rem;
  margin-top: 0.625rem;
  opacity: 0;
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 0.95rem;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
  min-width: 12.5rem;
}

.filter-options.show {
  font-family: "Asap", sans-serif;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.filter-options label {
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}

.filter-options label:hover {
  color: #000;
}

.filter-options label:last-child {
  margin-bottom: 0;
}

.filter-options input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #000;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 2px;
  position: relative;
}

.filter-options input[type="checkbox"]:checked {
  background-color: #000;
}

.filter-options input[type="checkbox"]:checked::after {
  content: "✓";
  color: white;
  font-size: 10px;
  position: absolute;
  top: -1px;
  left: 1px;
}

/* ============================================================================ */
/*                                PRODUCT GRID                                 */
/* ============================================================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 2vw, 1.5rem);
  padding: 0 0 clamp(2rem, 6vw, 4rem) 0;
}

.product-card {
  position: relative;
  cursor: pointer;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-button {
  margin-top: auto;
}

.product-card:hover {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  padding: 0.25rem;
}

.product-card:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  outline: 1px solid #000;
  pointer-events: none;
  -webkit-transform: scale(1.0526);
  transform: scale(1.0526);
}

.product-media-container {
  aspect-ratio: 1 / 1;
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.product-media-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f9fa;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-image {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-info {
  text-align: center;
  color: white;
}

.product-image-container:hover .product-info {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.product-name {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 8px;
  color: #000;
}

.single-product-price {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: #000;
}

.product-price {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  margin-top: 0px;
  color: #000;
}

.wishlist-btn .wishlist-icon {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ============================================================================ */
/*                               PRODUCT DETAILS                              */
/* ============================================================================ */

.product-card {
  display: flex;
  flex-direction: column;
}

.product-details {
  padding: 1rem 0rem 0rem 0rem;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  text-align: left;
  background: #fff;
}

.product-details .single-product-name {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: #000;
  margin: 0;
}

.product-details .product-name {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: #000;
  margin: 0;
}

.product-details .single-product-price {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1.4rem, 1.9vw, 1.5rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}

.product-details .product-price {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}

/* ============================================================================ */
/*                              BUTTON HOVER EFFECTS                           */
/* ============================================================================ */

.my-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 10px;
}

.my-btn .hover-button {
  position: relative;
  padding: 1rem 1.5rem;
  color: white;
  background: none;
  border: 2px solid white;
  font-family: "Asap", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  z-index: 1;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.my-btn .hover-button::before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  z-index: 0;
}

.my-btn .hover-button:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.my-btn .hover-button-text {
  color: white;
  position: relative;
  z-index: 1;
}

.my-btn:hover .hover-button-text {
  color: white;
}

.my-btn:hover .hover-button-icon {
  color: white;
  z-index: 1;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.my-btn .hover-button-icon {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  padding-left: 8px;
  position: relative;
  z-index: 1;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

/* Category Page Button Styles */

.cat-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 10px;
}

.cat-btn .hover-button {
  position: relative;
  padding: 1rem 1.5rem;
  color: black;
  background: none;
  border: 2px solid black;
  font-family: "Asap", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  z-index: 1;
  line-height: 1;
  -webkit-appearance: none;
}

.cat-btn .hover-button::before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  z-index: 0;
}

.cat-btn .hover-button:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.cat-btn .hover-button-text {
  color: black;
  position: relative;
  z-index: 1;
}

.cat-btn:hover .hover-button-text {
  color: white;
}

.cat-btn:hover .hover-button-icon {
  color: white;
  z-index: 1;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.cat-btn .hover-button-icon {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  padding-left: 8px;
  position: relative;
  z-index: 1;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.cat-btn {
  display: inline-block;
}

/* Product Page Button Styles */

.product-details .product-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 1rem;
  width: 100%;
}

.product-details .product-btn .hover-button {
  position: relative;
  padding: 1rem 1.5rem;
  color: #000;
  background: none;
  border: 2px solid #000;
  font-family: "Asap", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  gap: 5px;
  width: 100%;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.product-details .product-btn .hover-button::before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  z-index: 0;
}

.product-details .product-btn .hover-button:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.product-details .product-btn .hover-button-text,
.product-details .product-btn .hover-button-icon {
  color: #000;
  position: relative;
  z-index: 1;
}

.product-details .product-btn .hover-button:hover .hover-button-text,
.product-details .product-btn .hover-button:hover .hover-button-icon {
  color: #fff;
}

/* ============================================================================ */
/*                              SINGLE PRODUCT PAGE                            */
/* ============================================================================ */

.container > .product-layout {
  display: flex !important;
  display: -webkit-flex !important;
  flex-direction: row !important;
  -webkit-flex-direction: row !important;
  align-items: flex-start !important;
  -webkit-align-items: flex-start !important;
  justify-content: center !important;
  -webkit-justify-content: center !important;
  gap: clamp(1.5rem, 4vw, 3rem) !important;
  margin-top: clamp(4rem, 15vh, 9rem);
}

.container > .product-layout .media-column,
.container > .product-layout .product-info {
  flex: 1 !important;
  -webkit-flex: 1 !important;
}

.media-column {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  max-width: min(100vw, 50rem);
}

.main-media {
  position: relative;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.25rem;
}

.main-media img,
.main-media video {
  width: 100%;
  height: auto;
  display: block;
}

.main-media video {
  object-fit: cover;
}

.media-thumbnails {
  display: flex !important;
  display: -webkit-flex !important;
  flex-direction: row !important;
  -webkit-flex-direction: row !important;
  gap: 5px;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

.thumbnail {
  flex: 1 1 23%;
  -webkit-flex: 1 1 23%;
  max-width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.thumbnail img,
.thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

#mainVideo {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  -o-object-fit: cover;
  display: block;
}

.thumbnail.placeholder {
  background: #fff;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #fff;
  font-size: 12px;
}

.product-info {
  padding: 50px 75px;
  height: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  flex: 1;
  -webkit-flex: 1;
  max-width: 75%;
  border-width: 1px;
  border-color: #000;
  border-style: solid;
}

.product-name {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 8px;
  color: #000;
}

.product-metal {
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-transform: capitalize;
  color: #000;
  margin-bottom: 20px;
  margin-top: 0;
}

.quantity-selector {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quantity-label {
  font-weight: 500;
  color: #000;
}

.quantity-controls {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  border: 1px solid #000;
  border-radius: 4px;
  overflow: hidden;
}

.single-quantity-btn,
.single-quantity-input {
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
}

.single-quantity-btn {
  background: #f8f8f8;
  color: #000;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  font-size: 1.125rem;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.single-quantity-btn:hover {
  background: #000;
  color: #fff;
}

.single-quantity-input {
  width: 3.125rem;
  background: #fff;
  border: none;
  padding: 0;
  text-align: center;
  font-size: clamp(0.875rem, 1vw, 1rem);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  pointer-events: none;
}

.single-quantity-input:focus {
  outline: none;
  pointer-events: none;
}

.single-quantity-input::-webkit-outer-spin-button,
.single-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ring-size-selector {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ring-size-selector .single-quantity-input {
  text-indent: -1px;
  -moz-appearance: textfield;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.ring-size-selector .single-quantity-input:focus {
  outline: none;
  pointer-events: none;
}

.ring-size-selector .single-quantity-input::-webkit-outer-spin-button,
.ring-size-selector .single-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-price {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 25px;
}

.product-details .product-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 1rem;
  width: 100%;
}

.product-details .product-btn .hover-button {
  position: relative;
  padding: 1em 1.5em;
  color: #000;
  background: none;
  border: 2px solid #000;
  font-family: "Asap", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  gap: 5px;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.product-details .product-btn .hover-button::before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: right;
  -webkit-transform-origin: right;
  transition: transform 0.4s ease;
  -webkit-transition: -webkit-transform 0.4s ease;
  z-index: 0;
}

.product-details .product-btn .hover-button:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform-origin: left;
  -webkit-transform-origin: left;
}

.product-details .product-btn .hover-button-text,
.product-details .product-btn .hover-button-icon {
  color: #000;
  position: relative;
  z-index: 1;
}

.product-details .product-btn .hover-button:hover .hover-button-text,
.product-details .product-btn .hover-button:hover .hover-button-icon {
  color: #fff;
}

.product-description {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.product-description h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000;
}

.product-description p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-specs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-specs li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #000;
}

.product-specs li:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  color: #000;
}

/* ============================================================================ */
/*                              REVEAL ANIMATION                               */
/* ============================================================================ */

.reveal-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2000;
  background: transparent;
}

.reveal-animation .blocks {
  position: absolute;
  width: 100%;
  height: 100%;
}

.reveal-animation .block {
  position: absolute;
  width: 50%;
  height: 100%;
  background: #000;
  z-index: 2001;
}

.reveal-animation .block-left {
  left: 0;
}

.reveal-animation .block-right {
  right: 0;
}

.reveal-animation .letters {
  position: absolute;
  inset: 0;
  z-index: 2002;
}

.reveal-animation .letters .row {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  width: 100%;
  height: 100%;
}

.reveal-animation .letter {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(6rem, 10vw, 8rem);
  color: #fff;
  mix-blend-mode: normal;
  opacity: 0;
  margin: 0 0.2em;
}

/* ============================================================================ */
/*                              BACKGROUND SYSTEM                              */
/* ============================================================================ */

#content-1 {
  background-image: url(../assets/hero.jpg);
}
#content-2 {
  background-image: url(../assets/contact-bg.jpg);
}
#content-3 {
  background-image: url(../assets/the-world-of-envy-bg.jpg);
}
#content-4 {
  background-image: url(../assets/weddings-bridal-bg.jpg);
}
#content-5 {
  background-image: url(../assets/high-jewelry-bg.jpg);
}
#content-6 {
  background-image: url(../assets/fine-jewelry-bg.jpg);
}
#content-7 {
  background-image: url(../assets/the-world-of-envy-bg.jpg);
}
#content-8 {
  background-image: url(../assets/the-world-of-envy-bg.jpg);
}

/* ============================================================================ */
/*                              JAVASCRIPT ENHANCEMENTS                        */
/* ============================================================================ */

.js .content--switch {
  display: none;
}

.js .content--switch-current {
  display: flex;
  display: -webkit-flex;
}

/* ============================================================================ */
/*                              VIDEO OVERLAY SYSTEM                           */
/* ============================================================================ */

.grim__item--has-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.grim--open .grim__item--has-video::before {
  opacity: 1;
}

.grim__item-content {
  position: relative;
  z-index: 3;
  color: var(--color-link);
  overflow: hidden;
  transition: color 500ms ease;
  -webkit-transition: color 500ms ease;
}

.grim__item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  display: none;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
}

.grim__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* ============================================================================ */
/*                              SHOPPING BAG                              */
/* ============================================================================ */

.cart-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cart-overlay.show {
  visibility: visible;
  opacity: 1;
}

.shopping-cart {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cart-overlay.show .shopping-cart {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  background: #fff;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  position: relative;
}

.cart-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
  background: -webkit-linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.cart-header h2 {
  margin: 0;
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 500;
  color: #000;
  letter-spacing: -0.02em;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: #000;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  padding: 4px;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 50%;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
}

.cart-close-btn:hover {
  color: #999;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

.cart-close-btn:active {
  transform: rotate(0deg) scale(0.95);
  -webkit-transform: rotate(0deg) scale(0.95);
}

.cart-content {
  flex: 1;
  -webkit-flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  position: relative;
}

.cart-content::-webkit-scrollbar {
  width: 8px;
}

.cart-content::-webkit-scrollbar-track {
  background: #f8f8f8;
}

.cart-content::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 4px;
}

.cart-content::-webkit-scrollbar-thumb:hover {
  background: #b0b0b0;
}

.cart-items {
  padding: 0;
}

.cart-item {
  display: flex;
  display: -webkit-flex;
  padding: 1.5rem;
  border-bottom: 1px solid #f5f5f5;
  gap: 1rem;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  position: relative;
}

.cart-item:hover {
  background: #fafafa;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: clamp(4.5rem, 10vw, 5.625rem);
  height: clamp(4.5rem, 10vw, 5.625rem);
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  overflow: hidden;
  background: #f8f8f8;
  position: relative;
}

.cart-item-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.cart-item-details {
  flex: 1;
  -webkit-flex: 1;
  min-width: 0;
  padding-right: 8px;
}

.cart-item-name {
  margin: 0 0 6px 0;
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.cart-item-metal {
  margin: 0 0 10px 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #000;
  text-transform: capitalize;
  letter-spacing: 0.01em;
}

.cart-item-price {
  margin: 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #000;
  font-weight: 500;
}

.cart-item-controls {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  min-width: clamp(70px, 15vw, 80px);
}

.quantity-controls {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  border: 1px solid #000;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.quantity-btn {
  width: clamp(1.75rem, 4vw, 2.25rem);
  height: clamp(1.75rem, 4vw, 2.25rem);
  border: none;
  background: #f8f8f8;
  color: #000;
  cursor: pointer;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
}

.quantity-btn:hover {
  background: #e8e8e8;
  color: #000;
}

.quantity-btn:active {
  background: #d8d8d8;
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
}

.quantity-btn.minus:hover {
  background: #000;
  color: #fff;
}

.quantity-btn.plus:hover {
  background: #000;
  color: #fff;
}

.quantity-input {
  width: clamp(2rem, 5vw, 2.75rem);
  height: clamp(1.75rem, 4vw, 2.25rem);
  border: none;
  text-align: center;
  text-indent: 0px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #fff;
  color: #000;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.quantity-input:focus {
  background: #f9f9f9;
  box-shadow: inset 0 0 0 1px #ddd;
  -webkit-box-shadow: inset 0 0 0 1px #ddd;
  pointer-events: none;
}

.cart-item .quantity-input::-webkit-outer-spin-button,
.cart-item .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item .quantity-input {
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

.cart-item-size {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #000;
  font-weight: 500;
}

.cart-item-total {
  font-weight: 500;
  color: #000;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-top: auto;
  font-family: "NimbusRomNo9L-Reg", serif;
  letter-spacing: -0.01em;
}

.remove-item-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  padding: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 50%;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
}

.remove-item-btn:hover {
  color: #ff4444;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

.remove-item-btn:active {
  transform: rotate(0deg) scale(0.9);
  -webkit-transform: rotate(0deg) scale(0.9);
}

.empty-cart-message {
  display: none;
  text-align: center;
  padding: clamp(3rem, 10vh, 5rem) clamp(1rem, 5vw, 2rem)
    clamp(2rem, 7vh, 3.75rem);
  color: #000;
}

.empty-cart-message p {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1.2rem;
  margin: 0 0 8px 0;
  color: #000;
}

.empty-cart-subtitle {
  font-size: 1rem !important;
  color: #555 !important;
  font-family: inherit !important;
}

.cart-footer {
  border-top: 1px solid #f0f0f0;
  background: #fff;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  display: none;
  position: relative;
  max-height: 200px;
}

.cart-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
  background: -webkit-linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.cart-total {
  padding: 1.5rem;
  border-bottom: 1px solid #f5f5f5;
}

.total-row {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
}

.total-label {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #555;
  letter-spacing: -0.01em;
}

.total-amount {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.02em;
}

.cart-checkout {
  padding: 24px;
}

.cart-checkout .product-btn {
  margin-top: 0;
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
}

.cart-checkout .hover-button {
  position: relative;
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  padding: 1rem 1.5rem;
  background: none;
  border: 2px solid #000;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-family: "Asap", sans-serif;
  gap: 5px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  z-index: 1;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.cart-checkout .hover-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: right;
  -webkit-transform-origin: right;
  transition: transform 0.4s ease;
  -webkit-transition: -webkit-transform 0.4s ease;
  z-index: 0;
}

.cart-checkout .hover-button-text,
.cart-checkout .hover-button-icon {
  position: relative;
  z-index: 1;
  color: #000;
}

.cart-checkout .hover-button:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform-origin: left;
  -webkit-transform-origin: left;
}

.cart-checkout .hover-button:hover .hover-button-text,
.cart-checkout .hover-button:hover .hover-button-icon {
  color: #fff;
}

.cart-checkout .hover-button:hover {
  transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cart-checkout .hover-button:active {
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.cart-has-items {
  animation: cartPulse 2s infinite;
  -webkit-animation: cartPulse 2s infinite;
}

@keyframes cartPulse {
  0%,
  50%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
    filter: brightness(1.2);
    -webkit-filter: brightness(1.2);
  }
}

@-webkit-keyframes cartPulse {
  0%,
  50%,
  100% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
    -webkit-filter: brightness(1.2);
  }
}

.icon-button.shopping-bag.cart-item-added {
  animation: cartItemAdded 0.6s ease;
  -webkit-animation: cartItemAdded 0.6s ease;
}

@keyframes cartItemAdded {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes cartItemAdded {
  0% {
    -webkit-transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

.hover-button.clicked {
  background: #000 !important;
  border-color: #000 !important;
  transform: scale(0.98);
  -webkit-transform: scale(0.98);
}

.hover-button.clicked .hover-button-text {
  color: #fff !important;
}

body.cart-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ============================================================================ */
/*                                 SUCCESS PAGE                                */
/* ============================================================================ */

.success-container {
  background: white;
  width: 100%;
  min-height: 100vh;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}

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

@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

.success-header {
  background: linear-gradient(135deg, #000 0%, #555 100%);
  background: -webkit-linear-gradient(135deg, #000 0%, #555 100%);
  color: white;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  background: -webkit-radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 3s ease-in-out infinite;
  -webkit-animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

@-webkit-keyframes pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: scale(1.1);
    opacity: 0.2;
  }
}

.success-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  position: relative;
  z-index: 2;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.success-icon::after {
  content: "✓";
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}

.success-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.success-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.success-content {
  padding: clamp(1.5rem, 5vw, 2.5rem);
  flex: 1;
  -webkit-flex: 1;
  max-width: min(800px, 90vw);
  margin: 0 auto;
  width: 100%;
}

.order-summary {
  margin-bottom: 30px;
}

.order-summary h3 {
  color: #000;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.order-items > .order-item:not(:last-child) {
  margin-bottom: 15px;
}

.order-item {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  padding: 20px;
  background: #f8f9fa;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border: 2px solid transparent;
}

.order-item:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}

.success-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  -o-object-fit: cover;
  margin-right: 20px;
  border: 3px solid white;
}

.success-item-details {
  flex: 1;
  -webkit-flex: 1;
}

.success-item-name {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}

.success-item-metal {
  color: #000;
  font-size: 0.9rem;
  margin-bottom: 3px;
  text-transform: capitalize;
}

.success-item-size {
  color: #000;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.success-item-quantity {
  color: #000;
  font-size: 0.9rem;
}

.success-item-price {
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  font-weight: 500;
  color: #000;
  text-align: right;
}

.order-total {
  background: linear-gradient(135deg, #000 0%, #555 100%);
  background: -webkit-linear-gradient(135deg, #000 0%, #555 100%);
  color: white;
  padding: 25px;
  text-align: center;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.order-total::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  background: -webkit-linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 2s infinite;
  -webkit-animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.success-total-label {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.success-total-amount {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 2;
}

.return-button {
  background: linear-gradient(135deg, #000 0%, #555 100%);
  background: -webkit-linear-gradient(135deg, #000 0%, #555 100%);
  color: white;
  border: none;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 5vw, 2.5rem);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
}

.return-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  background: -webkit-linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  -webkit-transition: left 0.5s;
}

.return-button:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}

.return-button:hover::before {
  left: 100%;
}

.empty-cart-message {
  text-align: center;
  padding: 40px;
  color: #555;
}

.empty-cart-message h3 {
  color: #333;
  margin-bottom: 15px;
}

.loading {
  text-align: center;
  padding: 40px;
  color: #555;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

/* ============================================================================ */
/*                              PRODUCT GRID SECTION                              */
/* ============================================================================ */

.jewelry-products {
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}

.product-item {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: clamp(2rem, 8vw, 6.25rem);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  gap: clamp(1rem, 5vw, 3.75rem);
}

.product-item:last-child {
  margin-bottom: 0;
}

.product-item.reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}

.product-image {
  flex: 1;
  -webkit-flex: 1;
  max-width: 600px;
}

.product-image img {
  width: 100%;
  height: clamp(200px, 40vw, 400px);
  object-fit: cover;
  -o-object-fit: cover;
}

.product-content {
  flex: 1;
  -webkit-flex: 1;
  max-width: 500px;
}

.product-content h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  font-family: "NimbusRomNo9L-Reg", serif;
  color: #000;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.product-content p {
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  line-height: 1.7;
  color: #000;
  margin-bottom: 32px;
  text-align: justify;
}

.view-more-link {
  display: inline-block;
  padding: 12px 32px;
  background-color: transparent;
  color: #000;
  text-decoration: none;
  border: 2px solid #000;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.view-more-link:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.about-company {
  margin-bottom: 15px !important;
}

/* ============================================================================ */
/*                              PRODUCT GRID FOOTER                              */
/* ============================================================================ */

.shop-by-category {
  padding: 0 0 clamp(3rem, 8vw, 7.5rem);
  text-align: center;
}

.shop-by-category h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #000;
  font-weight: 500;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 4vw, 2.5rem);
  max-width: 90%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 1.5rem);
}

.category-item {
  text-align: center;
}

.category-item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0px;
}

.category-item h3 {
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  margin-top: 10px;
  margin-bottom: 8px;
  color: #000;
  font-weight: 500;
}

.appointment-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
}

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

.appointment-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  max-width: 75%;
  margin: 0 auto;
  padding: 0 20px;
}

.appointment-text {
  flex: 1;
  -webkit-flex: 1;
  max-width: 350px;
  z-index: 2;
}

.appointment-text h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
}

.appointment-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

.about-footer {
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.about-content {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  width: 90%;
}

.about-content h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  margin-bottom: 30px;
  color: #000;
  font-weight: 500;
  text-align: left;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
  text-align: left;
  font-weight: 500;
}

/* ============================================================================ */
/*                              PRIVACY POLICY PAGE                            */
/* ============================================================================ */

.privacy-policy-container {
  background: #fff;
  min-height: 100vh;
  padding-top: 0;
}

.privacy-policy-header {
  text-align: center;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-policy-title {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 8px;
}

.privacy-effective-date {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1rem, 4vw, 1.25rem)
    clamp(2.5rem, 7vw, 5rem);
}

.privacy-section {
  margin-bottom: 48px;
}

.privacy-section h2 {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  padding-top: 16px;
}

.privacy-section h3 {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin: 24px 0 12px 0;
}

.privacy-section p {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 16px;
}

.privacy-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.privacy-section li {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 8px;
}

.privacy-section strong {
  font-weight: 500;
  color: #000;
}

.privacy-section a {
  color: #000;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.privacy-section a:hover {
  text-decoration-color: #000;
}

.contact-info-section {
  background-color: #f8f9fa;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 32px 0;
}

.contact-info-section p {
  margin-bottom: 8px;
}

.contact-info-section p:last-child {
  margin-bottom: 0;
}

.privacy-footer-note {
  text-align: center;
  font-family: "NimbusRomNo9L-Reg", serif;
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ============================================================================ */
/*                              TERMS OF SERVICE PAGE                          */
/* ============================================================================ */

.terms-container {
  background: #fff;
  min-height: 100vh;
  padding-top: 0;
}

.terms-header {
  text-align: center;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.terms-title {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 8px;
}

.terms-effective-date {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1rem, 4vw, 1.25rem)
    clamp(2.5rem, 7vw, 5rem);
}

.terms-section {
  margin-bottom: 48px;
}

.terms-section h2 {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  padding-top: 16px;
}

.terms-section h3 {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin: 24px 0 12px 0;
}

.terms-section p {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 16px;
}

.terms-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.terms-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.terms-section li {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 8px;
}

.terms-section strong {
  font-weight: 500;
  color: #000;
}

.terms-section a {
  color: #000;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.terms-section a:hover {
  text-decoration-color: #000;
}

.subsection {
  margin-left: 20px;
  margin-bottom: 16px;
}

.subsection-title {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.contact-info-section {
  background-color: #f8f9fa;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 32px 0;
}

.contact-info-section p {
  margin-bottom: 8px;
}

.contact-info-section p:last-child {
  margin-bottom: 0;
}

/* ============================================================================ */
/*                              SHIPPING PAGE                                 */
/* ============================================================================ */

.shipping-container {
  background: #fff;
  min-height: 100vh;
  padding-top: 0;
}

.shipping-header {
  text-align: center;
  padding: 80px 0 60px;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 6vw, 4rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shipping-title {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 16px;
}

.shipping-subtitle {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

.shipping-content {
  max-width: 90vw;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 5vw, 2rem) clamp(3rem, 8vw, 5rem);
}

.shipping-section {
  margin-bottom: 48px;
}

.shipping-section h2 {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  padding-top: 16px;
}

.shipping-section h3 {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin: 24px 0 12px 0;
}

.shipping-section p {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 16px;
}

.shipping-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.shipping-section li {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 12px;
}

.shipping-section strong {
  font-weight: 500;
  color: #000;
}

.shipping-section a {
  color: #000;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.shipping-section a:hover {
  text-decoration-color: #000;
}

.highlight-box {
  background-color: #f8f9fa;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 24px 0;
}

.highlight-box p {
  margin-bottom: 0;
  font-weight: 500;
}

.shipping-option {
  background-color: #f8f9fa;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #000;
}

.shipping-option p {
  margin-bottom: 8px;
}

.shipping-option p:last-child {
  margin-bottom: 0;
}

.policy-note {
  background-color: #fff8dc;
  padding: 20px;
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-left: 4px solid #ffc107;
  margin: 24px 0;
}

.policy-note p {
  margin-bottom: 0;
  color: #856404;
  font-weight: 500;
}

/* ============================================================================ */
/*                                  FAQ PAGE                                   */
/* ============================================================================ */

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 1rem;
  color: #555;
}

.faq-category {
  background: white;
  margin-bottom: 20px;
  overflow: hidden;
}

.category-header {
  padding: 24px 28px;
  background: white;
  border-bottom: 1px solid black;
  color: black;
  cursor: pointer;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  font-weight: 500;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.category-header:hover {
  background: white;
  border-bottom: 1px solid black;
}

.category-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
}

.category-header.active .category-icon {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  -webkit-transition: max-height 0.4s ease;
}

.category-content.active {
  max-height: 2000px;
}

.faq-item {
  border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 20px 28px;
  background: #fff;
  border-bottom: 1px solid black;
  font-family: "Asap", sans-serif;
  color: black;
  cursor: pointer;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.faq-question:hover {
  background: #fff;
  border-bottom: 1px solid black;
}

.question-icon {
  font-size: 1.1rem;
  color: #000;
  transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
}

.faq-question.active .question-icon {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  -webkit-transition: max-height 0.3s ease;
  background: white;
}

.faq-answer.active {
  max-height: 500px;
}

.answer-content {
  padding: 24px 28px;
  font-family: "Asap", sans-serif;
  color: #555;
  line-height: 1.7;
}

.answer-content a {
  color: #000;
  text-decoration: none;
}

.answer-content a:hover {
  text-decoration: underline;
}

.contact-info {
  background: white;
  border-style: solid;
  border-width: 2px;
  color: black;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.contact-info a {
  color: black;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ================================================== */
/*                     CONTACT PAGE                  */
/* ================================================== */

.contact-info {
  padding: 80px 20px;
  background-color: #fff;
  min-height: 50vh;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border: none;
  outline: none;
}

.contact-info__container {
  max-width: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 3.75rem);
  margin: 0 auto;
}

.contact-info__section {
  text-align: center;
}

.contact-info__section:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.contact-info__container {
  max-width: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 0 auto;
  position: relative;
}

.contact-info__heading {
  font-size: 2rem;
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-info__details {
  line-height: 1.5;
}

.contact-info__details p {
  color: #000;
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 1rem;
  margin: 8px 0;
}

.contact-info__item {
  margin: 20px 0 !important;
}

.contact-info__label {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 8px;
}

.contact-info__link {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
}

.contact-info__link:hover {
  color: #000;
  text-decoration: none !important;
}

/* ================================================== */
/*               LOAD MORE PRODUCT PAGE               */
/* ================================================== */

.load-more-container {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  margin: clamp(-1.5rem, -3vw, -2rem) auto clamp(1rem, 4vw, 2rem);
  padding: 1rem;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  -webkit-animation: fadeInUp 0.5s ease forwards;
  pointer-events: none;
}

.load-more-btn {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  pointer-events: auto;
  margin: 0 auto;
}

.load-more-btn .hover-button {
  position: relative;
  display: inline-block;
  background: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 1rem 1.5rem;
  font-family: "Asap", sans-serif;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.load-more-btn .hover-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;
  transition: left 0.3s ease;
  -webkit-transition: left 0.3s ease;
  z-index: 1;
}

.load-more-btn .hover-button:hover:before {
  left: 0;
}

.load-more-btn .hover-button-text {
  position: relative;
  z-index: 2;
  color: #000;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
}

.load-more-btn .hover-button:hover .hover-button-text {
  color: #ffffff;
}

.load-more-btn .hover-button.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.load-more-btn .hover-button.loading:before {
  left: 0;
  background: #000;
}

.load-more-btn .hover-button.loading .hover-button-text {
  color: #ffffff;
}

.load-more-btn .hover-button:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.load-more-btn .hover-button:focus:not(:hover) {
  background: rgba(0, 0, 0, 0.05);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

/* ================================================== */
/*                HOME PAGE DESIGN                   */
/* ================================================== */

.section-1 {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  height: 100vh;
  position: relative;
}

.section-1-image {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.section-1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.section-1-slider {
  width: 50%;
  height: 100%;
  background: white;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  contain: layout style;
}

.slider-content {
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

.category-text {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #000;
}

.subcategory-text {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 5vw, 2rem);
  margin-bottom: 20px;
  color: #000;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
}

.slider-image-container {
  width: clamp(250px, 50vw, 500px);
  height: clamp(250px, 50vw, 500px);
  margin: 0 auto 40px;
  overflow: hidden;
}

.slider-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
}

.slider-dots {
  display: flex;
  display: -webkit-flex;
  gap: 10px;
  justify-content: center;
  -webkit-justify-content: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
}

.dot.active {
  background: #000;
}

.section-2 {
  width: 100%;
  height: 100vh;
  position: relative;
}

.banner-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.banner-text {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
}

.banner-text .category-text {
  color: white;
  margin-bottom: 0px;
}

.banner-text .subcategory-text {
  color: white;
  margin-bottom: 10px;
}

.explore-link {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
}

.section-3 {
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 40px;
  margin-top: 20px;
  box-sizing: border-box;
}

.video-container {
  width: calc(100% - clamp(2rem, 8vw, 5rem));
  height: calc(100% - clamp(8rem, 25vh, 12.5rem));
  overflow: hidden;
  margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.video-text {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  margin-left: 40px;
}

.video-text .category-text {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 1rem;
  color: #000;
  margin-bottom: 0px;
}

.video-text .subcategory-text {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  margin-bottom: 10px;
}

.video-text .explore-link {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 1rem;
  color: #000;
}

.section-4 {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  height: 100vh;
  position: relative;
}

.section-4-image {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.section-4-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.image-text {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 2;
}

.image-text .category-text {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 1rem;
  color: white;
  margin-bottom: 0px;
}

.image-text .subcategory-text {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
}

.image-text .explore-link {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 1rem;
  color: white;
}

.section-4-slider {
  width: 50%;
  height: 100%;
  background: white;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  contain: layout style;
}

.section-4-slider .slider-content {
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

.slider-image-container-4 {
  width: 500px;
  height: 500px;
  margin: 0 auto 40px;
  overflow: hidden;
  position: relative;
}

.slider-image-container-4::before,
.slider-image-container-4::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20%;
  height: 100%;
  z-index: 1;
}

.slider-image-container-4::before {
  left: -20%;
}

.slider-image-container-4::after {
  right: -20%;
}

.slider-image-container-4 img {
  width: 125%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
}

.section-4-slider .category-text {
  margin-bottom: 0px;
  margin-top: 20px;
}

.section-4-slider .subcategory-text {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-5 {
  width: 100%;
  height: 100vh;
  position: relative;
}

.section-5 .banner-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.section-5 .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.section-5 .banner-text {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 2;
}

.section-5 .banner-text .category-text {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 1rem;
  color: white;
  margin-bottom: 0px;
}

.section-5 .banner-text .subcategory-text {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
}

.section-5 .explore-link {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-weight: 500;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
}

/* ================================================== */
/*                DIAMOND SELECTOR STYLES            */
/* ================================================== */

.diamond-selector {
  padding: 4rem 2rem;
  background: white;
  min-height: 20vh;
}

.diamond-selector__container {
  max-width: 1200px;
  margin: 0 auto;
}

.diamond-results {
  padding: 2rem;
  min-height: 60vh;
}

.diamond-results__container {
  max-width: 1400px;
  margin: 0 auto;
}

.controls {
  background: white;
  padding: 2rem;
  border-style: solid;
  border-width: 1px;
  border-color: #000;
}

.auth-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.auth-section input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1rem 1.5rem;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: "Asap", sans-serif;
}

.auth-section input:focus {
  outline: none;
  border-color: #000;
}

.auth-section button {
  position: relative;
  padding: 1rem 1.5rem;
  background: white;
  border: 2px solid #000;
  font-family: "Asap", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  z-index: 1;
  line-height: 1;
  white-space: nowrap;
  min-width: 160px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.auth-section button::before {
  content: "";
  position: absolute;
  background: black;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 0;
}

.auth-section button:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.auth-section button .button-text {
  color: black;
  position: relative;
  z-index: 1;
}

.auth-section button:hover .button-text {
  color: white !important;
}

.auth-section button:focus .button-text {
  color: black !important;
}

.auth-section button:active .button-text {
  color: black !important;
}

.auth-section button:focus:hover .button-text {
  color: white !important;
}

.auth-section button .button-icon {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  padding-left: 8px;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.auth-section button:hover .button-icon {
  color: white;
  z-index: 1;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.status {
  margin: 1rem 0 0 0;
  padding: 1rem 1.5rem;
  display: none;
  font-weight: 500;
}

.status.success {
  background: black;
  font-family: "Asap", sans-serif;
  color: white;
  border: 1px solid #000;
}

.status.error {
  background: black;
  font-family: "Asap", sans-serif;
  color: #fff;
  border: 1px solid #000;
}

.diamond-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(350px, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.diamond-card {
  background: white;
  padding: 1.5rem;
  border: 1px solid black;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.diamond-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: black;
}

.diamond-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.diamond-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8f9fa;
}

.diamond-shape {
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.diamond-price {
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  background: black;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.diamond-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f3f4;
  font-size: 0.9rem;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: #000;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  color: #000;
  font-weight: 500;
  text-align: right;
}

.diamond-media {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid #f8f9fa;
}

.media-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.media-link {
  padding: 1rem 1.5rem;
  background: black;
  border: 1px solid #000;
  font-family: "Asap", sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.media-link:hover {
  background: #555;
  color: white;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.loading {
  text-align: center;
  padding: 4rem 2rem;
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
}

.loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

.no-data {
  text-align: center;
  padding: 4rem 2rem;
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ================================================== */
/*                DIAMOND FILTER STYLES              */
/* ================================================== */

.filter-section {
  margin-bottom: clamp(2rem, 6vw, 4rem);
  padding: clamp(1rem, 3vw, 2rem) 0;
  border-bottom: 1px solid rgba(0, 49, 82, 0.1);
}

.filter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.filter-label {
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 1rem;
  font-weight: 500;
  color: #999;
  margin-right: 0px;
}

.filter-dropdowns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.filter-dropdown {
  position: relative;
}

.filter-btn {
  background: none;
  border: 2px solid #000;
  color: #000;
  padding: 0.75rem 1rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Asap", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  min-width: 7.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.filter-btn:hover {
  background: #000;
  color: white;
}

.filter-btn.active {
  background: #000;
  color: white;
}

.chevron {
  width: 16px;
  height: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.filter-btn.active .chevron {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filter-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #000;
  padding: 1.25rem;
  margin-top: 0.625rem;
  opacity: 0;
  font-family: "NimbusRomNo9L-Reg", serif;
  font-size: 0.95rem;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
  min-width: 12.5rem;
}

.filter-options.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.filter-options label {
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #000;
}

.filter-options label:hover {
  color: #000;
}

.filter-options label:last-child {
  margin-bottom: 0;
}

.filter-options input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #000;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 2px;
  position: relative;
}

.filter-options input[type="checkbox"]:checked {
  background-color: #000;
}

.filter-options input[type="checkbox"]:checked::after {
  content: "✓";
  color: white;
  font-size: 10px;
  position: absolute;
  top: -1px;
  left: 1px;
}

.price-range-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.price-range-inputs input {
  padding: 0.5rem;
  border: 1px solid #000;
  font-size: 0.9rem;
  font-family: "Asap", sans-serif;
}

.price-range-inputs span {
  color: #000;
  font-weight: bold;
  text-align: center;
  font-size: 0.8rem;
}

.results-summary {
  text-align: center;
  padding: 0.5rem 1rem;
  background: black;
  font-weight: 500;
  font-family: "Asap", sans-serif;
  color: #fff;
  font-size: 0.9rem;
}

.quick-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
}

.quick-filter-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.quick-filter-btn {
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid #000;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: "Asap", sans-serif;
}

.quick-filter-btn:hover,
.quick-filter-btn.active {
  background: #000;
  color: white;
  border-color: #000;
}

.sorting-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-color: #000;
  border-style: solid;
  border-width: 2px;
}

.sorting-controls select {
  background: none;
  border: 2px solid #000;
  color: #000;
  padding: 0.5rem;
  cursor: pointer;
  font-family: "Asap", sans-serif;
  font-size: 0.9rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'><polyline points='6,9 12,15 18,9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px;
  padding-right: 2rem;
}

.sorting-controls select:hover {
  background-color: #000;
  color: white;
}

/* ================================================== */
/*                RESPONSIVE DESIGN                   */
/* ================================================== */

/* ===== LARGE TABLET: 1024px and below ===== */
@media screen and (max-width: 1140px) {
  .content__subtitle {
    margin-top: 10px;
  }

  .filter-container {
    flex-direction: column;
    gap: 20px;
  }

  .filter-dropdowns {
    justify-content: center;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem 0;
  }

  .product-details-mobile {
    display: block;
  }

  .my-btn {
    margin-top: 10px;
  }

  .container {
    padding: 0 15px;
  }

  .container > .product-layout {
    flex-direction: column !important;
    padding-left: 50px;
    padding-right: 50px;
  }

  .media-column {
    max-width: fit-content;
  }

  .shopping-cart {
    width: 50vw;
    min-width: 350px;
  }

  .jewelry-products {
    padding: 60px 0;
  }

  .product-item {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 80px;
    padding: 0 30px;
  }

  .product-image {
    max-width: 100%;
  }

  .product-image img {
    height: 500px;
  }

  .alt-page .product-content {
    max-width: 90%;
    margin-top: 0;
  }

  .product-content p {
    text-align: center;
  }

  .shop-by-category h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .category-item h3 {
    margin-bottom: 10px;
  }

  .category-item img {
    margin-bottom: 15px;
  }

  .appointment-banner {
    padding: 60px 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .appointment-content {
    position: static;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .appointment-text {
    max-width: 80%;
    order: 2;
  }

  .about-content h2 {
    margin-bottom: 25px;
  }

  .load-more-container {
    margin: 0rem auto 1.5rem;
  }

  .section-1 {
    height: 40vh;
  }

  .slider-image-container {
    width: 300px;
    height: 300px;
  }

  .section-2 {
    height: 60vh;
  }

  .section-3 {
    height: 60vh;
  }

  .section-4 {
    height: 40vh;
  }

  .slider-image-container-4 {
    width: 300px;
    height: 300px;
  }

  .section-5 {
    height: 60vh;
  }

  .diamond-selector {
    padding: 2rem 1rem;
  }

  .diamond-results {
    padding: 1rem;
  }

  .diamond-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .media-links {
    justify-content: center;
  }

  .quick-filter-buttons {
    justify-content: center;
  }
}

/* ===== SMALL TABLET: 820px and below ===== */
@media screen and (max-width: 820px) {
  .slider-image-container {
    width: 250px;
    height: 250px;
  }

  .slider-image-container-4 {
    width: 250px;
    height: 250px;
  }

  .product-item {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 80px;
    padding: 0 30px;
  }

  .product-image img {
    height: 400px;
  }

  .alt-page .product-content {
    max-width: 90%;
    margin-top: 0;
  }
}

/* ===== MOBILE: 768px and below ===== */
@media screen and (max-width: 768px) {
  .filter-container {
    flex-direction: column;
    gap: 20px;
  }

  .filter-dropdowns {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .filter-dropdown {
    width: 100%;
  }

  .filter-btn {
    width: 100%;
    min-width: unset;
    padding: 0.9rem 1rem !important;
  }

  .filter-options {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0;
    border: none;
    box-shadow: none;
    background: #f8f9fa;
    display: none;
  }

  .filter-options.show {
    display: block;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
    margin-top: 75px;
  }

  .container {
    padding: 0 15px;
  }

  .container > .product-layout {
    flex-direction: column !important;
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-info {
    padding: 20px 40px;
    max-width: 100%;
  }

  .jewelry-products {
    padding: 50px 0;
  }

  .product-item {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 30px;
  }

  .product-image img {
    height: 250px;
  }

  .alt-page .product-image img {
    margin-top: 50px;
  }

  .alt-page .product-content p {
    margin-top: 60px;
  }

  .alt-page .product-content {
    margin-top: -35px;
    margin-bottom: -50px;
    max-width: 100%;
  }

  .product-content h3 {
    margin-top: 10px;
  }

  .shop-by-category h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-item h3 {
    font-size: 1.5rem;
    margin-bottom: 7px;
  }

  .appointment-banner {
    padding: 25px 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .appointment-content {
    position: static;
    gap: 30px;
  }

  .appointment-text {
    max-width: 90%;
  }

  .appointment-text p {
    font-size: 0.9rem;
  }

  .contact-info {
    padding: 60px 20px;
  }

  .contact-info__container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }

  .contact-info__section:nth-child(2)::before {
    display: none;
  }

  .contact-info__section:first-child::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 39%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background-color: #000;
    z-index: 1;
  }

  .contact-info__heading {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }

  .contact-info__details p {
    font-size: 1rem;
  }

  .about-content h2 {
    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 1rem;
  }

  .load-more-container {
    margin: 1.5rem auto 1.5rem;
    padding: 0.5rem;
  }

  .load-more-btn .hover-button {
    min-width: 120px;
  }

  .shipping-title {
    margin-top: 40px;
  }

  .section-1 {
    height: 70vh;
  }

  .section-1-image {
    display: none;
  }

  .slider-image-container {
    width: 325px;
    height: 325px;
  }

  .section-1-slider {
    width: 100%;
  }

  .category-text {
    font-size: 0.85rem;
  }

  .subcategory-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .banner-text {
    top: auto !important;
    bottom: 40px;
    left: 40px;
  }

  .banner-text .category-text {
    font-size: 0.85rem;
  }

  .banner-text .subcategory-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .section-3 {
    height: 100vh;
  }

  .video-container {
    width: calc(100% - 5px);
    height: calc(100% - 0px);
  }

  .video-text {
    margin-left: 0px;
  }

  .video-text .category-text {
    font-size: 0.85rem;
  }

  .video-text .subcategory-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .section-4 {
    flex-direction: column;
    height: auto;
    margin-top: 10px;
  }

  .section-4-image {
    display: block;
    width: 100%;
    height: 70vh;
    position: relative;
  }

  .section-4-slider {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-image-container-4 {
    width: 325px;
    height: 325px;
  }

  .section-4-slider .category-text {
    font-size: 0.85rem;
  }

  .section-4-slider .subcategory-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .image-text {
    bottom: 40px;
    left: 40px;
    top: auto;
  }

  .image-text .category-text {
    font-size: 0.85rem;
  }

  .image-text .subcategory-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .section-5 .banner-text {
    top: auto;
    bottom: 40px;
    left: 40px;
  }

  .section-5 .banner-text .category-text {
    font-size: 0.85rem;
  }

  .section-5 .banner-text .subcategory-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .diamond-selector {
    padding: 2rem 1rem;
  }

  .diamond-results {
    padding: 1rem;
  }

  .controls {
    padding: 1.5rem;
  }

  .auth-section {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-section input,
  .auth-section button {
    min-width: unset;
    width: 100%;
  }

  .diamond-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .diamond-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .media-links {
    justify-content: center;
  }

  .quick-filter-buttons {
    justify-content: center;
  }
}

/* ===== DESKTOP SPECIFIC (min-width rules) ===== */
@media screen and (min-width: 1141px) {
  .message {
    display: none;
  }

  .content--fixed {
    padding: 1.5em;
    pointer-events: none;
  }

  .content--fixed a {
    pointer-events: auto;
  }

  .shopping-cart {
    width: clamp(420px, 28vw, 500px);
  }
}

/* ===== TABLET RANGE SPECIFIC (for shopping cart) ===== */
@media screen and (max-width: 1140px) and (min-width: 768px) {
  .shopping-cart {
    width: 50vw;
    min-width: 350px;
  }
}