@font-face{
  font-family: "PANNETJE";
  src: url("fonts/PANNETJE.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Serpentine";
  src: url("fonts/Serpentine.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root{
  --ui-font: "Inter", sans-serif;
}

h1 {
  font-family: "Serpentine", sans-serif;
}

nav a {
  font-family: "PANNETJE", sans-serif;
  letter-spacing: 0.08em;
}

:root{
  --aero-blue-light: rgb(220, 235, 255);
  --aero-blue-mid:   rgb(170, 200, 230);
  --aero-blue-dark:  rgb(120, 160, 200);
}

.logo, button,
.ui-text {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

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

html{
  scrollbar-gutter: stable;
  background:
    radial-gradient(
      ellipse at top center,
      #3a414a 0%,
      #2b3139 35%,
      #1e2329 65%,
      #161a1f 100%
    );
}

body {
  background: transparent;
  font-family: var(--ui-font);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

header{
  width: 100%;
  margin: 0;

  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Aero glass */
  background: linear-gradient(
    to bottom,
    rgba(40, 78, 120, 0.70),   /* brighter steel glass */
    rgba(12, 26, 44, 0.55)     /* deep navy glass (NOT transparent) */
  );
  backdrop-filter: blur(7px) saturate(165%);
  -webkit-backdrop-filter: blur(7px) saturate(165%);

  border: 1px solid rgba(0,0,0,0.55);
  border-radius: 10px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.45),           /* outer drop shadow */

  inset 0 8px 18px -12px rgba(0,0,0,0.45),  /* top edge */
  inset 8px 0 18px -12px rgba(0,0,0,0.35),  /* left edge */
  inset -8px 0 18px -12px rgba(0,0,0,0.35), /* right edge */
  inset 0 -8px 18px -12px rgba(0,0,0,0.55); /* bottom edge */
  
  position: sticky;
  top: 0;
  z-index: 10;

  overflow: hidden; /* needed for the glossy highlight below */
}

header::before{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* glossy top sheen */
  background:
    radial-gradient(120% 80% at 50% 0%,
      rgba(255,255,255,0.35) 0%,
      rgba(255,255,255,0.12) 35%,
      rgba(255,255,255,0.00) 70%
    );
  opacity: 0.9;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -1px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  opacity: 0.8;
  transition: opacity 0.2s;
}
nav a:hover {
  opacity: 1;
}

.content-plate{
  position: relative;

  max-width: 1100px;
  margin: 70px auto 90px auto;
  padding: 60px 70px;

  background:
    linear-gradient(
      to bottom,
      #fdfdfd 0%,
      #f2f4f7 40%,
      #e4e8ee 100%
    );

  border-radius: 10px;

  /* METAL FRAME */
  border: 1px solid rgba(0,0,0,0.55);

  box-shadow:
    0 40px 90px rgba(0,0,0,0.60),       /* big outer depth */
    0 0 0 1px rgba(255,255,255,0.6),   /* crisp light edge */
    inset 0 1px 0 rgba(255,255,255,0.95), /* top shine */
    inset 0 -25px 40px rgba(0,0,0,0.10); /* bottom metal falloff */
}

.hero {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 120px 20px 40px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(90deg, #ff3d7a, #7a5bff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.8;
}

.hero button {
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

/* ===== 2000s “Container Box” (MonsieurDoll vibe, your colors) ===== */
.center-box{
  position: relative;
  max-width: 1180px;
  margin: 40px auto 60px;
  width: 1180px;
  flex: none;
  padding: 40px 44px;
  align-self: stretch;
  min-height: 80vh;

  /* inner panel (keep it in your dark/steel palette, not his ice blue) */
  background: linear-gradient(
    to bottom,
    #1e3653 0%,
    #12263d 40%,
    #0b1624 100%
  );

  background-attachment: fixed; /* <-- shine follows the viewer */
  background-repeat: no-repeat;
  background-size: 100% 100vh;  /* <-- keep the gradient “window” viewport-sized */
  background-color: #0b1624;

  border-radius: 10px;

  /* “frame” line */
  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -28px 40px rgba(0,0,0,0.35);
}

/* outer metallic bezel */
.center-box::before{
  content:"";
  position:absolute;
  inset: -10px;           /* thickness of bezel */
  border-radius: 14px;
  z-index: -1;

  background: linear-gradient(
    to bottom,
    #1e3653 0%,
    #12263d 40%,
    #0b1624 100%
  );

  background-attachment: fixed; /* <-- shine follows the viewer */
  background-repeat: no-repeat;
  background-size: 100% 100vh;  /* <-- keep the gradient “window” viewport-sized */
  background-color: #0b1624;

  border: 1px solid rgba(0,0,0,0.70);

  box-shadow:
    0 35px 80px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -10px 18px rgba(0,0,0,0.60);
}

/* crisp inner bevel line (gives that “boxed UI” look) */
.center-box::after{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 6px;
  pointer-events:none;

  border-top: 1px solid rgba(255,255,255,0.20);
  border-left: 1px solid rgba(255,255,255,0.10);
  border-right: 1px solid rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(0,0,0,0.45);

  opacity: 0.9;
}

.grid {
  width: 100%;
  max-width: 1100px;
  padding: 40px 20px 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.poster-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.poster-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.poster-title {
  padding: 12px;
  font-weight: 600;
}

/* Smaller hero for browse page */
.small-hero {
  padding: 70px 20px 30px;
  text-align: left;
}

.small-hero h1 {
  color: #ffffff;
}

.hero.small-hero h1{
  font-family: "Inter", sans-serif;
  font-size: 40px;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.hero.small-hero p{
  font-size: 18px;
  margin: 0 0 20px 0;
  max-width: none;
  text-align: left;
}

/* Shop display (browse page) */
.shop-grid {
  align-items: start;
}

.product-card {
  overflow: hidden;
  background: #111;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* image window */
.product-media {
  flex: 0 0 700px;           /* fixed width */
  width: 700px;
  aspect-ratio: 1 / 1;       /* fixed square frame */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f12;
}

.product-media img {
  width: 100%;
  aspect-ratio: 4 / 5;  /* consistent window */
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-body{
  padding: 14px 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  justify-content: center;

  /* IMPORTANT: don't force vw widths on browse cards */
  width: 100%;
  flex: 1 1 auto;
}

.product-detail-card .product-body{
  margin: 10px;
  width: auto;
  flex: none;
}

#product-title {
  font-size: 1.35rem;   /* was too huge */
  line-height: 1.15;
  margin: 0 0 8px;
  font-weight: 700;
}

/* Price spacing */
#product-price {
  font-size: 1rem;
  margin-bottom: 14px;
}

.product-title {
  font-weight: 600;
  line-height: 1.25;
  min-height: calc(1.25em * 2);  /* always reserve 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;         /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.size-select {
  width: 100%;
  height: 33px; 
  padding: 0 14px;              /* now it will actually apply */
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: #fff;

  border-radius: 0;             /* no rounded corners */
  /* Center the text */
  text-align: center;
  text-align-last: center;
}

.size-select option{
  text-align: center;
  background: #111; /* keeps the dropdown readable */
  color: #fff;
}

.product-price {
  font-weight: 600;
  opacity: 0.9;
}

.product-btn {
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

/* Product detail page */
.product-detail-grid {
  align-items: start;
}

.product-detail-card {
  grid-column: 1 / -1;
  background: transparent;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(240px, 300px);
  align-items: center;
  justify-content: center;
  column-gap: 50px;
}

.product-detail-media {
  background: #0f0f12;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: contain;
  display: block;
}

.product-detail-body {
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.product-subline {
  opacity: 0.85;
}

.product-back {
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}
.product-back:hover {
  opacity: 1;
  text-decoration: underline;
}

.product-detail-note {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.4;
}

.product-missing {
  padding: 18px;
  opacity: 0.85;
}

.product-price {
  color: #fff;       /* premium cyber-blue */
  font-weight: 500;
}

.price-number {
  color: #00d9ff;      /* cyber blue */
  font-weight: 800;
  letter-spacing: 0.4px;
}

.add-to-cart-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  margin-bottom: 12px;
}

.add-to-cart-btn:hover {
  border-color: #00d9ff;
  color: #00d9ff;
}

/* Make the $29.99 pop while keeping "From" white */
.price-amount{
  color:#00d5ff; /* your nice modern cyan */
  font-weight:700;
}

/* Size dropdown (replaces the variable-height size buttons) */
.size-select{
  width: 100%;
  max-width: 340px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 14px;
}

.product-btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
}

.product-card{
  background: transparent;
}

/* =========================
   UNIFORM POSTER IMAGE SIZING
   ========================= */

/* Grid/list page cards */
.product-card .product-media {
  width: 100%;
  aspect-ratio: 1 / 1;        /* perfect square frame */
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;         /* <-- key change: no cropping */
  object-position: center;
  display: block;
}

/* =========================
   PRODUCT DETAIL PAGE LAYOUT
   ========================= */

.product-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}

/* Left image panel */
.product-detail-card .product-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-card .product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* show full poster without cropping */
  object-position: center;
  display: block;
}

.size-btn:hover {
  background: rgba(140,90,255,0.25);
}

.product-detail-card #product-title{
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0 0 6px;
}

/* Force ONE consistent dropdown style */
.product-detail-card .size-select{
  height: 34px;
  padding: 0 12px;
  font-size: 0.9rem;

  text-align: center;
  text-align-last: center;
}

/* Center the option text too (helps some browsers) */
.product-detail-card .size-select option{
  text-align: center;
}

/* Custom size dropdown (fully styleable) */
.size-dropdown {
  width: 100%;
  position: relative;
}

.size-trigger {
  width: 100%;
  height: 33px;                /* adjust if you want tighter */
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0;            /* match your squared look */
  display: flex;
  align-items: center;
  justify-content: center;     /* center text */
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}

.size-trigger:focus {
  outline: none;
}

.size-dropdown.open .size-trigger{
  box-shadow:
    inset 0 3px 8px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.size-caret {
  position: absolute;
  right: 12px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* The open menu */
.size-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 100%;
  background: rgba(10, 10, 10, 0.92);   /* matches your dark panels */
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0;
  overflow: hidden;
  display: none;
  z-index: 50;
}

.size-dropdown.open .size-menu {
  display: block;
}

/* Menu options */
.size-option {
  width: 100%;
  background: transparent;
  color: #fff;
  border: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  text-align: center;
  font-size: 0.85rem;
}

.size-label{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.size-price{
  margin-right: 3px;
  margin-left: auto; /* pushes price to the right edge */
}

.size-price-amount{
  color: #00d5ff;
  font-weight: 500;
}

.cart-page{
  width: 100%;
  max-width: 1100px;
  padding: 40px 16px 80px;
}

.cart-title{
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.cart-empty{
  opacity: 0.85;
  padding: 18px 0;
}

.cart-items{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item{
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px;
}

.cart-thumb{
  width: 115px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-meta{
  flex: 1 1 auto;
  min-width: 0;
}

.cart-name{
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-sub{
  opacity: 0.8;
  font-size: 0.95rem;
}

.cart-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-summary{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-total{
  font-size: 1.1rem;
  font-weight: 600;
}

.cart-badge{
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(0,213,255,0.18);
  border: 1px solid rgba(0,213,255,0.35);
  color: #00d5ff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.cart-qty{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cart-qty-btn{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.cart-qty-num{
  min-width: 22px;
  text-align: center;
  font-weight: 700;
}

.qty-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.qty-label{
  opacity:0.85;
  font-size:0.9rem;
}

.qty-input{
  width: 64px;
  height: 33px;
  text-align:center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color:#fff;
  border-radius: 0;
}

.cart-qty{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom: 6px;
}

.cart-qty-label{
  opacity:0.8;
  font-size:0.85rem;
}

.cart-qty-input{
  width: 64px;
  height: 30px;
  text-align:center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color:#fff;
  border-radius: 0;
}

.nav-cart{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-icon{
  width: 22px;
  height: 22px;
  /* turn any colored SVG white */
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transform: translateY(5.5px);
}

/* badge positioning */
.nav-cart .cart-badge{
  position: absolute;
  top: -7px;
  right: -14px;
  margin: 0;
}

/* === STEEL PANEL BUTTONS === */

.product-btn,
.hero button,
.buy-btn,
.add-to-cart-btn,
a.product-btn{

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

  padding:12px 26px;
  min-width:170px;

  font-family:inherit;
  font-size:14px;
  font-weight:600;
  letter-spacing:.4px;

  color:#dfe6ee;
  text-decoration:none;

  border-radius:6px;

  background:
    linear-gradient(
      to bottom,
      #2e343b 0%,
      #242a30 50%,
      #1a1f24 100%
    );

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

  box-shadow:
  0 2px 3px rgba(0,0,0,.35),
  0 0 0 1px rgba(0,0,0,.65),          /* dark cut edge */
  0 1px 0 rgba(255,255,255,.05),      /* subtle top rim */
  inset 0 1px 0 rgba(255,255,255,.08),
  inset 0 -1px 0 rgba(0,0,0,.6);

  cursor:pointer;
  transition: all .18s ease;
}

.product-btn:hover,
.hero button:hover,
.buy-btn:hover,
.add-to-cart-btn:hover,
a.product-btn:hover{

  background:
    linear-gradient(
      to bottom,
      #35414b 0%,
      #2a323a 50%,
      #20262c 100%
    );

  box-shadow:
  0 2px 3px rgba(0,0,0,.35),
  0 0 0 1px rgba(0,0,0,.8),
  inset 0 1px 0 rgba(255,255,255,.05),
  inset 0 -1px 0 rgba(0,0,0,.7);
}

button:active,
.product-btn:active,
.hero button:active,
.buy-btn:active,
.add-to-cart-btn:active{

  transform: translateY(0);
  box-shadow:
    inset 0 3px 8px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.qty-input,
.cart-qty-input{
  background:
    linear-gradient(
      to top,
      #2b3138 0%,
      #22282e 50%,
      #191e23 100%
    );

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

  box-shadow:
    0 1px 2px rgba(0,0,0,.28),
    0 0 0 1px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 -1px 0 rgba(0,0,0,.65);

  color: #dfe6ee;
}

.size-trigger{
  background:
    linear-gradient(
      to bottom,
      #2b3138 0%,
      #22282e 50%,
      #191e23 100%
    );

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

  box-shadow:
    0 1px 2px rgba(0,0,0,.28),
    0 0 0 1px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 -1px 0 rgba(0,0,0,.65);

  color: #dfe6ee;
}

.qty-input:focus,
.cart-qty-input:focus,
.size-trigger:focus{
  outline: none;
  box-shadow:
    0 1px 2px rgba(0,0,0,.28),
    0 0 0 1px rgba(50,90,135,.75),
    inset 0 1px 0 rgba(170,200,230,.06),
    inset 0 -1px 0 rgba(0,0,0,.7);
}

.size-trigger:active{
  transform: none;
  box-shadow: inherit;
}

.size-menu{
  background:
    linear-gradient(
      to bottom,
      #2a3138 0%,
      #20262c 100%
    );

  box-shadow:
    0 4px 10px rgba(0,0,0,.28),
    0 0 0 1px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.size-option{
  color: #dfe6ee;
}

.size-option:hover{
  background:
    linear-gradient(
      to bottom,
      rgba(70, 95, 125, .22),
      rgba(35, 45, 55, .18)
    );
}

.hero button,
#buyBtn,
#checkoutBtn{
  background:
    linear-gradient(
      to bottom,
      #334252 0%,
      #26313d 50%,
      #1b232c 100%
    );
}

.hero button:hover,
#buyBtn:hover,
#checkoutBtn:hover{

  background:
    linear-gradient(
      to bottom,
      #3b5168 0%,   /* toned-down highlight */
      #2b3c4d 50%,
      #1e2a36 100%
    );

  box-shadow:
    0 2px 4px rgba(0,0,0,.35),
    0 0 0 1px rgba(55,95,140,.45),   /* softer blue rim */
    inset 0 1px 0 rgba(190,220,245,.10),
    inset 0 -1px 0 rgba(0,0,0,.75);
}

.hero button{
  padding: 17px 42px;
  min-width: 240px;
  font-size: 17px;
}

.cart-item .remove-btn,
.cart-item button.remove,
.cart-remove{
  padding: 11px 44px;
  font-size: 13.5px;
  min-width: auto;
  letter-spacing: .3px;
}

.left-panel-nav{
  position: fixed;
  left: 30px;
  top: 200px;
  width: 220px;
  z-index: 30;
}

.lpn-shell{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.30));
}

/* HTML content sits on top */
.lpn-content{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 26px 18px 22px 56px; /* shifted right like screenshot */
  box-sizing: border-box;
}

.lpn-title{
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(120,165,205,0.95);
  text-shadow: 0 1px 0 rgba(255,255,255,0.70);
  margin-bottom: 10px;
}

.lpn-links a{
  display:block;
  text-decoration:none;

  padding: 12px 12px 12px 42px;
  margin: 8px 0;

  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-size: 12px;

  color: rgba(0,0,0,0.70);

  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.14);

  background: linear-gradient(to bottom,
    rgba(255,255,255,0.90),
    rgba(228,235,243,0.88)
  );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -14px 18px rgba(0,0,0,0.06);

  position: relative;
}

.lpn-links a::before{
  content:"";
  position:absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 6px;

  background: linear-gradient(to bottom,
    rgba(255,255,255,0.80),
    rgba(200,210,220,0.85)
  );
  border: 1px solid rgba(0,0,0,0.18);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -6px 10px rgba(0,0,0,0.10);
}

.lpn-links a:hover{
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.95),
    rgba(214,232,252,0.90)
  );
}

.lpn-links a:active{
  transform: translateY(1px);
}

/* ===== SHOP LAYOUT ===== */

.shop-layout{
  gap:40px;
  align-items:flex-start;
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.shop-main{
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

/* ===== FILTER PANEL ===== */

.filter-panel{
  flex:0 0 260px;
  position: fixed;
  top: 110px;
  transform: translateX(-190px);
  width: 260px;
  padding:26px 22px;

  background:
    linear-gradient(
      to bottom,
      #1e3653 0%,
      #12263d 40%,
      #0b1624 100%
    );

  border-radius:10px;

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

  box-shadow:
    0 25px 60px rgba(0,0,0,0.60),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -22px 35px rgba(0,0,0,0.35);
}

/* inner bevel line */
.filter-panel::after{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:6px;
  pointer-events:none;

  border-top:1px solid rgba(255,255,255,0.20);
  border-left:1px solid rgba(255,255,255,0.10);
  border-right:1px solid rgba(0,0,0,0.35);
  border-bottom:1px solid rgba(0,0,0,0.45);
}

/* ===== FILTER UI ===== */

.filter-group{
  margin-bottom:28px;
}

.filter-title{
  font-size:15px;
  font-weight:700;
  margin-bottom:12px;
  opacity:.9;
}

.filter-link{
  display:block;
  padding:6px 0;
  text-decoration:none;
  color:#dfe6ee;
  opacity:.75;
  font-size:14px;
}

.filter-link:hover{
  opacity:1;
  color:#00d5ff;
}

.filter-link.active,
.shape-row.active{
  opacity: 1;
  color: #fff;
}

.filter-link,
.filter-link:visited{
  color:#dfe6ee;
  text-decoration:none;
}

.shape-row{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: #dfe6ee;
  text-decoration: none;
  font-size: 14px;
  opacity: .75;
}

.shape-row:hover{
  color: #ffffff;
}

.shape-icon{
  position: relative;
  display: block;
  border: 2px solid rgba(210,220,235,0.65);
  background: rgba(255,255,255,0.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 1px 2px rgba(0,0,0,0.30);
}

/* shapes */
.shape-portrait{
  width: 18px;
  height: 26px;
}

.shape-landscape{
  width: 26px;
  height: 18px;
}

.shape-square{
  width: 22px;
  height: 22px;
}

.filter-panel .filter-group:first-of-type .filter-link:first-of-type{
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* =========================
   CONTACT PAGE
   ========================= */

.contact-page{
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 16px 80px;
}

.contact-title{
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-sub{
  opacity: 0.8;
  margin-bottom: 24px;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-row label{
  font-size: 0.9rem;
  opacity: 0.85;
}

.contact-row input,
.contact-row textarea{
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 10px;
  font-family: inherit;
}

.contact-row textarea{
  resize: vertical;
}

/* =========================
   CHECKOUT PAGE
   ========================= */

.checkout-page{
  width: 100%;
  max-width: 1100px;
  padding: 40px 16px 80px;
  margin: 0 auto;
}

.checkout-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.checkout-title{
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.checkout-sub{
  opacity: 0.82;
  margin-bottom: 22px;
}

.checkout-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checkout-section{
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  background: rgba(255,255,255,0.02);
}

.checkout-section-title{
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.checkout-row{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.checkout-row:last-child{
  margin-bottom: 0;
}

.checkout-row label{
  font-size: 0.9rem;
  opacity: 0.88;
}

.checkout-row input{
  height: 38px;
  padding: 0 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 0;
  font-family: inherit;
}

.checkout-optional{
  opacity: 0.6;
}

.checkout-two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-three-col-mobile{
  grid-template-columns: 1fr 1fr 1fr;
}

.checkout-delivery-box{
  padding: 12px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0.9;
}

.checkout-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

.checkout-back-link{
  color: #fff;
  text-decoration: none;
  opacity: 0.82;
}

.checkout-back-link:hover{
  opacity: 1;
}

.checkout-summary{
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  background: rgba(255,255,255,0.03);
  position: sticky;
  top: 95px;
}

.checkout-summary-title{
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.checkout-empty{
  opacity: 0.82;
}

.checkout-items{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-item{
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.checkout-item-thumb{
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.checkout-item-thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-item-meta{
  min-width: 0;
}

.checkout-item-title{
  font-weight: 700;
  margin-bottom: 4px;
}

.checkout-item-sub{
  font-size: 0.9rem;
  opacity: 0.78;
}

.checkout-item-price{
  white-space: nowrap;
  text-align: right;
}

.checkout-summary-totals{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-total-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.checkout-muted{
  opacity: 0.65;
}

.checkout-grand-total{
  position: relative;
  margin-top: 14px;
  padding-top: 18px;
  font-weight: 700;
  border-top: none;
}

.checkout-grand-total::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.16);
}

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

  .checkout-summary{
    position: static;
  }
}

@media (max-width: 640px){
  .checkout-two-col,
  .checkout-three-col-mobile{
    grid-template-columns: 1fr;
  }

  .checkout-actions{
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 1100px){
  .left-panel-nav{ display:none; }
}

/* Mobile */
@media (max-width: 900px) {
  .product-detail-card {
    grid-template-columns: 1fr;
  }

  .product-detail-card .product-media {
    max-height: 55vh;
  }
}

footer {
  width: 100%;
  padding: 30px;
  text-align: center;
  opacity: 0.5;
  font-size: 0.9rem;
}
