body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #111;
    position: sticky;
    top: 0;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
}

nav a:hover {
    color: gold;
}

.currency-toggle button {
    margin-left: 5px;
    padding: 5px 10px;
    background: #222;
    border: 1px solid #333;
    color: white;
    cursor: pointer;
}

.currency-toggle button:hover {
    background: gold;
    color: black;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(to bottom, #111, #000);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: gold;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.trust {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
}

.trust div {
    width: 30%;
    text-align: center;
}

footer {
    text-align: center;
    padding: 30px;
    background: #111;
    font-size: 13px;
}

.collection {
    padding: 60px 40px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #111;
    padding: 20px;
    border: 1px solid #222;
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card h3 {
    margin: 15px 0 5px;
}

.card p {
    margin: 5px 0;
}

.small {
    padding: 8px 15px;
    font-size: 12px;
}

.pagination {
    margin-top: 40px;
}

.pagination button {
    margin: 5px;
    padding: 6px 12px;
    background: #222;
    border: 1px solid #333;
    color: white;
    cursor: pointer;
}

.form-section {
    padding: 60px 40px;
    max-width: 600px;
    margin: auto;
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

form label {
    margin-top: 15px;
    font-size: 14px;
}

form input,
form textarea {
    padding: 10px;
    margin-top: 5px;
    background: #111;
    border: 1px solid #333;
    color: white;
}

form button {
    margin-top: 20px;
}

.direct-contact {
    margin-top: 40px;
    font-size: 14px;
}

/* ===== Luxury upgrade pack (black + gold) ===== */
:root{
  --bg:#070707;
  --panel:#0f0f0f;
  --gold:#c8a74a;
  --gold2:#e2c977;
  --muted:#b9b9b9;
}

body{ background: var(--bg); color:#fff; }

header{
  border-bottom: 1px solid rgba(200,167,74,0.18);
  backdrop-filter: blur(8px);
}

.logo{
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav a{
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.92;
}

nav a:hover{ color: var(--gold2); }

.currency-toggle button{
  border: 1px solid rgba(200,167,74,0.25);
  background: rgba(255,255,255,0.02);
}

.currency-toggle button:hover{
  background: var(--gold);
  color: #000;
}

/* Hero with luxury feel */
.hero{
  padding: 140px 20px;
  background:
    radial-gradient(800px 400px at 50% 20%, rgba(200,167,74,0.16), rgba(0,0,0,0)),
    linear-gradient(to bottom, #0b0b0b, #000);
  border-bottom: 1px solid rgba(200,167,74,0.18);
}

.hero h1{
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero p{
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0.4px;
}

.btn{
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 10px 30px rgba(200,167,74,0.18);
}

.btn.ghost{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(200,167,74,0.35);
  box-shadow: none;
  margin-left: 10px;
}

.trust{
  gap: 24px;
}

.trust div{
  background: var(--panel);
  border: 1px solid rgba(200,167,74,0.12);
  padding: 22px;
}

.trust h3{
  color: var(--gold2);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

footer{
  border-top: 1px solid rgba(200,167,74,0.18);
  color: #9a9a9a;
}

/* Watches cards more premium */
.card{
  background: var(--panel);
  border: 1px solid rgba(200,167,74,0.12);
  border-radius: 16px;
  overflow: hidden;
}

.card h3{
  color: var(--gold2);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.card p{ color: #d8d8d8; }

.pagination button{
  border-radius: 10px;
  border: 1px solid rgba(200,167,74,0.25);
}
.pagination button:hover{
  background: rgba(200,167,74,0.18);
}

/* About page */
.page{
  padding: 70px 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.lead{ color: var(--muted); font-size: 16px; max-width: 720px; margin: 0 auto 30px; }
.split{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 18px;
  margin-top: 30px;
}
.panel{
  background: var(--panel);
  border: 1px solid rgba(200,167,74,0.12);
  border-radius: 16px;
  padding: 20px;
}
.cta-row{ margin-top: 30px; text-align: center; }

.filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:20px;
}

.filter-btn{
  padding:8px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,167,74,0.25);
  color: #fff;
  cursor:pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

.filter-btn:hover{
  background: rgba(200,167,74,0.14);
}

.filter-btn.active{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#000;
  border-color: transparent;
}
/* ===== Homepage layout + logo ===== */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--gold2);
}
.logo .logo-text{ color:#fff; }
.logo .logo-mark{ color: var(--gold2); display:inline-flex; }

.section{
  padding: 70px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.section-title{
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold2);
  margin-bottom: 18px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
  margin-top: 22px;
}
.panel-wide{
  max-width: 900px;
  margin: 0 auto;
}
.muted{ color: var(--muted); }
.hero-inner{
  max-width: 980px;
  margin: 0 auto;
}
.hero-badge{
  display:inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(200,167,74,0.25);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-actions{ margin-top: 22px; }
.hero-stats{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 28px;
}
.stat{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,167,74,0.12);
  border-radius: 16px;
  padding: 14px 16px;
  min-width: 170px;
}
.stat-k{
  color: var(--gold2);
  font-weight: 700;
  letter-spacing: 1px;
}
.stat-l{
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

/* Option 1: velvet hero */
.hero-velvet{
  background:
    radial-gradient(900px 400px at 50% 20%, rgba(200,167,74,0.18), rgba(0,0,0,0)),
    radial-gradient(700px 360px at 20% 30%, rgba(255,255,255,0.06), rgba(0,0,0,0)),
    linear-gradient(to bottom, #0b0b0b, #000);
  border-bottom: 1px solid rgba(200,167,74,0.18);
}

/* Option 3: moving “video-like” gradient */
.hero-motion{
  position: relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(200,167,74,0.18);
}
.hero-motion-bg{
  position:absolute;
  inset:-60px;
  background:
    radial-gradient(800px 500px at 15% 35%, rgba(200,167,74,0.22), rgba(0,0,0,0)),
    radial-gradient(700px 450px at 85% 45%, rgba(255,255,255,0.08), rgba(0,0,0,0)),
    linear-gradient(120deg, #0b0b0b, #000, #0b0b0b);
  filter: blur(18px);
  opacity: 1;
  animation: drift 10s ease-in-out infinite alternate;
  transform: translate3d(0,0,0);
}
@keyframes drift{
  from{ transform: translate(-20px,-10px) scale(1.05); }
  to{ transform: translate(20px,10px) scale(1.1); }
}
.hero-motion .hero-inner{
  position: relative;
  z-index: 1;
}

/* Mobile tweaks */
@media (max-width: 760px){
  .hero h1{ font-size: 40px; }
  header{ padding: 16px 18px; gap: 12px; flex-wrap: wrap; }
  nav a{ margin: 0 8px; }
}

/* ===== Luxury Image Showcase ===== */
.image-showcase{
  position: relative;
  height: 70vh;
  min-height: 500px;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1523275335684-37898b6baf30?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  border-top: 1px solid rgba(200,167,74,0.18);
  border-bottom: 1px solid rgba(200,167,74,0.18);
}

.image-content h2{
  text-shadow: 0 0 40px rgba(200,167,74,0.35);
}

.image-showcase-overlay{
  text-align:center;
  padding: 40px;
}

.image-content h2{
  font-size: 38px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.image-content p{
  max-width: 600px;
  margin: 0 auto 25px;
  color: var(--muted);
}

/* ===== Brand Strip ===== */
.brand-strip{
  background: #000;
  border-top: 1px solid rgba(200,167,74,0.18);
  border-bottom: 1px solid rgba(200,167,74,0.18);
  padding: 18px 20px;
  overflow: hidden;
}

.brand-strip-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gold2);
  opacity: 0.85;
}

.brand-strip-inner span{
  margin: 0 10px;
}


/* ===== Luxury Gold Watch Showcase ===== */
.image-showcase{
  position: relative;
  height: 75vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(200,167,74,0.18);
  border-bottom: 1px solid rgba(200,167,74,0.18);
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.8)),
    url('https://source.unsplash.com/yHn3NFCQBnM/2000x1200') center/cover no-repeat;
}

.image-showcase-overlay{
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.image-content h2{
  font-size: 42px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.image-content p{
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}


/* ===== Improve Section Spacing ===== */
.section{
  padding: 90px 40px;
}

.section-title{
  margin-bottom: 28px;
  letter-spacing: 2px;
}

.panel{
  transition: all 0.3s ease;
}

.panel:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}


/* ===== Improve Buttons Slightly ===== */
.btn{
  padding: 12px 22px;
  font-size: 14px;
  letter-spacing: 1px;
}

.btn.ghost{
  background: transparent;
  border: 1px solid rgba(200,167,74,0.35);
}


/* ===== Footer Refinement ===== */
footer{
  padding: 50px 20px;
  text-align: center;
  background: #050505;
}

footer p{
  margin-bottom: 10px;
  font-size: 13px;
  color: #9a9a9a;
}
/* ===== Add Depth To Lower Sections ===== */

.section{
  position: relative;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(200,167,74,0.08), rgba(0,0,0,0)),
    linear-gradient(to bottom, #0b0b0b, #000);
  border-top: 1px solid rgba(200,167,74,0.08);
}

.section:nth-of-type(even){
  background:
    radial-gradient(700px 400px at 50% 100%, rgba(200,167,74,0.06), rgba(0,0,0,0)),
    linear-gradient(to bottom, #0a0a0a, #000);
}

footer{
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(200,167,74,0.06), rgba(0,0,0,0)),
    linear-gradient(to bottom, #050505, #000);
}