
:root{
  --bg:#070708;
  --bg2:#0b0b0d;
  --card:#0f0f12;
  --card2:#121217;
  --text:#f2f2f4;
  --muted:#b7b7c1;
  --gold:#c6a85b;
  --gold2:#a17d2d;
  --border:rgba(255,255,255,.10);
  --border2:rgba(198,168,91,.22);
  --shadow: 0 22px 70px rgba(0,0,0,.55);
  --shadow2: 0 12px 30px rgba(0,0,0,.45);
  --radius: 22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(198,168,91,.10), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  letter-spacing:.2px;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

.container{max-width:1320px;margin:0 auto;padding:0 28px}
.section{padding:86px 0}
.section.compact{padding:56px 0}

header{
  position:fixed; inset:0 0 auto 0;
  z-index:50;
  background:rgba(7,7,8,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex;align-items:center;gap:14px}
.brand img{height:44px;width:auto;filter: drop-shadow(0 6px 22px rgba(0,0,0,.55));}
.navlinks{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.navlinks a{
  padding:10px 14px;border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
}
.navlinks a:hover{
  color:var(--text);
  border-color:var(--border);
  background:rgba(255,255,255,.03);
}
.navlinks a.active{
  color:var(--text);
  border-color:var(--border2);
  background:linear-gradient(180deg, rgba(198,168,91,.16), rgba(255,255,255,.02));
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
  transition:transform .14s ease, box-shadow .14s ease, border-color .14s ease, background .14s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,.32);
}
.btn:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.05)}
.btn.primary{
  border:1px solid rgba(198,168,91,.55);
  background:linear-gradient(135deg, rgba(198,168,91,.95), rgba(161,125,45,.9));
  color:#0b0b0d;
  box-shadow: 0 18px 55px rgba(198,168,91,.14), 0 12px 30px rgba(0,0,0,.45);
}
.btn.primary:hover{border-color:rgba(255,225,170,.75)}
.btn:disabled{opacity:.5;cursor:not-allowed;transform:none}

.kicker{
  color:var(--gold);
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:12px;
}
.h1{
  font-family: Georgia, "Times New Roman", serif;
  font-size:64px;
  line-height:1.02;
  margin:14px 0 10px;
  color:var(--text);
}
.h2{
  font-family: Georgia, "Times New Roman", serif;
  font-size:34px;
  margin:0 0 14px;
}
.p{color:var(--muted);line-height:1.7;margin:0;max-width:68ch}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:88px; /* header offset */
}
.hero-shell{
  width:100%;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:28px;
}
.hero-visual{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:
    radial-gradient(600px 380px at 30% 20%, rgba(198,168,91,.18), transparent 60%),
    radial-gradient(520px 360px at 80% 35%, rgba(255,255,255,.07), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.35));
  box-shadow: var(--shadow);
  padding:18px;
  overflow:hidden;
}
.hero-visual .frame{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#000;
  height:420px;
  display:flex;align-items:center;justify-content:center;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted); font-size:12px;
}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.feature{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  box-shadow: var(--shadow2);
}
.feature h3{margin:0 0 8px;font-size:16px;letter-spacing:.2px}
.feature p{margin:0;color:var(--muted);line-height:1.65}

.divider{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(198,168,91,.35), transparent);
  border:0;
  margin:26px 0;
}

.products-toolbar{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap:14px;
  margin:18px 0 18px;
}
.input, select, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
textarea.input{border-radius:18px}
.input::placeholder{color:rgba(183,183,193,.75)}
select{appearance:none}
.range-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  padding-top:6px;
}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.20));
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: var(--shadow2);
  display:flex;flex-direction:column;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 80px rgba(0,0,0,.65);
  border-color: rgba(198,168,91,.28);
}
.card .thumb{
  height:280px;
  background:#000;
  border-bottom:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}
.card .thumb iframe{width:100%;height:100%;border:0}
.card .thumb img{width:100%;height:100%;object-fit:cover;opacity:.95}
.card .body{padding:16px 16px 10px}
.meta{display:flex;gap:10px;flex-wrap:wrap;margin:10px 0 10px}
.pill{
  font-size:12px;color:rgba(255,255,255,.86);
  padding:7px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.price{font-weight:800;color:var(--gold);margin-top:8px;font-size:16px;letter-spacing:.2px}
.small{color:rgba(183,183,193,.86);font-size:12px;line-height:1.6}
.card .actions{display:flex;gap:10px;padding:0 16px 16px;margin-top:auto;flex-wrap:wrap}

.footer{
  padding:42px 0 58px;
  color:rgba(183,183,193,.9);
  border-top:1px solid var(--border);
  background:rgba(0,0,0,.20);
}
.footer-grid{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}
.footer a{color:rgba(183,183,193,.9);text-decoration:underline}

/* Modal */
.modal{
  position:fixed; inset:0; background:rgba(0,0,0,.72);
  display:none; align-items:center; justify-content:center;
  padding:16px; z-index:80;
}
.modal.open{display:flex}
.modal-card{
  width:min(980px, 100%);
  background:linear-gradient(180deg, rgba(18,18,23,.98), rgba(8,8,10,.98));
  border-radius:22px;
  overflow:hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,.7);
  border:1px solid rgba(255,255,255,.10);
}
.modal-head{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 14px; border-bottom:1px solid rgba(255,255,255,.10);
}
.modal-head .title{font-weight:800;letter-spacing:.3px}
.modal-close{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--text);
  border-radius:999px;
  padding:10px 12px; cursor:pointer;
}
.iframe-wrap{position:relative; padding-top:56.25%;}
.iframe-wrap iframe{position:absolute; inset:0; width:100%; height:100%; border:0;}

@media (max-width: 980px){
  .container{padding:0 18px}
  .hero-shell{grid-template-columns:1fr}
  .h1{font-size:52px}
  .cards{grid-template-columns:repeat(2,1fr)}
  .products-toolbar{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .hero-visual .frame{height:360px}
}
@media (max-width: 560px){
  .h1{font-size:40px}
  .cards{grid-template-columns:1fr}
  .brand img{height:40px}
}


/* Video thumbnail button */
.thumbBtn{position:relative;display:block;width:100%;height:100%;padding:0;border:0;background:transparent;cursor:pointer}
.thumbBtn:disabled{cursor:default}
.thumbBtn img{width:100%;height:100%;object-fit:cover;display:block}
.playBadge{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-size:54px;color:#fff;background:linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55));}


/* === Hero: full-width luxury logo === */
.hero-shell{
  grid-template-columns: 1fr !important;
  gap:18px !important;
  justify-items:center;
  text-align:center;
}
.hero-card--logo{
  max-width: 980px;
  width:100%;
  padding: 44px 28px;
}
.hero-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 6px 0 14px;
}
.hero-logo img{
  width:min(720px, 92vw);
  height:auto;
  display:block;
}
.hero-actions--center{
  justify-content:center;
}
.hero-tagline{
  max-width: 720px;
  margin-left:auto;
  margin-right:auto;
}
.hero-small{
  margin-top:14px;
  color:var(--muted);
}

/* Make header brand logo a bit larger */
.brand img{ height: 54px; width:auto; }
@media (max-width:720px){
  .brand img{ height: 44px; }
  .hero-card--logo{ padding: 34px 18px; }
}

/* ===== Updated Luxury Background ===== */
body {
    background: linear-gradient(135deg, #f5f0e6, #e8dfd1);
    font-family: 'Playfair Display', serif;
}

/* ===== Header Styling ===== */
header {
    background: #ffffff;
    padding: 20px 0;
    text-align: center;
}

header img {
    max-height: 80px;
    width: auto;
}

/* ===== Remove Shadows ===== */
header, .card {
    box-shadow: none !important;
}


/* ===============================
   FULL WIDTH HERO LUXURY HEADER
================================= */

header {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f5f0, #e6dccb);
    text-align: center;
    padding: 0 20px;
}

header img {
    max-width: 320px;
    height: auto;
    margin-bottom: 20px;
}

/* Elegant Brand Text */
.brand-title {
    font-size: 48px;
    letter-spacing: 4px;
    color: #b8892d; /* Royal Gold */
    font-weight: 600;
}

.brand-subtitle {
    font-size: 18px;
    letter-spacing: 6px;
    color: #444; /* Dark contrast */
}

/* ===============================
   MOBILE OPTIMIZATION
================================= */

@media (max-width: 768px) {

    header {
        height: 85vh;
        padding: 0 15px;
    }

    header img {
        max-width: 220px;
    }

    .brand-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .brand-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }
}

/* ===============================
   GLOBAL FONT COLOR FIX
================================= */

body {
    color: #222;
}

h1, h2, h3, h4 {
    color: #b8892d;
}

p {
    color: #444;
}



/* ===============================
   DJSE V4 – COMPACT LUXURY HEADER
================================= */

body {
    background: #f9f6f1;
    font-family: 'Cormorant Garamond', serif;
    color: #222;
}

/* Header */
header {
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f9f6f1;
    text-align: center;
    padding: 40px 20px;
}

/* Logo */
header img {
    max-width: 260px;
    height: auto;
    margin-bottom: 15px;
}

/* Metallic Gold Brand Title */
.brand-title {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #a8741a, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.brand-subtitle {
    font-size: 18px;
    letter-spacing: 6px;
    color: #555;
}

/* Headings */
h1, h2, h3 {
    color: #a8741a;
}

/* Mobile Optimization */
@media (max-width: 768px) {

    header {
        height: auto;
        padding: 60px 20px;
    }

    header img {
        max-width: 180px;
    }

    .brand-title {
        font-size: 34px;
        letter-spacing: 2px;
    }

    .brand-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }
}



/* ===============================
   DJSE V5 – LUXURY SHOP SECTION
================================= */

/* Shop Section Background */
.shop-section {
    background: #ffffff;
    padding: 80px 40px;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0e6d6;
}

/* Soft Luxury Hover */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(184, 137, 45, 0.15);
    border: 1px solid #d4af37;
}

/* Diamond Image */
.product-card img,
.product-card video {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Product Title */
.product-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #a8741a;
}

/* Specifications Text */
.product-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 6px;
}

/* Contact Button */
.product-card .contact-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 24px;
    border-radius: 30px;
    background: linear-gradient(90deg, #a8741a, #d4af37);
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.product-card .contact-btn:hover {
    opacity: 0.85;
}

/* Filter Section Styling */
.filters {
    margin-bottom: 50px;
    text-align: center;
}

.filters select {
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid #e0d4c2;
    background: #f9f6f1;
    margin: 5px;
    font-family: 'Cormorant Garamond', serif;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .shop-section {
        padding: 50px 20px;
    }

    .products-grid {
        gap: 25px;
    }

}

