/* Story Frames — shared styles (fairy warm dark) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

:root{
  /* Warm fairy dark */
  --bg:#836475;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(0,0,0,.25);
  --text:#fcfbfc;         /* Even lighter text for better readability */
  --muted: rgba(252,251,252,.85); /* Even lighter muted text for better readability */
  --line: rgba(255,255,255,.14);

  --rose:#ff4d7d;
  --rose2:#ff86ad;
  --gold:#e7c27a;

  --shadow: 0 18px 70px rgba(0,0,0,.50);
  --shadow2: 0 12px 30px rgba(0,0,0,.35);
  --radius: 20px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: 16px; /* Slightly increased base font size */
  color:var(--text);
  background:
    linear-gradient(180deg, rgba(131,100,117,.95) 0%, rgba(131,100,117,.98) 100%),
    url('gallery-1.jpeg') center/cover fixed,
    radial-gradient(900px 520px at 12% -8%, rgba(255,77,125,.26), transparent 60%),
    radial-gradient(900px 520px at 88% 0%, rgba(193, 166, 113, 0.18), transparent 55%),
    radial-gradient(900px 640px at 50% 115%, rgba(255,134,173,.12), transparent 62%),
    var(--bg);
  line-height:1.65; /* Slightly increased line height for better readability */
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

h1,h2,h3{
  font-family:"Playfair Display", Georgia, serif;
  letter-spacing:-.35px;
}
a{color:inherit}
.container{width:min(1120px, 92vw); margin:0 auto; padding:22px 0 70px;}

/* Header */
header.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 10px 0 18px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none;}
.logo{
  width:180px;height:180px;border-radius:14px; overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
}

@media (max-width: 920px){
  .logo{
    width:60px;
    height:60px;
    border-radius:10px;
  }
}
.logo img{width:100%;height:100%;object-fit:cover;display:block}
.brand strong{letter-spacing:.2px}
.brand small{display:block; color:var(--muted); margin-top:2px}

nav.topnav{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;}
nav.topnav a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
  font-weight:650px;
}
nav.topnav a:hover{
  color:var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.05);
}

.pill{
  border:1px solid rgba(231,194,122,.30);
  background: linear-gradient(180deg, rgba(231,194,122,.16), rgba(255,255,255,.03));
  color:var(--text);
}

/* Language toggle */
.lang{display:flex; gap:8px; align-items:center}
.langbtn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
  color:var(--muted);
}
.langbtn.active{
  color:var(--text);
  border-color: rgba(255,77,125,.55);
  background: linear-gradient(180deg, rgba(255,77,125,.22), rgba(255,255,255,.03));
}

/* Hero */
.hero{
  border:1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding: 26px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  width:560px;height:560px;
  left:-200px; top:-260px;
  /* “Ball glow” */
  background: radial-gradient(circle at 35% 35%,
    rgba(255,134,173,.44),
    rgba(255,77,125,.20) 40%,
    rgba(231,194,122,.12) 60%,
    transparent 72%);
  pointer-events:none;
  filter: blur(2px);
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height:1.06;
  position:relative;
}
.hero p{margin:0; color:var(--muted); max-width: 62ch; position:relative;}

.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; position:relative;}
.btn{
  appearance:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:12px 14px;
  border-radius:14px;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow: var(--shadow2);
  font-weight:900;
  color:var(--text);
}
.btn.primary{
  border-color: rgba(255,77,125,.55);
  background: linear-gradient(180deg, rgba(255,77,125,.25), rgba(255,255,255,.03));
}
.btn.gold{
  border-color: rgba(231,194,122,.42);
  background: linear-gradient(180deg, rgba(231,194,122,.18), rgba(255,255,255,.03));
}
.btn:hover{transform: translateY(-1px); transition: transform .12s ease;}

.hero-card{
  border:1px solid var(--line);
  border-radius: 18px;
  padding:16px;
  background: rgba(0,0,0,.18);
  box-shadow: var(--shadow2);
  position:relative;
}
.hero-card b{display:block; margin-bottom:6px}
.hero-card ul{margin:0; padding-left:18px; color:var(--muted)}
.hero-card li{margin:6px 0}

/* Sections */
section{margin-top:22px}
.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap; margin:0 0 12px;}
.section-title h2{margin:0; font-size: clamp(20px, 3vw, 30px);}

/* Products cards */
.products{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
.card{
  border:1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  min-height: 520px;
  position:relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 80px rgba(0,0,0,.60);
}
.card::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(380px 220px at 18% 10%, rgba(255,77,125,.16), transparent 60%),
    radial-gradient(360px 240px at 90% 25%, rgba(231,194,122,.12), transparent 55%);
  pointer-events:none;
}
.card .img{height:260px; background: rgba(0,0,0,.18); position:relative; z-index:1; overflow:hidden;}
.card .img img{width:100%; height:100%; object-fit:cover; display:block; filter:saturate(1.05) contrast(1.03); transition: transform 0.3s ease;}
.card:hover .img img{transform: scale(1.05);}
.card .body{padding:18px; position:relative; z-index:1; flex:1;}
.card h3{margin:0 0 8px; font-size:26px; line-height:1.2;} 
.card p{margin:0; color:var(--muted); font-size:15.5px; line-height:1.5;} 
.meta{
  margin-top:auto;
  padding: 16px 18px 18px;
  display:flex; justify-content:space-between; align-items:flex-end; gap:10px;
  border-top:1px solid rgba(255,255,255,.12);
  position:relative; z-index:1;
}
.price{font-weight:900; font-size:24px; letter-spacing:-0.5px;}
.tiny{color:var(--muted); font-size:12px; margin-top:3px; line-height:1.3;}
.tag{
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,77,125,.35);
  background: rgba(255,77,125,.12);
  color: var(--text);
  font-weight:900;
  white-space:nowrap;
  transition: all 0.2s ease;
}
.card:hover .tag{
  background: rgba(255,77,125,.20);
  border-color: rgba(255,77,125,.45);
}

/* Gallery */
.gallery{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;}
.shot{
  border:1px solid var(--line);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  cursor:pointer;
  min-height: 240px;
}
.shot img{width:100%; height:100%; object-fit:cover; display:block}

/* Service panels */
.two{display:grid; grid-template-columns: 1fr 1fr; gap:14px;}
.panel{
  border:1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  padding:18px;
}
.panel p{margin:0; color:var(--muted)}
.panel ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.panel li{margin:8px 0}

/* Lightbox */
.lightbox{position:fixed; inset:0; display:none; align-items:center; justify-content:center; background: rgba(0,0,0,.65); padding: 18px; z-index:999;}
.lightbox img{width:min(980px, 96vw); max-height: 86vh; object-fit:contain; border-radius: 18px; background:#111; box-shadow: 0 30px 90px rgba(0,0,0,.55);}

/* Footer */
footer{
  margin-top:40px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
  display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap;
  color:var(--muted);
}
footer a{color:var(--muted); text-decoration:none; font-weight:800}
footer a:hover{color:var(--text)}

/* Mobile Header Improvements */
.mobile-menu-toggle {
  display: none; /* Hidden by default on desktop */
}

.mobile-menu-overlay {
  display: none;
}

@media (max-width: 920px){
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 101;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Mobile header with logo background */
  header.top {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(131,100,117,.98) 0%, rgba(131,100,117,.95) 100%);
    backdrop-filter: blur(10px);
    margin: 0 -4vw;
    padding: 10px 4vw 10px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }
  
  /* Logo background effect for mobile */
  header.top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('logo.png') center/contain no-repeat;
    opacity: 0.03;
    pointer-events: none;
  }
  
  .brand small {
    display: none; /* Hide tagline on mobile for cleaner look */
  }
  
  /* Mobile navigation improvements */
  nav.topnav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: linear-gradient(180deg, rgba(131,100,117,.98) 0%, rgba(131,100,117,.96) 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 20px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,.3);
    border-left: 1px solid var(--line);
    overflow-y: auto;
  }
  
  nav.topnav.active {
    transform: translateX(0);
  }
  
  nav.topnav a {
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
  }
  
  /* Mobile menu overlay */
  .mobile-menu-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 99;
  }
  
  /* Language toggle in mobile menu */
  nav.topnav .lang {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    justify-content: center;
  }
  
  /* Cart icon in mobile menu */
  nav.topnav .cart-icon {
    justify-content: center;
  }
  
  .hero{grid-template-columns: 1fr}
  .products{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .two{grid-template-columns: 1fr}
}
/* ---- Full width presentation video ---- */
.videoHero{
  margin-top: 18px;
}

.videoHeroTop{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}

.videoShell{
  position:relative;
  width:100%;
  border-radius: 26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  box-shadow: var(--shadow);
}

/* 16:9 responsive window */
.videoShell::before{
  content:"";
  display:block;
  padding-top: 56.25%;
}

.videoFrame{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}

/* Overlay so it doesn’t look like YouTube before play */
.videoCover{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  background:
    radial-gradient(520px 320px at 20% 20%, rgba(255,77,125,.20), transparent 55%),
    radial-gradient(520px 320px at 80% 25%, rgba(231,194,122,.14), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.55));
  color: var(--text);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
}

.playBadge{
  width:72px;
  height:72px;
  border-radius: 22px;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size: 26px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,77,125,.24), rgba(255,255,255,.05));
  box-shadow: var(--shadow2);
}

.videoLabel{
  font-weight:900;
  letter-spacing:.2px;
  opacity:.95;
}

/* Slightly shorter on small screens */
@media (max-width: 520px){
  .playBadge{width:64px;height:64px;border-radius:20px}
}

/* Shopping Cart */
.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  text-decoration: none;
  color: var(--text);
}

.cart-icon:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,77,125,.35);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--rose);
  color: white;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.order-btn {
  width: 100%;
  margin-top: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(255,77,125,.55);
  background: linear-gradient(180deg, rgba(255,77,125,.25), rgba(255,255,255,.03));
  border-radius: 14px;
  color: var(--text);
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  box-shadow: var(--shadow2);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.order-btn:hover {
  transform: translateY(-1px);
  transition: transform .12s ease;
  background: linear-gradient(180deg, rgba(255,77,125,.30), rgba(255,255,255,.05));
}

/* Cart Modal */
.cart-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.cart-modal.active {
  display: flex;
}

.cart-content {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-size: 26px;
}

.close-cart {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
  font-weight: 900;
}

.close-cart:hover {
  background: rgba(255,77,125,.2);
}

.cart-items {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 16px;
  align-items: center;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 900;
  font-size: 16px;
  margin: 0 0 4px;
}

.cart-item-price {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: rgba(255,77,125,.2);
  border-color: rgba(255,77,125,.35);
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

.remove-item {
  background: rgba(255,77,125,.15);
  border: 1px solid rgba(255,77,125,.35);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}

.remove-item:hover {
  background: rgba(255,77,125,.25);
}

.cart-total {
  padding: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 16px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cart-total-row:last-child {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 900;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}

.checkout-button {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,77,125,.55);
  background: linear-gradient(180deg, rgba(255,77,125,.30), rgba(255,255,255,.05));
  border-radius: 14px;
  color: var(--text);
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow2);
  text-decoration: none;
  display: block;
  text-align: center;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.checkout-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255,77,125,.38), rgba(255,255,255,.08));
}

.cart-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}

.empty-cart-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.5;
}

@media (max-width: 920px) {
  .cart-content {
    max-width: 100%;
    margin: 0;
  }
  
  .cart-item {
    flex-direction: column;
    text-align: center;
  }
  
  .cart-item-image {
    width: 100%;
    height: 120px;
  }
}
