html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

body {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background-color: #2b2031;
}

.landing-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(43, 32, 49, 0.9);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #e0e0e0;
}

.hero {
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.hero h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 65px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero p {
  font-size: 19px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 10px 30px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e0e0e0;
}

.hero-image,
.decorative-image {
  max-width: 100%;
  height: auto;
}

.product-categories {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 32px;
}

.product-categories article {
  flex-basis: 48%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  color: #000000;
}

.product-categories h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.product-categories p {
  margin-bottom: 20px;
}

.category-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}

.retailer-finder {
  margin-top: 50px;
  text-align: center;
}

.retailer-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 30px;
  gap: 16px;
  flex-wrap: wrap;
}

.retailer-logos img {
  max-width: 100px;
  height: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}

.certification {
  margin-top: 50px;
  text-align: center;
}

.certification h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.certification span {
  display: block;
  font-size: 32px;
}

.customer-reviews {
  margin-top: 50px;
}

.review-summary {
  text-align: center;
  margin-bottom: 30px;
}

.rating {
  font-size: 48px;
  font-weight: bold;
}

.star-rating {
  font-size: 24px;
  color: #ffd700;
}

.reviews {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.review {
  flex-basis: 30%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  color: #000000;
}

.reviewer-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.refurbishment {
  margin-top: 50px;
  text-align: center;
}

.refurbishment-methods {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  gap: 32px;
}

.refurbishment-methods ul {
  list-style-type: none;
  padding: 0;
}

footer {
  background-color: #18121e;
  color: #fff;
  padding: 32px 0 0 0;
  margin-top: 60px;
  border-top: none;
  box-shadow: 0 -2px 16px rgba(43,32,49,0.10);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav div {
  margin-right: 50px;
}

.footer-nav h4 {
  margin-bottom: 15px;
}

.footer-nav ul {
  list-style-type: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
}

.social-media ul {
  display: flex;
  list-style-type: none;
  padding: 0;
}

.social-media ul li {
  margin-right: 15px;
}

.copyright {
  text-align: center;
  padding: 18px 0 10px 0;
  font-size: 1rem;
  color: #e0d8ee;
  border-top: 1px solid #2a202d;
  margin-top: 0;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  margin: 48px 0 32px 0;
  color: #fff;
  letter-spacing: 1px;
}

.gem-section {
  margin-bottom: 48px;
}

.section-title {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  color: #e0d8ee;
  margin-bottom: 24px;
  text-align: left;
  padding-left: 16px;
}

.gem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 0 16px;
}

.gem-grid article {
  background: #22182b;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(43, 32, 49, 0.1);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.gem-grid article:hover {
  box-shadow: 0 4px 32px rgba(43, 32, 49, 0.18);
}

.gem-grid img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 1px 8px rgba(43, 32, 49, 0.08);
}

.gem-grid h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-align: center;
}

.gem-grid p {
  font-size: 0.98rem;
  color: #81738b;
  text-align: center;
  margin: 0;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  padding: 80px 0 40px 60px;
  background: none;
  position: relative;
  overflow: hidden;
}

.hero-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  position: relative;
  z-index: 1;
}

.hero-left h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #d1c7db;
  margin-bottom: 28px;
}

.product-catalogue-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  color: #23192a;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 24px 0 rgba(43, 32, 49, 0.1);
  transition: background 0.2s, color 0.2s;
}

.product-catalogue-btn:hover {
  background: #e0d8ee;
  color: #23192a;
}

.our-story {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 12px;
}

.story-icon {
  width: 40px;
  height: 40px;
  margin-top: 4px;
}

.our-story h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #fff;
}

.our-story p {
  font-size: 0.98rem;
  color: #e0d8ee;
  margin: 0;
}

.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero-ring {
  width: 260px;
  max-width: 100%;
  margin-bottom: -40px;
  z-index: 2;
  position: relative;
}

.hero-right img.hero-ring:last-child {
  margin-top: -80px;
  margin-left: 60px;
  width: 180px;
  z-index: 1;
  position: absolute;
  left: 120px;
  top: 120px;
}

.hero-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  right: -40px;
  top: 40px;
}

.hero-social img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* --- Scoped Product Cards Section Styling --- */
.product-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.product-card {
  display: flex;
  align-items: center;
  background: #18121e; /* Darker background */
  border-radius: 36px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
  padding: 48px 48px;
  gap: 48px;
  max-width: 100%;
}

.product-card.product-card-gems {
  flex-direction: row;
}

.product-card.product-card-jewellery {
  flex-direction: row-reverse;
}

.product-card-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card-image img {
  width: 440px;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(43,32,49,0.08);
  display: block;
}

.product-card-content {
  flex: 2 1 400px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #fff;
  line-height: 1.15;
}

.product-card-desc {
  font-size: 1.15rem;
  color: #e0d8ee;
  margin-bottom: 28px;
  font-family: "Montserrat", sans-serif;
  max-width: 600px;
}

.category-button {
  display: inline-block;
  background: #fff;
  color: #23192a;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  margin-top: 0;
}

.category-button:hover {
  background: #e0d8ee;
  color: #23192a;
}

@media (max-width: 1100px) {
  .product-card {
    flex-direction: column !important;
    padding: 24px 12px;
    gap: 24px;
    text-align: center;
  }
  .product-card-image img {
    width: 100%;
    height: 220px;
  }
  .product-card-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .product-card-content {
    align-items: center;
    text-align: center;
  }
}

/* --- About Us Page Styles --- */

.about-page {
  max-width: 950px;
  margin: 0 auto;
  padding: 56px 24px 40px 24px;
  background: linear-gradient(135deg, #23192a 60%, #2b2031 100%);
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(43,32,49,0.12);
}

.about-hero {
  text-align: center;
  margin-bottom: 48px;
}

.about-hero h1 {
  font-size: 2.8rem;
  font-family: "Noto Serif JP", serif;
  color: #cec7a1;
  margin-bottom: 18px;
  letter-spacing: 1px;
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(43, 32, 49, 0.12);
}

.about-lead {
  font-size: 1.3rem;
  color: #e0d8ee;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-block {
  background: #18121e;
  color: #f9f9fb;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(43,32,49,0.10);
  padding: 40px 32px 36px 32px;
  margin-bottom: 36px;
  border-left: 6px solid #ffffff;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFadeIn 0.8s forwards;
}

.about-block:nth-child(1) { animation-delay: 0.1s; }
.about-block:nth-child(2) { animation-delay: 0.3s; }
.about-block:nth-child(3) { animation-delay: 0.5s; }

@keyframes aboutFadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.about-block:hover {
  box-shadow: 0 12px 48px rgba(43, 32, 49, 0.22);
  transform: translateY(-8px) scale(1.04);
}

.about-block h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  letter-spacing: 1px;
}

.about-block h2::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 60%, #e0d8ee 100%);
  border-radius: 2px;
  margin-right: 12px;
  vertical-align: middle;
}

.about-block p,
.about-block ul,
.about-block li {
  color: #f9f9fb;
  font-size: 1.13rem;
  line-height: 1.7;
}

.about-block ul {
  padding-left: 22px;
}

.about-block li {
  margin-bottom: 10px;
  list-style: disc;
}

.landing-page-nav-bar {
  background: #2a202d;
  padding: 0;
  box-shadow: none;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
}

.navbar-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-right: 40px;
}

.navbar-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li a {
  color: #e0d8ee;
  text-decoration: none;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  transition: color 0.2s;
}

.navbar-links li a:hover {
  color: #ffffff;
}

/* Jewellery Page Styles */
.jewellery-hero {
  text-align: center;
  margin-bottom: 40px;
}

.jewellery-hero h1 {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin-bottom: 16px;
}

.jewellery-lead {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(43,32,49,0.18);
  letter-spacing: 0.5px;
  line-height: 1.7;
}

.jewellery-content {
  display: flex;
  justify-content: center;
}

.jewellery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  padding: 0 16px 48px 16px;
}

.jewellery-card {
  background: #22192b;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(43, 32, 49, 0.1);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.jewellery-card:hover {
  box-shadow: 0 4px 32px rgba(43, 32, 49, 0.18);
}

.jewellery-card img {
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0 auto 18px auto;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(43,32,49,0.10);
  background: #23192a;
  transition: transform 0.3s;
}

.jewellery-card:hover img {
  transform: scale(1.07);
}

.jewellery-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #d3d0d6;
  margin-bottom: 8px;
  text-align: center;
}

.jewellery-card p {
  font-size: 0.98rem;
  color: #ae98be;
  text-align: center;
  margin: 0;
}

/* --- Delivery Page Styles --- */
.delivery-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 40px 24px;
}

.delivery-hero {
  text-align: center;
  margin-bottom: 40px;
}

.delivery-hero h1 {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: 1px;
}

.delivery-lead {
  font-size: 1.15rem;
  color: #d1c7db;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

.delivery-methods {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.shipping-card {
  background: linear-gradient(120deg, #f7f5fa 80%, #e0d8ee 100%);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(43,32,49,0.10);
  padding: 32px 28px;
  min-width: 260px;
  max-width: 320px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  cursor: pointer;
  border: 1px solid #e0d8ee;
}

.shipping-card:hover {
  box-shadow: 0 8px 48px rgba(43,32,49,0.18);
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(120deg, #e0d8ee 80%, #f7f5fa 100%);
  border-color: #cbbbe2;
}

.shipping-logo {
  width: 80px;
  height: auto;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(43,32,49,0.08);
  padding: 8px;
}

.shipping-card h2 {
  font-size: 1.3rem;
  color: #4c3a5a;
  margin-bottom: 12px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.shipping-card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 1.05rem;
  color: #3a2c4a;
  font-family: "Montserrat", sans-serif;
}

.shipping-card li {
  margin-bottom: 10px;
}

.delivery-info {
  background: #23192a;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(43,32,49,0.10);
  padding: 28px 22px;
  color: #fff;
  font-size: 1.08rem;
  font-family: "Montserrat", sans-serif;
}

.delivery-info ul {
  list-style-type: disc;
  padding-left: 24px;
  margin: 0;
}

.delivery-info li {
  margin-bottom: 12px;
}

.shipping-cards-row {
  display: flex;
  gap: 36px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.shipping-card-black {
  display: flex;
  align-items: center;
  background: #18121e;
  border-radius: 24px;
  padding: 32px 32px;
  gap: 32px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.14);
  min-width: 320px;
  max-width: 480px;
  flex: 1 1 320px;
  border: 3px solid #f5f4f2;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
}

.shipping-card-black:hover {
  box-shadow: 0 12px 48px rgba(43, 32, 49, 0.22);
  transform: translateY(-8px) scale(1.04);
  border-color: #fff;
  z-index: 2;
}

.shipping-card-image {
  flex: 1 1 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shipping-card-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 2px 12px rgba(43,32,49,0.10);
  display: block;
}

.shipping-card-content {
  flex: 2 1 200px;
  color: #fff;
  text-align: left;
}

.shipping-card-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.shipping-card-content p {
  font-size: 1.08rem;
  color: #f9f9fb;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

/* Payment Details Section */
.payment-details {
  background: #23192a;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(43,32,49,0.10);
  padding: 28px 22px;
  color: #fff;
  font-size: 1.08rem;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 28px;
}

.payment-details h2 {
  color: #e0d8ee;
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-family: "Noto Serif JP", serif;
}

.payment-details ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0 0 8px 0;
}

.payment-details li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 8px;
}

.payment-details li::before {
  content: "•";
  color: #7c5ca7;
  font-weight: bold;
  position: absolute;
  left: -10px;
  top: 0;
}

.contact-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 40px 24px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 40px;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: 1px;
}

.contact-lead {
  font-size: 1.15rem;
  color: #d1c7db;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

.contact-details {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-info, .contact-socials {
  background: #23192a;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(43,32,49,0.10);
  padding: 28px 22px;
  color: #fff;
  font-size: 1.08rem;
  font-family: "Montserrat", sans-serif;
  min-width: 260px;
  max-width: 400px;
  flex: 1 1 260px;
}

.contact-info h2, .contact-socials h2 {
  color: #e0d8ee;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: "Noto Serif JP", serif;
}

.contact-info a, .contact-socials a {
  color: #e0d8ee;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover, .contact-socials a:hover {
  color: #fff;
}

.contact-socials ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.contact-socials li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.social-icon {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 6px;
  background: #fff;
  padding: 2px;
  box-shadow: 0 1px 8px rgba(43,32,49,0.08);
}

.payment-cards-row {
  display: flex;
  gap: 36px;
  justify-content: flex-start;
  align-items: stretch;
  margin: 36px 0 32px 0;
  flex-wrap: wrap;
}

.payment-card {
  display: flex;
  align-items: center;
  background: #18121e;
  border-radius: 24px;
  padding: 32px 32px;
  gap: 32px;
  box-shadow: 0 4px 32px 0 rgba(43,32,49,0.14);
  min-width: 320px;
  max-width: 480px;
  flex: 1 1 320px;
  border: 2.5px solid #3a2b47;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
}

.payment-card:hover {
  box-shadow: 0 12px 48px rgba(43, 32, 49, 0.22);
  transform: translateY(-8px) scale(1.04);
  border-color: #a18acb;
  z-index: 2;
}

.payment-card-image {
  flex: 1 1 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payment-card-image img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 16px;
  background: #23192a;
  padding: 8px;
  box-shadow: 0 2px 12px rgba(43,32,49,0.10);
  display: block;
}

.payment-card-content {
  flex: 2 1 200px;
  color: #f9f9fb;
  text-align: left;
}

.payment-card-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f9f9fb;
  letter-spacing: 0.5px;
}

.payment-card-content ul,
.payment-card-content p {
  font-size: 1.08rem;
  color: #e0d8ee;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

.payment-card-content ul {
  padding-left: 18px;
}

.payment-card-content li {
  margin-bottom: 6px;
  list-style: disc;
}

@media (max-width: 900px) {
  /* Navbar responsiveness */
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8px;
    gap: 10px;
  }
  .navbar-logo {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .navbar-links {
    gap: 16px;
    font-size: 0.98rem;
  }

  /* Hero section responsiveness */
  .hero-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 8px 24px 8px;
    gap: 18px;
  }
  .hero-bg-logo {
    position: absolute;
    top: unset;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 220px;
    height: 220px;
    opacity: 0.18;
    transform: none;
  }
  .hero-left {
    width: 100%;
    z-index: 1;
  }
  .hero-left h1 {
    font-size: 2rem;
  }

  /* Product categories and cards */
  .product-categories,
  .reviews,
  .refurbishment-methods,
  .footer-content {
    flex-direction: column;
    gap: 24px;
  }
  .product-categories article,
  .review {
    margin-bottom: 30px;
    flex-basis: 100%;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-nav div {
    flex-basis: 50%;
    margin-bottom: 30px;
  }
  .product-cards {
    gap: 18px;
  }
  .product-card,
  .product-card.reverse {
    flex-direction: column;
    padding: 18px 8px;
    gap: 18px;
    text-align: center;
  }
  .product-card-image img {
    max-width: 90vw;
  }
  .product-card-content h2 {
    font-size: 1.2rem;
  }
}

/* Gem grid responsiveness */
@media (max-width: 1200px) {
  .gem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .gem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .gem-grid {
    grid-template-columns: 1fr;
  }
}

/* Jewellery grid responsiveness */
@media (max-width: 700px) {
  .jewellery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 4px 24px 4px;
  }
}

/* About, delivery, and contact page responsiveness */
@media (max-width: 700px) {
  .about-page,
  .delivery-page,
  .contact-page {
    padding: 18px 6px 18px 6px;
  }
  .about-hero h1,
  .delivery-hero h1,
  .contact-hero h1 {
    font-size: 1.5rem;
  }
  .about-block,
  .delivery-info,
  .contact-info,
  .contact-socials {
    padding: 18px 10px;
  }
  .about-block h2,
  .delivery-info h2,
  .contact-info h2,
  .contact-socials h2 {
    font-size: 1.2rem;
  }
}

/* Payment and shipping cards responsiveness */
@media (max-width: 900px) {
  .payment-cards-row,
  .shipping-cards-row {
    flex-direction: column;
    gap: 18px;
  }
  .payment-card,
  .shipping-card-black {
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}

/* Footer responsiveness */
@media (max-width: 600px) {
  .footer-content {
    padding: 0 2vw;
  }
  footer {
    font-size: 0.95rem;
    padding: 18px 0 8px 0;
  }
}

/* Social Media Card Styles */
.card.social-card {
  width: fit-content;
  background-color: #23192a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
  border-radius: 18px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.08);
  margin: 0 auto 32px auto;
}

.socialContainer {
  width: 52px;
  height: 52px;
  background-color: #18121e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  transition-duration: .3s;
  box-shadow: 0 2px 8px rgba(43,32,49,0.10);
}
.containerOne:hover { background-color: #d62976; }
.containerTwo:hover { background-color: #00acee; }
.containerThree:hover { background-color: #0072b1; }
.containerFour:hover { background-color: #128C7E; }
.socialContainer:active {
  transform: scale(0.9);
  transition-duration: .3s;
}
.socialSvg {
  width: 24px;
  height: 24px;
}
.socialSvg path {
  fill: #fff;
}
.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}
@keyframes slide-in-top {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Add pop effect for gem and jewellery cards on hover */
.gem-grid article,
.jewellery-card {
  transition: box-shadow 0.3s, transform 0.3s;
}

.gem-grid article:hover,
.jewellery-card:hover {
  box-shadow: 0 8px 48px rgba(43, 32, 49, 0.18);
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
}

/* Professional style for contact-info card */
.contact-info {
  background: #18121e;
  color: #f9f9fb;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(43,32,49,0.14);
  padding: 36px 32px 28px 32px;
  margin-bottom: 32px;
  border-left: 6px solid #e3dfe6;
  font-family: "Montserrat", sans-serif;
  font-size: 1.13rem;
  transition: box-shadow 0.3s, transform 0.3s;
  max-width: 400px;
}

.contact-info:hover {
  box-shadow: 0 12px 48px rgba(43, 32, 49, 0.22);
  transform: translateY(-8px) scale(1.04);
}

.contact-info h2 {
  color: #f3efdd;
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  letter-spacing: 1px;
}

.contact-info h2::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 60%, #e0d8ee 100%);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}

.contact-info p {
  margin-bottom: 10px;
  color: #f9f9fb;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Professional style for contact-socials card */
.contact-socials {
  background: #18121e;
  color: #f9f9fb;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(43,32,49,0.14);
  padding: 36px 32px 28px 32px;
  margin-bottom: 32px;
  border-left: 6px solid #fafafa;
  font-family: "Montserrat", sans-serif;
  font-size: 1.13rem;
  transition: box-shadow 0.3s, transform 0.3s;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-socials:hover {
  box-shadow: 0 12px 48px rgba(43, 32, 49, 0.22);
  transform: translateY(-8px) scale(1.04);
}

.contact-socials h2 {
  color: #eceade;
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  letter-spacing: 1px;
}

.contact-socials h2::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 4px;
  background: linear-gradient(90deg, #ccb21f 60%, #e0d8ee 100%);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}

.card.social-card {
  background: #23192a;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(43,32,49,0.10);
  padding: 18px 18px;
  margin: 0 auto;
  gap: 24px;
}

.socialContainer {
  border: 2px solid #fffef7;
  background-color: #18121e;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.socialContainer:hover {
  border-color: #fff;
  transform: scale(1.12);
  box-shadow: 0 4px 24px #ffd70044;
}

/* Professional style for Shipping & Delivery section heading */
.shipping-delivery-title {
  font-size: 1.7rem;
  font-family: "Noto Serif JP", serif;
  color: #ebebeb;
  margin-bottom: 28px;
  margin-top: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  padding-left: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.shipping-delivery-title::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff 60%, #e0d8ee 100%);
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Professional style for Payment Methods section heading */
.payment-methods-title {
  font-size: 1.7rem;
  font-family: "Noto Serif JP", serif;
  color: #ebebeb;
  margin-bottom: 28px;
  margin-top: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  padding-left: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-methods-title::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff 60%, #e0d8ee 100%);
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Light embedded logo in hero section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg-logo {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 480px;
  height: 620px;
  background: url('Assets/bg-removebg-preview.png') no-repeat center center;
  background-size: contain;
  opacity: 1;
  z-index: 0;
  transform: translateY(-40%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
}

/* --- Responsive Styles for All Devices --- */

/* Navbar responsiveness */
@media (max-width: 900px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8px;
    gap: 10px;
  }
  .navbar-logo {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .navbar-links {
    gap: 16px;
    font-size: 0.98rem;
  }
}

/* Hero section responsiveness */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 8px 24px 8px;
    gap: 18px;
  }
  .hero-bg-logo {
    position: absolute;
    top: unset;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 220px;
    height: 220px;
    opacity: 0.18;
    transform: none;
  }
  .hero-left {
    width: 100%;
    z-index: 1;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
}

/* Product categories and cards */
@media (max-width: 900px) {
  .product-categories,
  .reviews,
  .refurbishment-methods,
  .footer-content {
    flex-direction: column;
    gap: 24px;
  }
  .product-categories article,
  .review {
    margin-bottom: 30px;
    flex-basis: 100%;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-nav div {
    flex-basis: 50%;
    margin-bottom: 30px;
  }
  .product-cards {
    gap: 18px;
  }
  .product-card,
  .product-card.reverse {
    flex-direction: column;
    padding: 18px 8px;
    gap: 18px;
    text-align: center;
  }
  .product-card-image img {
    max-width: 90vw;
  }
  .product-card-content h2 {
    font-size: 1.2rem;
  }
}

/* Gem grid responsiveness */
@media (max-width: 1200px) {
  .gem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .gem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .gem-grid {
    grid-template-columns: 1fr;
  }
}

/* Jewellery grid responsiveness */
@media (max-width: 700px) {
  .jewellery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 4px 24px 4px;
  }
}

/* About, delivery, and contact page responsiveness */
@media (max-width: 700px) {
  .about-page,
  .delivery-page,
  .contact-page {
    padding: 18px 6px 18px 6px;
  }
  .about-hero h1,
  .delivery-hero h1,
  .contact-hero h1 {
    font-size: 1.5rem;
  }
  .about-block,
  .delivery-info,
  .contact-info,
  .contact-socials {
    padding: 18px 10px;
  }
  .about-block h2,
  .delivery-info h2,
  .contact-info h2,
  .contact-socials h2 {
    font-size: 1.2rem;
  }
}

/* Payment and shipping cards responsiveness */
@media (max-width: 900px) {
  .payment-cards-row,
  .shipping-cards-row {
    flex-direction: column;
    gap: 18px;
  }
  .payment-card,
  .shipping-card-black {
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}

/* Footer responsiveness */
@media (max-width: 600px) {
  .footer-content {
    padding: 0 2vw;
  }
  footer {
    font-size: 0.95rem;
    padding: 18px 0 8px 0;
  }
}