@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-gold: #C9A86A;
  --color-gold-dark: #A8864B;
  --color-black: #111111;
  --color-black-light: #1A1A1A;
  --color-white: #FFFFFF;
  --color-bg-light: #F8F8F8;
  --color-text: #333333;
  --color-brand-red: #832729;
  --color-brand-red-dark: #621D1E;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Inter', sans-serif;
}

/* Luxury Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-black);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-dark);
}

/* Custom Luxury Cursor (for Desktop) */
@media (min-width: 1024px) {
  .custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
  }
  
  .custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
  }

  body.cursor-hover .custom-cursor {
    width: 48px;
    height: 48px;
    background-color: rgba(201, 168, 106, 0.1);
    border-color: var(--color-gold);
  }
}

/* Gold Text Glow Effect */
.gold-glow {
  text-shadow: 0 0 10px rgba(201, 168, 106, 0.3);
}

.gold-glow-hover:hover {
  text-shadow: 0 0 15px rgba(201, 168, 106, 0.6);
}

/* Glassmorphism styling */
.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.glass-nav-dark {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 106, 0.1);
}

/* Luxury button lines */
.btn-gold-line {
  position: relative;
  overflow: hidden;
}

.btn-gold-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-gold-line:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Product Zoom */
.zoom-img-container {
  overflow: hidden;
}

.zoom-img-container img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.zoom-img-container:hover img {
  transform: scale(1.08);
}

/* Custom Swiper/Slider Pagination overrides */
.swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
}

/* Input Styles */
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 0 1px var(--color-gold);
}

/* Image Reveal Animation Helper */
.reveal-wrapper {
  overflow: hidden;
  position: relative;
}

.reveal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black-light);
  transform: scaleY(1);
  transform-origin: top;
}

/* Parallax Effect container */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-img {
  height: 120%;
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  object-fit: cover;
  will-change: transform;
}

/* Hide arrow on number inputs */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* Custom Range Slider */
.price-slider-track {
  height: 2px;
  background: #E5E5E5;
  position: relative;
}
.price-slider-range {
  height: 100%;
  background: var(--color-gold);
  position: absolute;
}
.price-slider-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s;
}
.price-slider-thumb:hover {
  background: var(--color-gold);
}



/* Form input focus focus-colors */
input:focus, select:focus, textarea:focus {
  border-color: var(--color-brand-red) !important;
  box-shadow: 0 0 0 1px var(--color-brand-red);
}

