:root{
  --bg:#0f1a14;
  --bg2:#16231b;
  --text:#f1f5f2;
  --muted:#b9c4b9;
  --line:rgba(255,255,255,.10);

  --card:rgba(255,255,255,.05);
  --shadow:0 22px 60px rgba(0,0,0,.35);

  --accent:#c9a44d;
  --accent2:#e3c67a;

  --radius:18px;
  --max:1140px;
}

/* BASE */

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  line-height:1.6;
  background:
    radial-gradient(1000px 600px at 10% 5%, rgba(201,164,77,.08), transparent 60%),
    radial-gradient(800px 500px at 90% 90%, rgba(201,164,77,.06), transparent 60%),
    linear-gradient(180deg,#0c1410,#14201a 50%,#0f1a14 100%);
}

a{color:inherit;text-decoration:none}

.container{
  width:min(var(--max),calc(100% - 40px));
  margin:auto;
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  font-size:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.10);
}

.btn--primary{
  background:linear-gradient(180deg,var(--accent2),var(--accent));
  color:#1b1203;
}

.btn--ghost{
  background:rgba(255,255,255,.03);
}

/* HEADER */

.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(7,10,15,.22);
  backdrop-filter:blur(12px);
  transition:.2s;
}

.header.isSolid{
  background:rgba(7,10,15,.78);
  border-bottom:1px solid var(--line);
}

.header__inner{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:180px;
}

.brand__logo{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  object-fit:cover;
}

.brand__text strong{
  display:block;
  font-weight:1000;
  letter-spacing:.02em;
}

.brand__text span{
  display:block;
  font-size:13px;
  color:rgba(255,255,255,.7);
  margin-top:2px;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  font-weight:900;
  font-size:14px;
  color:rgba(255,255,255,.78);
}

.nav a{
  padding:10px;
  border-radius:12px;
}

.nav a:hover{
  background:rgba(255, 0, 0, 0.06);
  color:#fff;
}

/* MOBILE MENU */

.menuBtn{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  padding:0;
}

.menuBtn span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background:#fff;
  border-radius:999px;
}

/* HERO */

.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}

.hero::after{
  background:none !important;
}

.hero__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:70% center;
  filter:brightness(.90) contrast(1.2);
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.45) 32%,
    rgba(0,0,0,.15) 52%,
    rgba(0,0,0,0) 68%
  );
}

.hero__inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:120px 0;
}

.hero__content{
  max-width:520px;
}

.eyebrow{
  margin:0 0 14px;
  letter-spacing:.18em;
  font-weight:1000;
  font-size:12px;
  color:rgba(255,255,255,.80);
}

.hero__title{
  font-size:clamp(52px,7vw,90px);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-0.02em;
  text-align:left;
}

.hero__lead{
  font-size:16px;
  margin-top:20px;
  color:rgba(255,255,255,.85);
  text-align:left;
  max-width:600px;
}

.hero__scrollHint{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  font-size:12px;
  letter-spacing:.14em;
  color:rgba(255,255,255,.6);
  text-transform:uppercase;
}

/* SECTIONS */

.section{
  padding:86px 0;
  background:var(--bg);
}

.section--alt{
  background:linear-gradient(180deg,var(--bg),var(--bg2));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.sectionHead h2{
  font-size:34px;
  margin:0 0 10px;
}

.sectionHead p{
  margin:0 0 26px;
  color:rgba(255,255,255,.72);
}

/* TABS */

.tabs{
  display:flex;
  gap:10px;
  margin-bottom:20px;
  flex-wrap:wrap;
}

.tab{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:10px 12px;
  border-radius:14px;
  font-weight:1000;
  cursor:pointer;
  color:rgba(255,255,255,.82);
}

.tab:hover{
  background:rgba(255,255,255,.08);
}

.tab{
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.85);
  padding:10px 14px;
  border-radius:14px;
  font-weight:900;
  cursor:pointer;
  transition:all .25s ease;
  }
  
  /* hover effect */
  
  .tab:hover{
  background:rgba(201,164,77,.15);
  border-color:rgba(201,164,77,.4);
  color:#fff;
  }
  
  /* ACTIVE TAB */
  
  .tab.active{
  background:linear-gradient(180deg,#e3c67a,#c9a44d);
  border-color:#c9a44d;
  color:#1b1203;
  box-shadow:0 8px 25px rgba(0,0,0,.35);
  transform:translateY(-2px);
  }

.panel{display:none}
.panel.active{display:block}

/* PRICES */

.priceGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.priceCard{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 18px 55px rgba(0,0,0,.28);
}

.priceCard h3{
  margin:0 0 12px;
  font-size:16px;
  font-weight:1000;
}

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

.priceList li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px dashed rgba(255,255,255,.1);
  font-weight:900;
}

.priceList li:last-child{
  border-bottom:0;
}

/* REVIEWS */

.reviewGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:40px;
}

.reviewCard{
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03));
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.reviewCard.luxury{
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.reviewCard.luxury:hover{
  transform:translateY(-6px);
  border-color:rgba(244,178,63,.45);
  box-shadow:0 35px 90px rgba(0,0,0,.55);
}

.reviewTop{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}

.avatar{
  width:52px;
  height:52px;
  border-radius:50%;
  background:linear-gradient(180deg,var(--accent2),var(--accent));
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  color:#1b1203;
  font-size:18px;
}

.stars{
  color:var(--accent);
  letter-spacing:2px;
}

.small{
  font-size:13px;
}

.ratingBadge{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:12px;
}

.ratingScore{
  font-size:34px;
  font-weight:1000;
  letter-spacing:-1px;
}

.ratingText{
  color:rgba(255,255,255,.65);
  font-size:14px;
}

/* HOURS */

.hoursCard{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:18px;
}

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

.hoursList li{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px dashed rgba(255,255,255,.12);
  font-weight:1000;
}

.hoursList li:last-child{
  border-bottom:0;
}

.muted{
  color:rgba(255,255,255,.55);
}

/* LOCATION */

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
  align-items:start;
}

.map{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  min-height:380px;
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
}

.map iframe{
  width:100%;
  height:100%;
  min-height:380px;
  border:0;
}

.contactBox{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.contactBox h3{
  margin:0 0 12px;
}

.contactBox p{
  margin:0 0 10px;
}

.contactActions{
  display:flex;
  gap:12px;
  margin-top:16px;
  flex-wrap:wrap;
}

.contactParking{
  margin-top:16px;
  border:1px solid rgba(244,178,63,.22);
  background:rgba(244,178,63,.10);
  border-radius:16px;
  padding:12px 14px;
}

/* PRODUCTS */

.productGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:40px;
}

.productCard{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:var(--radius);
  padding:20px;
  text-align:center;
  transition:transform .3s ease;
  box-shadow:0 18px 55px rgba(0,0,0,.28);
}

.productCard:hover{
  transform:translateY(-6px);
}

.productCard img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:14px;
}

.productCard h3{
  margin:10px 0;
  font-size:18px;
}

.productCard p{
  font-size:14px;
  color:rgba(255,255,255,.75);
}

.productCard .price{
  display:block;
  margin-top:10px;
  font-weight:1000;
  color:var(--accent);
}

/* SHOP NOTICE */

.shopNotice{
  margin:20px 0 40px;
  border:1px solid rgba(244,178,63,.25);
  background:rgba(244,178,63,.10);
  padding:20px;
  border-radius:16px;
  text-align:center;
  color:rgba(255,255,255,.9);
}

/* FOOTER */

.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}

.footBrand{
  display:flex;
  align-items:center;
  gap:12px;
}

.footBrand img{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid var(--line);
}

.footCopy{
  color:rgba(255,255,255,.60);
  font-weight:900;
  font-size:13px;
}

/* CHAT */

.chat-toggle{
  position:fixed;
  bottom:25px;
  right:25px;
  width:60px;
  height:60px;
  border-radius:50%;
  border:none;
  font-size:24px;
  cursor:pointer;
  background:linear-gradient(180deg,#e3c67a,#c9a44d);
  color:#1b1203;
  box-shadow:0 10px 30px rgba(0,0,0,.5);
  z-index:999;
}

.chat-window{
  position:fixed;
  bottom:100px;
  right:25px;
  width:320px;
  background:#0f1a14;
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  box-shadow:0 25px 70px rgba(0,0,0,.6);
  display:none;
  flex-direction:column;
  overflow:hidden;
  z-index:999;
}

.chat-header{
  background:linear-gradient(180deg,#e3c67a,#c9a44d);
  padding:12px;
  font-weight:900;
  display:flex;
  justify-content:space-between;
  color:#1b1203;
}

.chat-messages{
  height:240px;
  overflow-y:auto;
  padding:12px;
  font-size:14px;
}

.bot{
  background:rgba(255,255,255,.08);
  padding:8px 10px;
  border-radius:10px;
  margin-bottom:8px;
}

.user{
  background:rgba(201,164,77,.25);
  padding:8px 10px;
  border-radius:10px;
  margin-bottom:8px;
  text-align:right;
  color:#fff;
}

.chat-input{
  display:flex;
  border-top:1px solid rgba(255,255,255,.1);
}

.chat-input input{
  flex:1;
  padding:10px;
  border:none;
  background:#111;
  color:#fff;
  outline:none;
}

.chat-input button{
  padding:10px 14px;
  border:none;
  background:#c9a44d;
  cursor:pointer;
}

/* RESPONSIVE */

@media (max-width:980px){
  .hero__inner{grid-template-columns:1fr}
  .priceGrid{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .productGrid{grid-template-columns:repeat(2,1fr)}
  .reviewGrid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:860px){
  .menuBtn{display:block}

  .nav{
    display:none;
    position:absolute;
    top:76px;
    left:20px;
    right:20px;
    background:linear-gradient(180deg,#1f3b2d,#162a20);
    border:1px solid var(--line);
    border-radius:16px;
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }

  .nav.isOpen{display:flex}
  .nav a{padding:12px}
}
/* ===== ONLY HERO MOBILE RULES - KEEP THIS LAST ===== */

.hero::after{
  background:none !important;
}

@media (max-width: 768px){
  .hero{
    min-height:100vh !important;
    display:flex !important;
    align-items:flex-start !important;
    padding-top:120px !important;
    padding-bottom:60px !important;
    text-align:center !important;
  }

  .hero__inner{
    display:block !important;
    grid-template-columns:1fr !important;
    padding:0 15px !important;
    padding-top:40px !important;
  }

  .hero__content{
    max-width:100% !important;
    margin-top:-405px !important;
    text-align:center !important;
  }

  .eyebrow{
    text-align:center !important;
    margin:0 0 14px !important;
  }

  .hero__title{
    font-size:42px !important;
    line-height:1.1 !important;
    text-align:center !important;
    margin:0 !important;
  }

  .hero__lead{
    font-size:16px !important;
    margin:15px auto 0 !important;
    text-align:center !important;
    max-width:95% !important;
  }

  .hero__bg{
    background-image:url('../assets/hero-mobile.jpg') !important;
    background-size:cover !important;
    background-position:center 82% !important;
    filter:brightness(.95) contrast(1.08) !important;
  }

  .hero__overlay{
    background:linear-gradient(
      to bottom,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.50) 28%,
      rgba(0,0,0,.22) 50%,
      rgba(0,0,0,0) 72%
    ) !important;
  }
}
/* ===== RESTORE MOBILE PRICING ===== */

@media (max-width: 640px){
  .priceGrid{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .priceCard{
    width: 100% !important;
    padding: 18px !important;
  }

  .tabs{
    gap: 10px !important;
    flex-wrap: wrap !important;
  }

  .tab{
    padding: 10px 12px !important;
  }
}
/* ===== MOBILE REVIEWS FIX ===== */

@media (max-width: 768px){

  .reviewGrid{
  display:grid;
  grid-template-columns:1fr !important;
  gap:18px;
  }
  
  .reviewCard{
  width:100%;
  padding:20px;
  }
  
  .reviewTop{
  align-items:flex-start;
  }
  
  .avatar{
  width:46px;
  height:46px;
  font-size:16px;
  }
  
  .reviewCard p{
  font-size:14px;
  line-height:1.6;
  }
  
  }
  
  /* ===== MODEL GALLRIJ ===== */

  .modelGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-top:30px;
    }
    
    .modelGrid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:14px;
    }
    
    @media(max-width:700px){
    .modelGrid{
    grid-template-columns:1fr 1fr;
    }
    }



    /* ======== tallen ======== */ 

    .languageOverlay{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      height:100%;
      background:#0c5b2c;
      color:white;
      display:none;
      flex-direction:column;
      justify-content:center;
      padding:60px;
      z-index:9999;
      }
      
      .languageGrid{
      display:grid;
      grid-template-columns:repeat(2,200px);
      gap:20px;
      font-size:22px;
      }
      
      .languageGrid a{
      color:white;
      text-decoration:none;
      }
      
      .langClose{
      position:absolute;
      top:30px;
      right:30px;
      font-size:30px;
      background:none;
      border:none;
      color:white;
      cursor:pointer;
      }
      :root{

        --bg:#0a0f0c;
        --bg-soft:#101813;
        
        --gold:#c6a756;
        --gold-light:#e7cd8a;
        
        --text:#ffffff;
        --muted:#9ca89c;
        
        --border:rgba(255,255,255,.08);
        
        --radius:16px;
        --max:1200px;
        
        }
        
        /* RESET */
        
        *{
        box-sizing:border-box;
        margin:0;
        padding:0;
        }
        
        body{
        
        font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial;
        
        background:
        
        radial-gradient(circle at 20% 10%, rgba(198,167,86,.08), transparent 40%),
        radial-gradient(circle at 80% 90%, rgba(198,167,86,.06), transparent 40%),
        #0a0f0c;
        
        color:var(--text);
        
        line-height:1.6;
        
        }
        
        /* CONTAINER */
        
        .container{
        
        width:min(var(--max),92%);
        margin:auto;
        
        }
        
        /* HEADER */
        
        .header{
        
        position:sticky;
        top:0;
        
        backdrop-filter:blur(20px);
        
        background:rgba(0,0,0,.35);
        
        border-bottom:1px solid var(--border);
        
        z-index:1000;
        
        }
        
        .header__inner{
        
        height:80px;
        
        display:flex;
        align-items:center;
        justify-content:space-between;
        
        }
        
        /* BRAND */
        
        .brand{
        
        display:flex;
        align-items:center;
        gap:12px;
        
        }
        
        .brand__logo{
        
        width:42px;
        height:42px;
        
        border-radius:12px;
        
        }
        
        .brand__text strong{
        
        font-size:18px;
        letter-spacing:.03em;
        
        }
        
        .brand__text span{
        
        font-size:12px;
        color:var(--muted);
        
        }
        
        /* NAV */
        
        .nav{
        
        gap:26px;
        
        font-weight:600;
        
        }
        
        .nav a{
        
        opacity:.75;
        
        transition:.3s;
        
        }
        
        .nav a:hover{
        
        opacity:1;
        color:var(--gold);
        
        }
        
        /* HERO */
        
        .hero{
        
        min-height:95vh;
        
        display:flex;
        align-items:center;
        
        position:relative;
        
        }
        
        .hero__inner{
        
        display:grid;
        
        grid-template-columns:1fr 1fr;
        
        align-items:center;
        
        padding:120px 0;
        
        }
        
        .hero__title{
        
        font-size:clamp(54px,7vw,92px);
        
        font-weight:800;
        
        letter-spacing:-.03em;
        
        }
        
        .hero__lead{
        
        margin-top:20px;
        
        font-size:18px;
        
        color:var(--muted);
        
        max-width:500px;
        
        }
        
        /* BUTTON */
        
        .btn{
        
        display:inline-flex;
        
        align-items:center;
        justify-content:center;
        
        padding:14px 20px;
        
        border-radius:12px;
        
        font-weight:700;
        
        cursor:pointer;
        
        border:1px solid var(--border);
        
        transition:.25s;
        
        }
        
        .btn:hover{
        
        transform:translateY(-2px);
        
        }
        
        .btn--primary{
        
        background:linear-gradient(180deg,var(--gold-light),var(--gold));
        
        color:#1a1203;
        
        border:none;
        
        }
        
        /* SECTIONS */
        
        .section{
        
        padding:120px 0;
        
        }
        
        .sectionHead h2{
        
        font-size:40px;
        
        margin-bottom:10px;
        
        }
        
        .sectionHead p{
        
        color:var(--muted);
        
        }
        
        /* CARDS */
        
        .card{
        
        background:rgba(255,255,255,.04);
        
        border:1px solid var(--border);
        
        border-radius:var(--radius);
        
        padding:24px;
        
        transition:.3s;
        
        }
        
        .card:hover{
        
        transform:translateY(-6px);
        
        border-color:rgba(198,167,86,.5);
        
        }
        
        /* GRID */
        
        .grid-3{
        
        display:grid;
        
        grid-template-columns:repeat(3,1fr);
        
        gap:26px;
        
        }
        
        /* FOOTER */
        
        .footer{
        
        padding:30px 0;
        
        border-top:1px solid var(--border);
        
        }
        
        .footer__inner{
        
        display:flex;
        justify-content:space-between;
        align-items:center;
        
        }
        
        /* MOBILE */
        
        @media(max-width:900px){
        
        .hero__inner{
        
        grid-template-columns:1fr;
        
        text-align:center;
        
        }
        
        .hero__lead{
        
        margin:auto;
        margin-top:18px;
        
        }
        
        .grid-3{
        
        grid-template-columns:1fr 1fr;
        
        }
        
        }
        
        @media(max-width:600px){
        
        .grid-3{
        
        grid-template-columns:1fr;
        
        }
        
        .hero__title{
        
        font-size:44px;
        
        }
        
        .header__inner{
        
        height:70px;
        
        }
        
        }
        /* ===== FUTURE EFFECTS ===== */

/* smooth animations */

*{
  transition:all .35s cubic-bezier(.4,0,.2,1);
  }
  
  /* glass cards */
  
  .card,
  .priceCard,
  .reviewCard,
  .productCard{
  
  backdrop-filter:blur(20px);
  background:linear-gradient(
  180deg,
  rgba(255,255,255,.08),
  rgba(255,255,255,.03)
  );
  
  border:1px solid rgba(255,255,255,.12);
  
  }
  
  /* luxury hover */
  
  .card:hover,
  .priceCard:hover,
  .reviewCard:hover,
  .productCard:hover{
  
  transform:translateY(-10px) scale(1.02);
  
  box-shadow:
  0 30px 80px rgba(0,0,0,.6),
  0 0 40px rgba(198,167,86,.25);
  
  border-color:rgba(198,167,86,.6);
  
  }
  
  /* premium titles */
  
  h1,h2,h3{
  
  letter-spacing:-0.02em;
  
  }
  
  /* rolex style hero title */
  
  .hero__title{
  
  background:linear-gradient(
  90deg,
  #ffffff,
  #e7cd8a,
  #ffffff
  );
  
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  
  }
  
  /* glowing button */
  
  .btn--primary{
  
  box-shadow:
  0 10px 30px rgba(198,167,86,.4),
  0 0 30px rgba(198,167,86,.2);
  
  }
  
  .btn--primary:hover{
  
  transform:translateY(-3px);
  
  box-shadow:
  0 20px 60px rgba(198,167,86,.6);
  
  }
  
  /* navbar luxury underline */
  
  .nav a{
  
  position:relative;
  
  }
  
  .nav a::after{
  
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  
  width:0;
  height:2px;
  
  background:var(--accent);
  
  transition:.35s;
  
  }
  
  .nav a:hover::after{
  
  width:100%;
  
  }
  
  /* section fade animation */
  
  .section{
  
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1s forwards;
  
  }
  
  @keyframes fadeUp{
  
  to{
  
  opacity:1;
  transform:translateY(0);
  
  }
  
  }
  
  /* image zoom hover */
  
  .productCard img,
  .modelGrid img{
  
  transition:transform .6s ease;
  
  }
  
  .productCard:hover img,
  .modelGrid img:hover{
  
  transform:scale(1.08);
  
  }
  
  /* floating chat */
  
  .chat-toggle{
  
  animation:float 4s ease-in-out infinite;
  
  }
  
  @keyframes float{
  
  0%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
  100%{transform:translateY(0)}
  
  }
  
  /* futuristic scrollbar */
  
  ::-webkit-scrollbar{
  
  width:8px;
  
  }
  
  ::-webkit-scrollbar-track{
  
  background:#0a0f0c;
  
  }
  
  ::-webkit-scrollbar-thumb{
  
  background:linear-gradient(
  180deg,
  #e7cd8a,
  #c6a756
  );
  
  border-radius:10px;
  
  }
  .reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
    }
    
    .reveal.show{
    opacity:1;
    transform:translateY(0);
    }
    body{
      animation:fadePage 1.2s ease;
      }
      
      @keyframes fadePage{
      from{
      opacity:0;
      transform:translateY(20px);
      }
      to{
      opacity:1;
      transform:translateY(0);
      }
      }
      .modelGrid img{
        transition:transform .6s ease, filter .4s ease;
        }
        
        .modelGrid img:hover{
        transform:scale(1.08);
        filter:brightness(1.1);
        }
        .priceCard,
.reviewCard,
.productCard{

transition:all .4s ease;

}

.priceCard:hover,
.reviewCard:hover,
.productCard:hover{

transform:translateY(-12px) scale(1.02);

box-shadow:
0 40px 100px rgba(0,0,0,.7),
0 0 40px rgba(198,167,86,.25);

border-color:rgba(198,167,86,.6);

}
.nav a{
  position:relative;
  }
  
  .nav a::after{
  
  content:"";
  
  position:absolute;
  
  left:50%;
  bottom:-6px;
  
  width:0;
  height:2px;
  
  background:linear-gradient(90deg,#e7cd8a,#c6a756);
  
  transition:.35s;
  
  transform:translateX(-50%);
  
  }
  
  .nav a:hover::after{
  
  width:100%;
  
  }
  .btn{

    transition:all .3s ease;
    
    }
    
    .btn:hover{
    
    transform:translateY(-3px) scale(1.03);
    
    box-shadow:
    0 15px 40px rgba(198,167,86,.5);
    
    }
    .chat-toggle{

      animation:float 5s ease-in-out infinite;
      
      }
      
      @keyframes float{
      
      0%{transform:translateY(0)}
      
      50%{transform:translateY(-10px)}
      
      100%{transform:translateY(0)}
      
      }
      body::before{
        content:"";
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        pointer-events:none;
        
        background:
        radial-gradient(circle at 20% 20%, rgba(201,164,77,.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(201,164,77,.12), transparent 40%);
        
        z-index:-1;
        }
        .hero__title{

          background:linear-gradient(
          90deg,
          #ffffff,
          #e3c67a,
          #ffffff
          );
          
          background-size:200% auto;
          
          -webkit-background-clip:text;
          -webkit-text-fill-color:transparent;
          
          animation:shine 6s linear infinite;
          
          }
          
          @keyframes shine{
          
          0%{background-position:0%}
          100%{background-position:200%}
          
          }
          .priceCard,
.reviewCard,
.productCard{

backdrop-filter:blur(20px);

background:linear-gradient(
180deg,
rgba(255,255,255,.08),
rgba(255,255,255,.02)
);

border:1px solid rgba(255,255,255,.15);

transition:all .45s ease;

}

.priceCard:hover,
.reviewCard:hover,
.productCard:hover{

transform:translateY(-12px) scale(1.03);

box-shadow:
0 30px 80px rgba(0,0,0,.7),
0 0 40px rgba(201,164,77,.3);

border-color:rgba(201,164,77,.6);

}
img{

  transition:transform .7s ease, filter .4s ease;
  
  }
  
  img:hover{
  
  transform:scale(1.08);
  
  filter:brightness(1.1);
  
  }
  .nav a:hover{

    color:#e3c67a;
    
    text-shadow:
    0 0 10px rgba(201,164,77,.6);
    
    }
    .header{

      background:rgba(10,15,12,.45);
      
      backdrop-filter:blur(18px);
      
      border-bottom:1px solid rgba(255,255,255,.08);
      
      }
      *{
        transition:
        color .25s ease,
        background .25s ease,
        transform .35s ease,
        box-shadow .35s ease;
        }
        .section{

          position:relative;
          overflow:hidden;
          
          }
          
          .section::before{
          
          content:"";
          
          position:absolute;
          top:-120px;
          left:-20%;
          
          width:140%;
          height:200px;
          
          background:linear-gradient(
          180deg,
          transparent,
          rgba(201,164,77,.08),
          transparent
          );
          
          transform:rotate(-3deg);
          
          pointer-events:none;
          
          }
          .priceCard,
.reviewCard,
.productCard{

position:relative;
border:1px solid transparent;

}

.priceCard::before,
.reviewCard::before,
.productCard::before{

content:"";

position:absolute;
inset:0;

padding:1px;

border-radius:inherit;

background:linear-gradient(
120deg,
transparent,
rgba(231,205,138,.8),
transparent
);

-webkit-mask:
linear-gradient(#000 0 0) content-box,
linear-gradient(#000 0 0);

-webkit-mask-composite:xor;
mask-composite:exclude;

opacity:.6;

}
body{

  background:
  
  radial-gradient(
  circle at 20% 10%,
  rgba(198,167,86,.12),
  transparent 40%
  ),
  
  radial-gradient(
  circle at 80% 90%,
  rgba(198,167,86,.10),
  transparent 40%
  ),
  
  #0a0f0c;
  
  }
  .card:hover,
.priceCard:hover,
.reviewCard:hover,
.productCard:hover{

box-shadow:

0 40px 120px rgba(0,0,0,.8),
0 0 60px rgba(198,167,86,.35);

}
body::after{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  
  background:linear-gradient(
  120deg,
  rgba(201,164,77,.08),
  transparent,
  rgba(201,164,77,.06)
  );
  
  background-size:400% 400%;
  
  animation:gradientMove 18s ease infinite;
  
  z-index:-2;
  }
  
  @keyframes gradientMove{
  
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
  
  }
  .hero::before{

    content:"";
    
    position:absolute;
    
    top:-30%;
    left:-20%;
    
    width:140%;
    height:140%;
    
    background:radial-gradient(
    circle,
    rgba(231,205,138,.25),
    transparent 60%
    );
    
    pointer-events:none;
    
    animation:heroGlow 8s ease-in-out infinite;
    
    }
    
    @keyframes heroGlow{
    
    0%{transform:scale(1);}
    50%{transform:scale(1.15);}
    100%{transform:scale(1);}
    
    }
    ::-webkit-scrollbar{
      width:10px;
      }
      
      ::-webkit-scrollbar-track{
      background:#0a0f0c;
      }
      
      ::-webkit-scrollbar-thumb{
      
      background:linear-gradient(
      180deg,
      #e7cd8a,
      #c6a756
      );
      
      border-radius:10px;
      
      }
      
      ::-webkit-scrollbar-thumb:hover{
      
      background:linear-gradient(
      180deg,
      #f0d79a,
      #d4b76a
      );
      
      }
      .modelGrid img{

        animation:floatImage 6s ease-in-out infinite;
        
        }
        
        @keyframes floatImage{
        
        0%{
        transform:translateY(0);
        }
        
        50%{
        transform:translateY(-12px);
        }
        
        100%{
        transform:translateY(0);
        }
        
        }
        .priceCard,
.reviewCard,
.productCard{

position:relative;
overflow:hidden;

}

.priceCard::after,
.reviewCard::after,
.productCard::after{

content:"";
position:absolute;

top:-50%;
left:-50%;

width:200%;
height:200%;

background:radial-gradient(
circle,
rgba(231,205,138,.25),
transparent 60%
);

opacity:0;
transition:.5s;

}

.priceCard:hover::after,
.reviewCard:hover::after,
.productCard:hover::after{

opacity:1;

}
.priceCard,
.reviewCard,
.productCard{

border:1px solid transparent;

background:
linear-gradient(#0a0f0c,#0a0f0c) padding-box,

linear-gradient(
120deg,
transparent,
#e7cd8a,
transparent
) border-box;

background-size:100% 100%, 300% 300%;

animation:borderMove 6s linear infinite;

}

@keyframes borderMove{

0%{
background-position:0% 50%;
}

100%{
background-position:200% 50%;
}

}
.priceCard,
.reviewCard,
.productCard{

perspective:1000px;

}

.priceCard:hover,
.reviewCard:hover,
.productCard:hover{

transform:
rotateX(6deg)
rotateY(-6deg)
scale(1.03);

}
.hero__title{

  background:linear-gradient(
  90deg,
  #ffffff,
  #e7cd8a,
  #ffffff,
  #e7cd8a
  );
  
  background-size:300%;
  
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  
  animation:textShine 8s linear infinite;
  
  }
  
  @keyframes textShine{
  
  0%{
  background-position:0%;
  }
  
  100%{
  background-position:300%;
  }
  
  }
  .section{

    transition:transform .6s ease;
    
    }
    
    .section:hover{
    
    transform:scale(1.01);
    
    }
    .priceCard,
.reviewCard,
.productCard{
position:relative;
overflow:hidden;
}

.priceCard::before,
.reviewCard::before,
.productCard::before{

content:"";
position:absolute;
top:-100%;
left:-100%;

width:200%;
height:200%;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,.15),
transparent
);

transform:rotate(25deg);

opacity:0;
transition:.6s;
}

.priceCard:hover::before,
.reviewCard:hover::before,
.productCard:hover::before{

opacity:1;
top:-20%;
left:-20%;

}
.sectionHead h2{

  text-shadow:
  0 0 10px rgba(231,205,138,.4),
  0 0 20px rgba(231,205,138,.2);
  
  }
  .productCard img,
.modelGrid img{

transition:transform 1s ease;

}

.productCard:hover img,
.modelGrid img:hover{

transform:scale(1.12);

}
/*--------------------*/
/* ===== PREMIUM HERO ===== */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:120px 20px;
  position:relative;
  overflow:hidden;
  }
  
  .hero::before{
  content:"";
  position:absolute;
  width:900px;
  height:900px;
  background:radial-gradient(circle,#c9a44d33,transparent 70%);
  top:-300px;
  left:-200px;
  filter:blur(60px);
  }
  
  .hero::after{
  content:"";
  position:absolute;
  width:900px;
  height:900px;
  background:radial-gradient(circle,#c9a44d22,transparent 70%);
  bottom:-300px;
  right:-200px;
  filter:blur(80px);
  }
  
  .hero h1{
  font-size:clamp(48px,7vw,90px);
  font-weight:900;
  letter-spacing:-2px;
  line-height:1.05;
  }
  
  .hero p{
  font-size:18px;
  color:rgba(255,255,255,.75);
  max-width:600px;
  margin:20px auto;
  }
  
  /* ===== PREMIUM BUTTON ===== */
  
  .btn-luxury{
  padding:16px 36px;
  border-radius:40px;
  background:linear-gradient(135deg,#e3c67a,#c9a44d);
  color:#1b1203;
  font-weight:900;
  letter-spacing:.04em;
  transition:all .35s ease;
  display:inline-block;
  }
  
  .btn-luxury:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,0,0,.45);
  }
  
  /* ===== PREMIUM SERVICES ===== */
  
  .services{
  padding:120px 20px;
  }
  
  .serviceGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  }
  
  .serviceCard{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding:40px;
  border-radius:22px;
  transition:all .4s ease;
  backdrop-filter:blur(6px);
  }
  
  .serviceCard:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 80px rgba(0,0,0,.6);
  border-color:#c9a44d;
  }
  
  .serviceCard h3{
  font-size:22px;
  margin-bottom:10px;
  }
  
  /* ===== PREMIUM IMAGE GALLERY ===== */
  
  .gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  padding:100px 20px;
  }
  
  .gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:16px;
  transition:all .4s ease;
  }
  
  .gallery img:hover{
  transform:scale(1.08);
  }
  
  /* ===== PREMIUM TEXT SECTION ===== */
  
  .luxSection{
  padding:140px 20px;
  text-align:center;
  max-width:900px;
  margin:auto;
  }
  
  .luxSection h2{
  font-size:40px;
  margin-bottom:20px;
  }
  
  .luxSection p{
  color:rgba(255,255,255,.7);
  font-size:18px;
  line-height:1.7;
  }
  
  /* ===== PREMIUM BACKGROUND ===== */
  
  body{
  background:
  radial-gradient(800px 500px at 10% 0%, rgba(201,164,77,.12), transparent),
  radial-gradient(700px 500px at 90% 100%, rgba(201,164,77,.08), transparent),
  linear-gradient(180deg,#0b120e,#101c15,#0f1a14);
  }
  
  /* ===== PREMIUM FOOTER ===== */
  
  .footer{
  padding:60px 20px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  }
  
  .footer p{
  color:rgba(255,255,255,.5);
  }
  
  /* ===== RESPONSIVE ===== */
  
  @media(max-width:900px){
  
  .serviceGrid{
  grid-template-columns:1fr;
  }
  
  .gallery{
  grid-template-columns:1fr 1fr;
  }
  
  }
  
  @media(max-width:600px){
  
  .hero h1{
  font-size:38px;
  }
  
  .gallery{
  grid-template-columns:1fr;
  }
  
  }


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

  .hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    overflow:hidden;
    padding:140px 20px;
    }
    
    /* floating light effects */
    
    .hero::before{
    content:"";
    position:absolute;
    width:800px;
    height:800px;
    background:radial-gradient(circle,#c9a44d55,transparent 70%);
    top:-200px;
    left:-200px;
    filter:blur(120px);
    animation:floatGlow 12s infinite alternate;
    }
    
    .hero::after{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#e3c67a33,transparent 70%);
    bottom:-200px;
    right:-200px;
    filter:blur(120px);
    animation:floatGlow 14s infinite alternate;
    }
    
    @keyframes floatGlow{
    0%{transform:translateY(0px)}
    100%{transform:translateY(80px)}
    }
    .hero h1{
      font-size:clamp(48px,7vw,95px);
      font-weight:900;
      letter-spacing:-2px;
      line-height:1.05;
      background:linear-gradient(90deg,#fff,#e3c67a,#fff);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      }
      
      .hero p{
      font-size:18px;
      color:rgba(255,255,255,.75);
      max-width:650px;
      margin:25px auto;
      }
      .card{
        background:rgba(255,255,255,.04);
        border:1px solid rgba(255,255,255,.08);
        border-radius:24px;
        padding:40px;
        backdrop-filter:blur(10px);
        transition:all .45s ease;
        position:relative;
        overflow:hidden;
        }
        
        .card::before{
        content:"";
        position:absolute;
        inset:0;
        background:linear-gradient(120deg,transparent,rgba(255,255,255,.08),transparent);
        opacity:0;
        transition:opacity .4s;
        }
        
        .card:hover::before{
        opacity:1;
        }
        
        .card:hover{
        transform:translateY(-12px) scale(1.02);
        box-shadow:0 40px 100px rgba(0,0,0,.65);
        border-color:#c9a44d;
        }
        .gallery{
          display:grid;
          grid-template-columns:repeat(3,1fr);
          gap:24px;
          padding:120px 0;
          }
          
          .gallery img{
          width:100%;
          height:300px;
          object-fit:cover;
          border-radius:18px;
          transition:all .45s ease;
          }
          
          .gallery img:hover{
          transform:scale(1.08) rotate(.6deg);
          box-shadow:0 30px 80px rgba(0,0,0,.6);
          }
          .btn{
            display:inline-block;
            padding:16px 40px;
            border-radius:40px;
            font-weight:900;
            background:linear-gradient(135deg,#e3c67a,#c9a44d);
            color:#1b1203;
            transition:all .35s ease;
            }
            
            .btn:hover{
            transform:translateY(-5px);
            box-shadow:0 25px 60px rgba(0,0,0,.55);
            }
            body{
              background:
              radial-gradient(900px 600px at 10% 0%, rgba(201,164,77,.15), transparent),
              radial-gradient(700px 600px at 90% 100%, rgba(201,164,77,.1), transparent),
              linear-gradient(180deg,#0a120d,#0f1a14,#0b120e);
              }
              @media(max-width:900px){

                .gallery{
                grid-template-columns:1fr 1fr;
                }
                
                }
                
                @media(max-width:600px){
                
                .gallery{
                grid-template-columns:1fr;
                }
                
                .hero h1{
                font-size:38px;
                }
                
                }

                /*------ tekst hero 2 --------*/
                
                @media (max-width:768px){

                  .hero__lead{
                  transform:translateY(400px);
                  }
                  
                  }

                  /*------ hero donker onder --------*/

                  .hero__overlay{
                    background:linear-gradient(
                    to bottom,
                    rgba(0,0,0,0.75) 0%,   /* boven donker */
                    rgba(0,0,0,0.2) 35%,   /* lichter richting midden */
                    rgba(0,0,0,0.2) 65%,   /* midden zichtbaar */
                    rgba(0,0,0,0.8) 100%   /* onder donker */
                    ) !important;
                    }

/* DESKTOP ONLY */
@media (min-width:861px){

  .langOpen{
  margin-left:20px;
  order:1;
  }
  
  .nav{
  display:flex;
  align-items:center;
  gap:20px;
  }
  
  /* zorg dat language knop naast eerste item komt */
  .header__inner{
  display:flex;
  align-items:center;
  }
  
  }


  /* ------------- taal knop mobile ------------ */

  /* ===== LUXURY LANGUAGE BUTTON ===== */

.langOpen{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:6px 14px;
  border-radius:999px;

  font-size:13px;
  font-weight:600;
  letter-spacing:.04em;

  color:#fff;

  background:rgba(255,255,255,.06);
  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,.12);

  transition:all .3s ease;
}

/* hover effect */
.langOpen:hover{
  background:linear-gradient(180deg,#e3c67a,#c9a44d);
  color:#1b1203;

  box-shadow:
  0 10px 30px rgba(201,164,77,.4);

  transform:translateY(-2px);
}

.langWrapper{
  position:relative;
}

/* dropdown standaard verborgen */
.langDropdown{
  position:absolute;
  top:120%;
  right:0;

  background:#0a0f0c;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;

  padding:8px 0;
  min-width:150px;

  display:none;
  flex-direction:column;

  box-shadow:0 20px 60px rgba(0,0,0,.6);
}

/* items */
.langDropdown a{
  padding:10px 16px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:.2s;
}

.langDropdown a:hover{
  background:rgba(255,255,255,.05);
  color:#e3c67a;
}

/* 🔥 HIER GEBEURT HET */
.langWrapper:hover .langDropdown,
.langWrapper:focus-within .langDropdown{
  display:flex;
}
.hero .reveal{
  opacity:1 !important;
  transform:none !important;
}
.reveal{
  opacity:1 !important;
  transform:none !important;
}


/* ---------- home knop ---------- */

@media (max-width: 768px){

  a.btn.btn--primary{
    padding: 4px 8px !important;
    font-size: 11px !important;
    border-radius: 8px !important;

    display: inline-block !important;
    width: auto !important;
    min-width: 0 !important;

    white-space: nowrap !important;
  }

}
@media (max-width:768px){

  .btn{
    padding: 6px 10px !important;
  }

}

/* ===== ABOUT HERO ===== */

.aboutHero{
  position:relative;
  min-height:90vh;

  display:flex;
  align-items:center;

  background:url('../assets/kapper.jpg') center/cover no-repeat;

  overflow:hidden;
}

/* donkere overlay voor leesbaarheid */
.aboutHero__overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to right,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.55) 40%,
    rgba(0,0,0,.2) 70%,
    rgba(0,0,0,.1) 100%
  );
}

/* content */
.aboutHero__content{
  position:relative;
  z-index:2;

  max-width:600px;
}

/* titel */
.aboutHero__content h2{
  font-size:48px;
  margin-bottom:20px;

  background:linear-gradient(90deg,#fff,#e3c67a,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* tekst */
.aboutHero__content p{
  color:rgba(255,255,255,.85);
  margin-bottom:14px;
  font-size:16px;
  line-height:1.7;
}

/* highlight */
.highlight{
  margin-top:20px;
  font-weight:900;
  color:#e3c67a;
}

/* MOBILE */

@media(max-width:768px){

  .aboutHero{
    min-height:100vh;
    text-align:center;
    justify-content:center;
  }

  .aboutHero__content{
    max-width:100%;
  }

  .aboutHero__content h2{
    font-size:34px;
  }

  .aboutHero__overlay{
    background:rgba(0,0,0,.6);
  }

}

/* new about */

.aboutHero{
  position:relative;
  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  background:url('../assets/kapper.jpg') center/cover no-repeat;
  padding:60px 20px;
}

/* overlay voor leesbaarheid */
.aboutOverlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
}

/* tekst box */
.aboutContent{
  position:relative;
  z-index:2;

  max-width:700px;

  background:rgba(0,0,0,.55);
  backdrop-filter:blur(10px);

  padding:40px;
  border-radius:20px;

  border:1px solid rgba(255,255,255,.1);

  box-shadow:0 30px 80px rgba(0,0,0,.7);
}

/* titel */
.aboutContent h2{
  font-size:40px;
  margin-bottom:20px;

  background:linear-gradient(90deg,#fff,#e3c67a,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* tekst */
.aboutContent p{
  color:rgba(255,255,255,.85);
  margin-bottom:16px;
  line-height:1.7;
  font-size:15px;
}

/* highlight */
.highlight{
  font-weight:900;
  color:#e3c67a;
}

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

  .aboutContent{
    padding:25px;
  }

  .aboutContent h2{
    font-size:28px;
  }

}

/* new hero about */ 


.about{
  padding:100px 0;
}

.about__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
}

/* TEXT */
.about__text h2{
  font-size:42px;
  margin-bottom:20px;

  background:linear-gradient(90deg,#fff,#e3c67a,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.about__text p{
  color:rgba(255,255,255,.8);
  margin-bottom:16px;
  line-height:1.7;
}

/* highlight */
.highlight{
  font-weight:900;
  color:#e3c67a;
}

/* IMAGE */
.about__image img{
  width:100%;
  border-radius:20px;

  box-shadow:
  0 30px 80px rgba(0,0,0,.6);

  transition:.4s;
}

.about__image img:hover{
  transform:scale(1.03);
}

/* MOBILE */
@media(max-width:900px){
  .about__grid{
    grid-template-columns:1fr;
  }

  .about__image{
    order:-1;
  }

  .about__text{
    text-align:center;
  }

  .about__text h2{
    font-size:30px;
  }
}

/* kapper over ons foto */

@media(max-width:900px){

  .about__image img{
    height:300px;            /* vaste hoogte */
    object-fit:cover;        /* snijdt mooi */
    object-position:top;     /* 👈 BELANGRIJK: focus bovenkant (gezicht) */
  }

}

/* round 2 */ 

@media(max-width:900px){

  .about__grid{
    display:flex;
    flex-direction:column;
  }

  /* 🔥 tekst eerst */
  .about__text{
    order:1;
  }

  /* 🔥 foto NA tekst */
  .about__image{
    order:2;
    margin-top:20px;
  }

  .about__image img{
    height:200px;          /* kleiner maken */
    object-fit:cover;
    object-position:center;
  }

}
/* MOBILE PERFECT FIX */
@media(max-width:900px){

  .aboutMobile{
    position:relative;
    padding:60px 20px;

    background:url('../assets/kapper.jpg') center/cover no-repeat;
  }

  /* donkere overlay */
  .aboutMobile::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.7);
  }

  .aboutMobile__content{
    position:relative;
    z-index:2;

    text-align:center;
  }

  .aboutMobile__content h2{
    font-size:30px;
    margin-bottom:15px;
  }

  .aboutMobile__content p{
    font-size:14px;
    color:rgba(255,255,255,.9);
    margin-bottom:12px;
  }

  .highlight{
    color:#e3c67a;
    font-weight:900;
  }

}
/* ===== DEFAULT ===== */

/* mobile versie standaard verbergen */
.aboutMobile{
  display:none;
}


/* ===== MOBILE FIX ===== */

@media(max-width:900px){

  /* desktop layout verbergen */
  .about{
    display:none;
  }

  /* mobile layout tonen */
  .aboutMobile{
    display:block;

    position:relative;
    padding:60px 20px;

    background:url('../assets/kapper.jpg') center/cover no-repeat;
  }

  /* overlay */
  .aboutMobile::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.7);
  }

  .aboutMobile__content{
    position:relative;
    z-index:2;
    text-align:center;
  }

  .aboutMobile__content h2{
    font-size:30px;
    margin-bottom:15px;
  }

  .aboutMobile__content p{
    font-size:14px;
    color:rgba(255,255,255,.9);
    margin-bottom:12px;
  }

  .highlight{
    color:#e3c67a;
    font-weight:900;
  }

}
/* ===== DEFAULT (DESKTOP) ===== */

.about{
  display:block;
}

.aboutMobile{
  display:none;
}


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

@media(max-width:900px){

  .about{
    display:none;
  }

  .aboutMobile{
    display:block;

    position:relative;
    padding:60px 20px;
    background:url('../assets/kapper.jpg') center/cover no-repeat;
  }

  .aboutMobile::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.7);
  }

  .aboutMobile__content{
    position:relative;
    z-index:2;
    text-align:center;
  }

}
.about {
  padding: 60px 20px;
}

.about__image {
  text-align: center;
  margin-bottom: 30px;
}

.about__image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
} 
.aboutDesktop{
  padding:80px 20px;
}

.aboutDesktop__wrapper{
  display:flex;
  align-items:center;
  gap:60px;
}

/* tekst */
.aboutDesktop__content{
  flex:1;
}

/* foto */
.aboutDesktop__image{
  flex:1;
}

.aboutDesktop__image img{
  width:100%;
  border-radius:16px;

  box-shadow:0 30px 80px rgba(0,0,0,.6);
}
/* standaard: desktop tonen */
.aboutMobile{
  display: none;
}

/* mobile view */
@media (max-width: 768px){
  .aboutDesktop{
    display: none;
  }

  .aboutMobile{
    display: block;
  }
}
/* update about */

.aboutDesktop{
  padding:100px 20px;
  background:#0f0f0f;
  color:#fff;
}

.aboutDesktop__wrapper{
  display:flex;
  align-items:center;
  gap:80px;
  max-width:1200px;
  margin:auto;
}

/* TEXT */
.aboutDesktop__content h2{
  font-size:42px;
  margin-bottom:20px;
  font-weight:600;
}

.aboutDesktop__content p{
  font-size:16px;
  line-height:1.8;
  color:#ccc;
  margin-bottom:15px;
}

/* highlight zin */
.highlight{
  color:#d4af37;
  font-weight:500;
  margin-top:20px;
}

/* IMAGE */
.aboutDesktop__image img{
  width:100%;
  border-radius:20px;

  box-shadow:0 40px 100px rgba(0,0,0,0.7);
  transition:0.4s;
}

/* hover effect */
.aboutDesktop__image img:hover{
  transform:scale(1.03);
}

.aboutDesktop{
  padding:120px 20px;
  background:linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color:#fff;
}

.aboutDesktop__wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:100px;
  max-width:1200px;
  margin:auto;
}

/* TEXT */
.aboutDesktop__content{
  flex:1;
  max-width:550px;
}

.aboutDesktop__content h2{
  font-size:48px;
  margin-bottom:25px;
  font-weight:600;
  letter-spacing:1px;
  position:relative;
}

/* gouden lijn onder titel */
.aboutDesktop__content h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:#d4af37;
  margin-top:10px;
}

.aboutDesktop__content p{
  font-size:17px;
  line-height:1.9;
  color:#bfbfbf;
  margin-bottom:18px;
}

/* highlight */
.highlight{
  color:#d4af37;
  font-weight:600;
  font-size:18px;
  margin-top:25px;
}

/* IMAGE */
.aboutDesktop__image{
  flex:1;
  position:relative;
}

/* achtergrond glow effect */
.aboutDesktop__image::before{
  content:"";
  position:absolute;
  top:20px;
  left:20px;
  width:100%;
  height:100%;
  background:#d4af37;
  border-radius:20px;
  z-index:0;
  opacity:0.2;
}

/* echte foto */
.aboutDesktop__image img{
  position:relative;
  width:100%;
  border-radius:20px;
  z-index:1;

  box-shadow:0 50px 120px rgba(0,0,0,0.8);
  transition:all 0.4s ease;
}

/* hover luxe effect */
.aboutDesktop__image img:hover{
  transform:scale(1.04) rotate(0.5deg);
}

body{
  font-family:'Poppins', sans-serif;
}

/* TITEL = luxe font */
.aboutDesktop__content h2{
  font-family:'Playfair Display', serif;
  font-size:48px;
  margin-bottom:25px;
  font-weight:600;
  letter-spacing:1px;
}

/* TEKST */
.aboutDesktop__content p{
  font-size:17px;
  line-height:1.9;
  color:#bfbfbf;
  margin-bottom:18px;
}

/* highlight nog sterker */
.highlight{
  color:#d4af37;
  font-weight:600;
  font-size:19px;
}
.aboutDesktop__content{
  border-left:2px solid rgba(212,175,55,0.3);
  padding-left:30px;
}
/* ===== ABOUT DESKTOP LUXE STYLE ===== */

.aboutDesktop {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
}

.aboutDesktop__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* TEXT */
.aboutDesktop__content {
  flex: 1;
  animation: fadeInLeft 1s ease forwards;
}

.aboutDesktop__content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f5c26b;
}

.aboutDesktop__content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ddd;
}

.aboutDesktop__content .highlight {
  font-weight: bold;
  font-size: 20px;
  color: #f5c26b;
}

/* IMAGE */
.aboutDesktop__image {
  flex: 1;
  animation: fadeInRight 1s ease forwards;
}

.aboutDesktop__image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.aboutDesktop__image img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (max-width: 900px) {
  .aboutDesktop__container {
    flex-direction: column;
    text-align: center;
  }

  .aboutDesktop__image img {
    max-height: 400px;
  }
}
@media (max-width: 600px) {

  .aboutMobile {
    padding: 30px 20px;
  }

  .aboutMobile__content {
    max-width: 100%;
  }

  .aboutMobile__content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
    color: #f5c26b;
  }

  .aboutMobile__content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ddd;
    text-align: left;
  }

  .highlight {
    font-weight: bold;
    color: #f5c26b;
  }

}
/* ===== PREMIUM ABOUT SECTION ===== */

/* DESKTOP */
.aboutDesktop{
  display:block;
  padding:120px 20px;
  background:linear-gradient(135deg,#0a0a0a,#1a1a1a);
  color:#fff;
}

.aboutDesktop__wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
  max-width:1200px;
  margin:auto;
}

/* TEXT */
.aboutDesktop__content{
  flex:1;
  animation:fadeLeft 1s ease;
}

.aboutDesktop__content h2{
  font-size:48px;
  margin-bottom:25px;
  color:#f5c26b;
  font-weight:600;
  letter-spacing:1px;
  position:relative;
}

/* gouden lijn */
.aboutDesktop__content h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:#f5c26b;
  margin-top:10px;
}

.aboutDesktop__content p{
  font-size:17px;
  line-height:1.9;
  color:#cfcfcf;
  margin-bottom:18px;
  transition:0.3s;
}

.aboutDesktop__content p:hover{
  color:#fff;
}

/* highlight */
.highlight{
  color:#f5c26b;
  font-weight:600;
  font-size:18px;
}

/* IMAGE */
.aboutDesktop__image{
  flex:1;
  animation:fadeRight 1s ease;
}

.aboutDesktop__image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 30px 100px rgba(0,0,0,0.8);
  transition:all 0.4s ease;
}

.aboutDesktop__image img:hover{
  transform:scale(1.05);
}

/* ===== MOBILE ===== */
.aboutMobile{
  display:none;
}

@media (max-width: 768px){

  .aboutDesktop{
    display:none;
  }

  .aboutMobile{
    display:block;
    padding:40px 20px;
    background:linear-gradient(180deg,#0a0a0a,#111);
  }

  .aboutMobile__content{
    background:#141414;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.6);

    animation:fadeUp 0.8s ease;
  }

  .aboutMobile__content h2{
    font-size:26px;
    color:#f5c26b;
    margin-bottom:15px;
    letter-spacing:1px;
  }

  .aboutMobile__content p{
    font-size:15px;
    line-height:1.8;
    color:#ccc;
    margin-bottom:15px;
    transition:0.3s;
  }

  .aboutMobile__content p:hover{
    color:#fff;
    transform:translateX(3px);
  }

  .highlight{
    color:#f5c26b;
    font-weight:bold;
  }

}

/* ===== ANIMATIONS ===== */

@keyframes fadeLeft{
  from{
    opacity:0;
    transform:translateX(-50px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes fadeRight{
  from{
    opacity:0;
    transform:translateX(50px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* ===== ULTRA LUXE ABOUT ===== */

/* DESKTOP */
.aboutDesktop{
  display:block;
  padding:140px 20px;
  background:radial-gradient(circle at top,#1a1a1a,#050505);
  color:#fff;
}

.aboutDesktop__wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:100px;
  max-width:1200px;
  margin:auto;
}

/* TEXT */
.aboutDesktop__content{
  flex:1;
  max-width:550px;
  animation:fadeLeft 1s ease;
}

.aboutDesktop__content h2{
  font-size:52px;
  margin-bottom:30px;
  font-weight:600;
  letter-spacing:2px;
  color:#f5c26b;
  position:relative;
}

/* luxe lijn */
.aboutDesktop__content h2::after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  background:linear-gradient(90deg,#f5c26b,transparent);
  margin-top:12px;
}

/* TEXT PARAGRAPHS */
.aboutDesktop__content p{
  font-size:18px;
  line-height:2;
  color:#bfbfbf;
  margin-bottom:18px;
  transition:all 0.3s ease;
}

/* hover premium feel */
.aboutDesktop__content p:hover{
  color:#fff;
  transform:translateX(5px);
}

/* highlight */
.highlight{
  color:#f5c26b;
  font-weight:600;
  font-size:19px;
  position:relative;
}

/* glow underline */
.highlight::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,transparent,#f5c26b,transparent);
  animation:glow 2s infinite;
}

/* IMAGE */
.aboutDesktop__image{
  flex:1;
  position:relative;
  animation:fadeRight 1s ease;
}

/* glow achter foto */
.aboutDesktop__image::before{
  content:"";
  position:absolute;
  top:20px;
  left:20px;
  width:100%;
  height:100%;
  background:#f5c26b;
  border-radius:25px;
  opacity:0.15;
  filter:blur(40px);
}

/* echte foto */
.aboutDesktop__image img{
  position:relative;
  width:100%;
  border-radius:25px;
  z-index:1;

  box-shadow:0 40px 120px rgba(0,0,0,0.9);
  transition:all 0.5s ease;
}

.aboutDesktop__image img:hover{
  transform:scale(1.06) rotate(0.5deg);
}

/* ===== MOBILE ===== */
.aboutMobile{
  display:none;
}

@media (max-width:768px){

  .aboutDesktop{
    display:none;
  }

  .aboutMobile{
    display:block;
    padding:50px 20px;
    background:radial-gradient(circle,#111,#050505);
  }

  .aboutMobile__content{
    background:rgba(20,20,20,0.9);
    backdrop-filter:blur(10px);

    padding:30px 20px;
    border-radius:20px;

    box-shadow:
      0 20px 50px rgba(0,0,0,0.7),
      inset 0 1px 0 rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.05);

    animation:fadeUp 0.8s ease;
  }

  .aboutMobile__content h2{
    font-size:28px;
    color:#f5c26b;
    margin-bottom:20px;
    letter-spacing:2px;
  }

  .aboutMobile__content p{
    font-size:15px;
    line-height:1.9;
    color:#ccc;
    margin-bottom:15px;
    transition:0.3s;
  }

  .aboutMobile__content p:hover{
    color:#fff;
  }

  .highlight{
    color:#f5c26b;
    font-weight:600;
  }

}

/* ===== ANIMATIONS ===== */

@keyframes fadeLeft{
  from{
    opacity:0;
    transform:translateX(-60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes fadeRight{
  from{
    opacity:0;
    transform:translateX(60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

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

@keyframes glow{
  0%{opacity:0.3;}
  50%{opacity:1;}
  100%{opacity:0.3;}
}
/* ===== NEXT LEVEL ABOUT ===== */

/* DESKTOP */
.aboutDesktop{
  display:block;
  padding:160px 20px;
  background:
    radial-gradient(circle at top,#1a1a1a 0%, #050505 100%);
  color:#fff;
  overflow:hidden;
  position:relative;
}

/* subtiele moving light */
.aboutDesktop::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle,#f5c26b33,transparent 70%);
  top:-200px;
  left:-200px;
  animation:moveLight 10s linear infinite;
}

.aboutDesktop__wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:120px;
  max-width:1200px;
  margin:auto;
  position:relative;
  z-index:2;
}

/* TEXT */
.aboutDesktop__content{
  flex:1;
  max-width:550px;
  animation:fadeLeft 1.2s ease;
}

.aboutDesktop__content h2{
  font-size:56px;
  margin-bottom:30px;
  font-weight:600;
  letter-spacing:2px;
  color:#f5c26b;
}

/* gradient tekst effect */
.aboutDesktop__content h2{
  background:linear-gradient(90deg,#f5c26b,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.aboutDesktop__content p{
  font-size:18px;
  line-height:2;
  color:#bfbfbf;
  margin-bottom:20px;
  transition:all 0.4s ease;
}

/* luxe hover effect */
.aboutDesktop__content p:hover{
  color:#fff;
  transform:translateX(8px);
}

/* highlight */
.highlight{
  color:#f5c26b;
  font-weight:600;
  font-size:20px;
  position:relative;
}

/* animated lijn */
.highlight::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,transparent,#f5c26b,transparent);
  animation:glow 2s infinite;
}

/* IMAGE */
.aboutDesktop__image{
  flex:1;
  position:relative;
  animation:fadeRight 1.2s ease;
}

/* glow achter foto */
.aboutDesktop__image::before{
  content:"";
  position:absolute;
  top:40px;
  left:40px;
  width:100%;
  height:100%;
  background:#f5c26b;
  border-radius:30px;
  opacity:0.1;
  filter:blur(60px);
}

/* echte foto */
.aboutDesktop__image img{
  position:relative;
  width:100%;
  border-radius:30px;
  z-index:1;

  box-shadow:
    0 50px 150px rgba(0,0,0,0.9),
    0 0 40px rgba(245,194,107,0.2);

  transition:all 0.6s ease;
}

/* insane hover */
.aboutDesktop__image img:hover{
  transform:scale(1.08) rotate(0.8deg);
}

/* ===== MOBILE ===== */
.aboutMobile{
  display:none;
}

@media (max-width:768px){

  .aboutDesktop{
    display:none;
  }

  .aboutMobile{
    display:block;
    padding:60px 20px;
    background:radial-gradient(circle,#111,#050505);
  }

  .aboutMobile__content{
    background:rgba(20,20,20,0.85);
    backdrop-filter:blur(15px);

    padding:30px 25px;
    border-radius:20px;

    box-shadow:
      0 20px 60px rgba(0,0,0,0.7),
      0 0 30px rgba(245,194,107,0.1);

    border:1px solid rgba(255,255,255,0.05);

    animation:fadeUp 1s ease;
  }

  .aboutMobile__content h2{
    font-size:28px;
    margin-bottom:20px;

    background:linear-gradient(90deg,#f5c26b,#fff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
  }

  .aboutMobile__content p{
    font-size:15px;
    line-height:1.9;
    color:#ccc;
    margin-bottom:15px;
    transition:0.3s;
  }

  .aboutMobile__content p:hover{
    color:#fff;
  }

  .highlight{
    color:#f5c26b;
    font-weight:600;
  }

}

/* ===== ANIMATIONS ===== */

@keyframes fadeLeft{
  from{
    opacity:0;
    transform:translateX(-80px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes fadeRight{
  from{
    opacity:0;
    transform:translateX(80px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

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

/* glow lijn */
@keyframes glow{
  0%{opacity:0.3;}
  50%{opacity:1;}
  100%{opacity:0.3;}
}

/* moving light */
@keyframes moveLight{
  0%{transform:translate(0,0);}
  50%{transform:translate(200px,200px);}
  100%{transform:translate(0,0);}
}
@media (max-width:768px){

  .aboutMobile{
    display:block;
    padding:70px 20px;
    background:
      radial-gradient(circle at top,#1a1a1a 0%,#050505 100%);
    position:relative;
    overflow:hidden;
  }

  /* moving light effect */
  .aboutMobile::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:radial-gradient(circle,#f5c26b22,transparent 70%);
    top:-100px;
    right:-100px;
    animation:moveLightMobile 8s infinite linear;
  }

  .aboutMobile__content{
    position:relative;
    z-index:2;

    background:rgba(15,15,15,0.85);
    backdrop-filter:blur(18px);

    padding:35px 25px;
    border-radius:22px;

    border:1px solid rgba(255,255,255,0.07);

    box-shadow:
      0 25px 70px rgba(0,0,0,0.8),
      0 0 50px rgba(245,194,107,0.08);

    animation:fadeUp 1s ease;
  }

  /* TOP LIJN (luxury detail) */
  .aboutMobile__content::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,transparent,#f5c26b,transparent);
    opacity:0.8;
  }

  /* TITEL */
  .aboutMobile__content h2{
    font-size:30px;
    margin-bottom:25px;
    letter-spacing:2px;

    background:linear-gradient(90deg,#f5c26b,#ffffff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:fadeText 0.8s ease forwards;
  }

  /* PARAGRAPH */
  .aboutMobile__content p{
    font-size:15.5px;
    line-height:2;
    color:#cfcfcf;
    margin-bottom:18px;

    opacity:0;
    transform:translateY(25px);
    animation:fadeText 0.8s ease forwards;
  }

  /* stagger (super smooth) */
  .aboutMobile__content p:nth-child(2){animation-delay:0.2s;}
  .aboutMobile__content p:nth-child(3){animation-delay:0.4s;}
  .aboutMobile__content p:nth-child(4){animation-delay:0.6s;}
  .aboutMobile__content p:nth-child(5){animation-delay:0.8s;}
  .aboutMobile__content p:nth-child(6){animation-delay:1s;}

  /* hover micro interaction */
  .aboutMobile__content p:hover{
    color:#ffffff;
    transform:translateX(6px);
  }

  /* highlight */
  .highlight{
    color:#f5c26b;
    font-weight:600;
    font-size:17px;
    position:relative;
  }

  /* animated glow line */
  .highlight::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,transparent,#f5c26b,transparent);
    animation:glow 2s infinite;
  }

}

/* EXTRA ANIMATIONS */

@keyframes moveLightMobile{
  0%{transform:translate(0,0);}
  50%{transform:translate(-80px,80px);}
  100%{transform:translate(0,0);}
}

@keyframes fadeText{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
@media (max-width:768px){

  .aboutMobile{
    display:block;
    padding:0;
    position:relative;
    background:#050505;
  }

  /* FOTO HERO (half zichtbaar) */
  .aboutMobile::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:280px;

    background:
      linear-gradient(to bottom, rgba(0,0,0,0.3), #050505),
      url('../assets/kapper.jpg') center/cover no-repeat;

    z-index:1;
  }

  /* CONTENT */
  .aboutMobile__content{
    position:relative;
    z-index:2;

    margin-top:180px; /* OVER FOTO */

    padding:30px 25px;
    border-radius:22px 22px 0 0;

    background:rgba(15,15,15,0.9);
    backdrop-filter:blur(18px);

    box-shadow:
      0 -20px 60px rgba(0,0,0,0.8),
      0 0 40px rgba(245,194,107,0.08);

    border-top:1px solid rgba(255,255,255,0.06);

    animation:fadeUp 1s ease;
  }

  /* TITEL */
  .aboutMobile__content h2{
    font-size:28px;
    margin-bottom:20px;

    background:linear-gradient(90deg,#f5c26b,#fff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
  }

  /* TEXT */
  .aboutMobile__content p{
    font-size:15.5px;
    line-height:2;
    color:#cfcfcf;
    margin-bottom:18px;

    opacity:0;
    transform:translateY(25px);
    animation:fadeText 0.8s ease forwards;
  }

  /* stagger animatie */
  .aboutMobile__content p:nth-child(2){animation-delay:0.2s;}
  .aboutMobile__content p:nth-child(3){animation-delay:0.4s;}
  .aboutMobile__content p:nth-child(4){animation-delay:0.6s;}
  .aboutMobile__content p:nth-child(5){animation-delay:0.8s;}
  .aboutMobile__content p:nth-child(6){animation-delay:1s;}

  /* highlight */
  .highlight{
    color:#f5c26b;
    font-weight:600;
    font-size:16px;
    position:relative;
  }

  .highlight::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,transparent,#f5c26b,transparent);
    animation:glow 2s infinite;
  }

}

/* animaties */
@keyframes fadeText{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
@media (max-width:768px){

  .aboutMobile{
    position:relative;
    padding:0;
    background:#050505;
    overflow:hidden;
  }

  /* FOTO MET PARALLAX FEEL */
  .aboutMobile::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:320px;

    background:
      linear-gradient(to bottom, rgba(0,0,0,0.2), #050505 90%),
      url('../assets/kapper.jpg') center/cover no-repeat;

    transform:scale(1.1); /* beetje zoom */
    z-index:1;
  }

  /* EXTRA GLOW OP FOTO */
  .aboutMobile::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:320px;
    background:radial-gradient(circle at top, #f5c26b22, transparent 70%);
    z-index:2;
  }

  /* CONTENT CARD */
  .aboutMobile__content{
    position:relative;
    z-index:3;

    margin-top:200px;

    padding:35px 25px;
    border-radius:30px 30px 0 0;

    background:rgba(15,15,15,0.92);
    backdrop-filter:blur(20px);

    box-shadow:
      0 -30px 80px rgba(0,0,0,0.9),
      0 0 60px rgba(245,194,107,0.08);

    border-top:1px solid rgba(255,255,255,0.08);

    animation:fadeUp 1s ease;
  }

  /* klein floating effect */
  .aboutMobile__content:hover{
    transform:translateY(-5px);
    transition:0.4s;
  }

  /* TITEL */
  .aboutMobile__content h2{
    font-size:30px;
    margin-bottom:25px;
    letter-spacing:2px;

    background:linear-gradient(90deg,#f5c26b,#ffffff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
  }

  /* gouden lijn luxe */
  .aboutMobile__content h2::after{
    content:"";
    display:block;
    width:50px;
    height:3px;
    background:#f5c26b;
    margin-top:10px;
    border-radius:2px;
  }

  /* TEXT */
  .aboutMobile__content p{
    font-size:15.5px;
    line-height:2;
    color:#cfcfcf;
    margin-bottom:18px;

    opacity:0;
    transform:translateY(30px);
    animation:fadeText 0.8s ease forwards;
  }

  /* stagger */
  .aboutMobile__content p:nth-child(2){animation-delay:0.2s;}
  .aboutMobile__content p:nth-child(3){animation-delay:0.4s;}
  .aboutMobile__content p:nth-child(4){animation-delay:0.6s;}
  .aboutMobile__content p:nth-child(5){animation-delay:0.8s;}
  .aboutMobile__content p:nth-child(6){animation-delay:1s;}

  /* hover luxe */
  .aboutMobile__content p:hover{
    color:#ffffff;
    transform:translateX(6px);
  }

  /* highlight */
  .highlight{
    color:#f5c26b;
    font-weight:600;
    font-size:17px;
    position:relative;
  }

  /* glow underline */
  .highlight::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,transparent,#f5c26b,transparent);
    animation:glow 2s infinite;
  }

}

/* ANIMATIES */
@keyframes fadeText{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
@media (max-width:768px){

  .aboutMobile{
    position:relative;
    padding:0;
    background:#050505;
    overflow:hidden;
  }

  /* PARALLAX FOTO */
  .aboutMobile::before{
    content:"";
    position:fixed; /* 👈 dit is de key voor parallax */
    top:0;
    left:0;
    width:100%;
    height:380px;

    background:
      linear-gradient(to bottom, rgba(0,0,0,0.3), #050505 90%),
      url('../assets/kapper.jpg') center/cover no-repeat;

    z-index:1;
    transform:scale(1.1);
  }

  /* glow layer */
  .aboutMobile::after{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:380px;
    background:radial-gradient(circle at top, #f5c26b22, transparent 70%);
    z-index:2;
  }

  /* CONTENT */
  .aboutMobile__content{
    position:relative;
    z-index:3;

    margin-top:240px;

    padding:35px 25px;
    border-radius:30px 30px 0 0;

    background:rgba(15,15,15,0.92);
    backdrop-filter:blur(20px);

    box-shadow:
      0 -30px 80px rgba(0,0,0,0.9),
      0 0 60px rgba(245,194,107,0.08);

    border-top:1px solid rgba(255,255,255,0.08);

    animation:fadeUp 1s ease;
  }

  /* TITEL */
  .aboutMobile__content h2{
    font-size:30px;
    margin-bottom:25px;

    background:linear-gradient(90deg,#f5c26b,#fff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
  }

  /* TEXT */
  .aboutMobile__content p{
    font-size:15.5px;
    line-height:2;
    color:#cfcfcf;
    margin-bottom:18px;

    opacity:0;
    transform:translateY(30px);
    animation:fadeText 0.8s ease forwards;
  }

  /* stagger */
  .aboutMobile__content p:nth-child(2){animation-delay:0.2s;}
  .aboutMobile__content p:nth-child(3){animation-delay:0.4s;}
  .aboutMobile__content p:nth-child(4){animation-delay:0.6s;}
  .aboutMobile__content p:nth-child(5){animation-delay:0.8s;}
  .aboutMobile__content p:nth-child(6){animation-delay:1s;}

  /* highlight */
  .highlight{
    color:#f5c26b;
    font-weight:600;
    font-size:17px;
  }

}


/* herooooo */


/* ===== PRODUCTS SECTION ===== */

.products{
  background:#0f0f0f;
}

.productsGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:40px;
}

/* CARD */
.productCard{
  background:#1a1a1a;
  border-radius:20px;
  padding:20px;
  text-align:center;

  border:1px solid rgba(255,255,255,0.05);

  transition:all 0.4s ease;
}

/* IMAGE */
.productCard img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:15px;
}

/* TITLE */
.productCard h3{
  color:#f5c26b;
  margin-bottom:10px;
  font-size:18px;
}

/* TEXT */
.productCard p{
  color:#ccc;
  font-size:14px;
  line-height:1.6;
}

/* HOVER LUXE EFFECT */
.productCard:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

/* ===== MOBILE ===== */
@media(max-width:900px){
  .productsGrid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .productsGrid{
    grid-template-columns:1fr;
  }
}

/* product home page */

/* ===== PRODUCTS NEXT LEVEL ===== */

.productsPreview{
  padding:100px 20px;
  background:linear-gradient(180deg,#0b0b0b,#111);
}

.productsGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:50px;
}

/* CARD */
.productCard{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  cursor:pointer;

  background:#111;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);

  transition:all 0.4s ease;
}

/* IMAGE */
.productCard img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:0.5s;
}

/* OVERLAY GRADIENT */
.productCard::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* INFO */
.productInfo{
  position:absolute;
  bottom:20px;
  left:20px;
  right:20px;
  z-index:2;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.productInfo h3{
  color:#fff;
  font-size:18px;
  font-weight:500;
}

.productInfo span{
  color:#d4af37;
  font-weight:600;
}

/* HOVER = LUXE */
.productCard:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 30px 80px rgba(0,0,0,0.9);
}

.productCard:hover img{
  transform:scale(1.1);
}

/* GOLD GLOW */
.productCard:hover::before{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(212,175,55,0.5);
  border-radius:20px;
  z-index:3;
}

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

@media(max-width:900px){
  .productsGrid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  .productCard img{
    height:200px;
  }
}

@media(max-width:500px){
  .productsGrid{
    grid-template-columns:1fr;
  }

  .productCard img{
    height:220px;
  }
}

/* ===== PRODUCTS SECTION (NEXT LEVEL 2) ===== */

.productsHome {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0a0a, #111);
}

.productsHome__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.productCard {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;

  background: #111;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);

  transition: all 0.4s ease;
}

/* IMAGE */
.productCard img {
  width: 100%;
  height: 300px;
  object-fit: cover;

  transition: transform 0.6s ease;
}

/* DARK OVERLAY */
.productCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* TEXT */
.productCard__content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
}

.productCard__content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.productCard__content span {
  color: #f5c26b;
  font-weight: 600;
}

/* HOVER EFFECT (LUXE) */
.productCard:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.productCard:hover img {
  transform: scale(1.1);
}

/* GOLD BORDER GLOW */
.productCard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(245,194,107,0.2);
  z-index: 3;
  pointer-events: none;
}

/* ===== MOBILE NEXT LEVEL ===== */

@media (max-width: 900px) {

  .productsHome__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .productCard img {
    height: 220px;
  }
}

@media (max-width: 600px) {

  .productsHome {
    padding: 60px 15px;
  }

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

  .productCard img {
    height: 250px;
  }

  .productCard__content h3 {
    font-size: 18px;
  }
}

@media(max-width:600px){

  .productCard img{
    height:120px; /* kleiner maken */
    object-fit:contain; /* zorgt dat alles netjes past */
    background:#0f0f0f; /* lege ruimte mooi maken */
    padding:10px;
  }

  .productCard{
    padding:12px;
  }

  .productCard h3{
    font-size:14px;
  }

  .productCard p{
    font-size:12px;
  }

  .productCard .price{
    font-size:13px;
  }

}

@media(max-width:600px){

  /* iets grotere cards */
  .productGrid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }

  .productCard{
    padding:12px;
    border-radius:16px;
  }

  /* 👇 FOTO GROTER & MOOIER */
  .productCard img{
    height:140px; /* 👈 groter (was 110) */
    object-fit:cover;
    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,0.5);
  }

  /* TEXT iets beter spacing */
  .productCard h3{
    font-size:14px;
    margin-top:10px;
  }

  .productCard p{
    font-size:12px;
    margin-bottom:8px;
  }

  .productCard .price{
    font-size:14px;
  }

  /* 👇 EXTRA LUXE EFFECT */
  .productCard:hover img{
    transform:scale(1.06);
  }

  .productCard::before{
    opacity:0.15; /* altijd beetje glow zichtbaar */
  }

}

@media(max-width:600px){

  /* alleen home products section */
  .productGrid{
    display:grid;
    grid-template-columns:repeat(2, 1fr); /* 👈 2 naast elkaar */
    gap:14px;
  }

  .productCard{
    padding:10px;
  }

  .productCard img{
    height:120px;
    object-fit:cover;
  }

}
@media(max-width:600px){

  /* alleen jouw home products (NIET de product page) */
  .productsGrid{
    display:grid !important;
    grid-template-columns:repeat(2, 1fr); /* 👈 2 naast elkaar */
    gap:14px;
  }

  .productsGrid .productCard{
    width:100%;
    padding:10px;
  }

  .productsGrid .productCard img{
    width:100%;
    height:110px;
    object-fit:cover;
    border-radius:10px;
  }

}
@media(max-width:600px){

  /* GRID */
  .productsGrid{
    display:grid !important;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
    padding:0 12px;
  }

  /* CARD */
  .productsGrid .productCard{
    background:linear-gradient(145deg,#0f0f0f,#1a1a1a);
    border-radius:16px;
    padding:12px;

    box-shadow:
      0 10px 30px rgba(0,0,0,0.6),
      inset 0 1px 0 rgba(255,255,255,0.05);

    position:relative;
    overflow:hidden;

    transition:all 0.4s ease;
  }

  /* GLOW BORDER EFFECT */
  .productsGrid .productCard::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:16px;
    padding:1px;
    background:linear-gradient(120deg, transparent, #f5c26b, transparent);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;

    opacity:0;
    transition:0.4s;
  }

  .productsGrid .productCard:hover::before{
    opacity:1;
  }

  /* IMAGE */
  .productsGrid .productCard img{
    width:100%;
    height:130px;
    object-fit:cover;
    border-radius:12px;

    transition:all 0.5s ease;
  }

  /* IMAGE HOVER */
  .productsGrid .productCard:hover img{
    transform:scale(1.08);
    filter:brightness(1.1);
  }

  /* TITLE */
  .productsGrid .productCard h3{
    font-size:13px;
    margin-top:10px;
    color:#f5c26b;
    line-height:1.3;
  }

  /* TEXT */
  .productsGrid .productCard p{
    font-size:11px;
    color:#bbb;
    margin:6px 0;
  }

  /* PRICE */
  .productsGrid .productCard .price{
    font-size:14px;
    font-weight:600;
    color:#f5c26b;
  }

  /* SUBTLE FLOAT ANIMATION */
  .productsGrid .productCard{
    animation:floatCard 4s ease-in-out infinite;
  }

  .productsGrid .productCard:nth-child(2){
    animation-delay:0.3s;
  }

  .productsGrid .productCard:nth-child(3){
    animation-delay:0.6s;
  }

  @keyframes floatCard{
    0%{transform:translateY(0);}
    50%{transform:translateY(-6px);}
    100%{transform:translateY(0);}
  }

}
@media(max-width:600px){

  /* GRID */
  .productsGrid{
    display:grid !important;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
    padding:0 14px;
  }

  /* CARD BASE */
  .productsGrid .productCard{
    position:relative;
    border-radius:18px;
    padding:12px;

    background:rgba(20,20,20,0.9);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.05);

    box-shadow:
      0 15px 40px rgba(0,0,0,0.7),
      inset 0 1px 0 rgba(255,255,255,0.06);

    overflow:hidden;

    transition:all 0.4s ease;
  }

  /* ✨ MOVING LIGHT EFFECT */
  .productsGrid .productCard::after{
    content:"";
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:linear-gradient(
      120deg,
      transparent,
      rgba(245,194,107,0.15),
      transparent
    );
    transform:rotate(25deg);
    animation:shineMove 5s linear infinite;
  }

  @keyframes shineMove{
    0%{transform:translateX(-100%) rotate(25deg);}
    100%{transform:translateX(100%) rotate(25deg);}
  }

  /* 🔥 GLOW BORDER */
  .productsGrid .productCard::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    padding:1px;
    background:linear-gradient(120deg,#f5c26b,transparent,#f5c26b);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;

    opacity:0.4;
    animation:borderGlow 3s infinite;
  }

  @keyframes borderGlow{
    0%,100%{opacity:0.2;}
    50%{opacity:0.7;}
  }

  /* IMAGE */
  .productsGrid .productCard img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:14px;

    transition:all 0.6s ease;
  }

  /* IMAGE HOVER */
  .productsGrid .productCard:hover img{
    transform:scale(1.1) rotate(1deg);
    filter:brightness(1.15) contrast(1.1);
  }

  /* TITLE */
  .productsGrid .productCard h3{
    font-size:13px;
    margin-top:10px;
    color:#f5c26b;
    letter-spacing:0.5px;
  }

  /* TEXT */
  .productsGrid .productCard p{
    font-size:11px;
    color:#aaa;
    margin:6px 0;
  }

  /* PRICE */
  .productsGrid .productCard .price{
    font-size:14px;
    font-weight:700;
    color:#f5c26b;
  }

  /* 💎 3D HOVER FEEL */
  .productsGrid .productCard:hover{
    transform:translateY(-8px) scale(1.03);
    box-shadow:0 25px 60px rgba(0,0,0,0.9);
  }

}

/* ===== GOLD BORDER VOOR PRODUCTEN ===== */

.productCard{
  position:relative;
  border-radius:20px;
  background:#0f0f0f;

  border:1px solid rgba(212,175,55,0.5); /* 👈 goud rand */
}

/* subtiele glow */
.productCard::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;

  box-shadow:
    0 0 0 1px rgba(212,175,55,0.4),
    0 0 20px rgba(212,175,55,0.15);

  opacity:0.6;
  pointer-events:none;
}

.productCard{
  position:relative;
  border-radius:20px;
  background:#0f0f0f;

  border:1px solid rgba(212,175,55,0.6);
}

/* glow + soft light */
.productCard::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;

  box-shadow:
    0 0 0 1px rgba(212,175,55,0.5),
    0 0 30px rgba(212,175,55,0.2);

  opacity:0.7;
}

/* hover extra glow */
.productCard:hover{
  box-shadow:
    0 0 40px rgba(212,175,55,0.25);
}

/* ===== REMOVE GOLD BORDER & GLOW ===== */

.productCard {
  border: none !important;
}

/* verwijder alle glow layers */
.productCard::before,
.productCard::after,
.productsGrid .productCard::before,
.productsGrid .productCard::after {
  content: none !important;
  display: none !important;
}

/* hover ook clean houden */
.productCard:hover {
  box-shadow: 0 25px 60px rgba(0,0,0,0.9);
}
/* ===== FORCE GLITTER BORDER (WERKT ZEKER) ===== */

.productsGrid .productCard{
  position:relative !important;
  overflow:hidden !important;
}

/* RESET oude pseudo elements */
.productsGrid .productCard::before,
.productsGrid .productCard::after{
  content:none !important;
}

/* NIEUWE GLITTER BORDER */
.productsGrid .productCard::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  border-radius:inherit !important;
  padding:1px !important;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent,
    rgba(255,255,255,0.9),
    transparent
  ) !important;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;

  opacity:0.2 !important;
  animation:glitterPulse 1.5s infinite !important;
}

/* ANIMATIE */
@keyframes glitterPulse{
  0%{
    opacity:0.1;
    filter:blur(1px);
  }
  50%{
    opacity:1;
    filter:blur(2px);
  }
  100%{
    opacity:0.1;
    filter:blur(1px);
  }
}
/* ===== UNIVERSAL PRODUCT EFFECT (HOME + PRODUCT PAGE) ===== */

.productCard{
  position:relative !important;
  overflow:hidden !important;

  border:1px solid rgba(255,255,255,0.1) !important;

  box-shadow:
    0 0 10px rgba(255,255,255,0.05),
    0 0 20px rgba(0,0,0,0.8) !important;

  transition:all 0.4s ease !important;
}

/* RESET OUDE EFFECTS */
.productCard::before,
.productCard::after{
  content:none !important;
}

/* ===== NEON BORDER ===== */
.productCard::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  border-radius:inherit !important;
  padding:1px !important;

  background:linear-gradient(
    120deg,
    #00f0ff,
    #8a2eff,
    #00f0ff
  ) !important;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;

  opacity:0.6 !important;
  animation:neonMove 4s linear infinite !important;
}

/* NEON ANIMATION */
@keyframes neonMove{
  0%{filter:hue-rotate(0deg);}
  100%{filter:hue-rotate(360deg);}
}

/* ===== SPARKLES (STARS) ===== */
.productCard::after{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;

  background-image:
    radial-gradient(2px 2px at 20% 30%, #fff, transparent),
    radial-gradient(2px 2px at 70% 60%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, #fff, transparent),
    radial-gradient(2px 2px at 80% 20%, #fff, transparent);

  opacity:0.4;
  animation:sparkleMove 6s linear infinite;
}

/* SPARKLE MOVE */
@keyframes sparkleMove{
  0%{
    transform:translateY(0);
    opacity:0.2;
  }
  50%{
    transform:translateY(-10px);
    opacity:0.8;
  }
  100%{
    transform:translateY(0);
    opacity:0.2;
  }
}

/* ===== HOVER BOOST ===== */
.productCard:hover{
  transform:translateY(-8px) scale(1.03) !important;

  box-shadow:
    0 0 25px rgba(0,255,255,0.4),
    0 0 60px rgba(138,46,255,0.3) !important;
}

/* IMAGE EFFECT */
.productCard:hover img{
  transform:scale(1.1) !important;
  filter:brightness(1.2) contrast(1.1) !important;
}
/* ===== GOLD + NEON COMBO ===== */

.productCard{
  position:relative !important;
  overflow:hidden !important;
}

/* EXTRA GOUDEN RAND (boven neon) */
.productCard{
  border:1px solid rgba(212,175,55,0.6) !important;
}

/* GOUDEN GLOW RING */
.productCard::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  border-radius:inherit !important;

  box-shadow:
    0 0 10px rgba(212,175,55,0.4),
    0 0 25px rgba(212,175,55,0.25),
    0 0 40px rgba(212,175,55,0.15);

  pointer-events:none;
  animation:goldPulse 2.5s ease-in-out infinite;
}

/* GOUD PULSE */
@keyframes goldPulse{
  0%{
    opacity:0.3;
  }
  50%{
    opacity:1;
  }
  100%{
    opacity:0.3;
  }
}

/* EXTRA HOVER BOOST */
.productCard:hover{
  box-shadow:
    0 0 20px rgba(212,175,55,0.6),
    0 0 60px rgba(212,175,55,0.3),
    0 0 80px rgba(0,0,0,0.9) !important;
}