:root{
  --bg:#000000; --muted:#dcdcdc; --accent:#fff;
  --max-width:1400px;
  --page-padding:5.6vw;
  --header-height:76px;
  --footer-height:120px;
  font-family: "Poppins", "Helvetica", Arial, system-ui, -apple-system, "Segoe UI", Roboto;
}

*{box-sizing:border-box}
html,body{height:100%;scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--accent);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

body.mobile-nav-open{
  overflow:hidden;
}

/* header */
.site-header{
  position:relative;
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 calc(var(--page-padding));
  z-index:60;
  background:transparent;
  border-bottom:none;
  backdrop-filter:none;
  transition:background 0.3s ease, border-bottom 0.3s ease;
}

.site-header.mobile-nav-active{
  background:rgba(17,17,17,0.98);
  border-bottom:1px solid rgba(255,255,255,0.06);
  backdrop-filter:blur(16px);
}

.site-header.scrolled{
  background:transparent;
  border-bottom:none; 
  backdrop-filter:none;
}

body:not(.landing-page-active) .site-header{
  background:transparent;
  border-bottom:none;
  backdrop-filter:none;
}

.site-header .nav-left{
  position:relative;
  flex-shrink: 0;
}

.site-header .brand{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.site-header .brand img{height:27px;display:block}

.nav-left{
  display:flex;
  gap:28px;
  align-items:center;
  font-family: "Poppins", "Helvetica", Arial, sans-serif;
  font-size:clamp(12px, 1.5vw, 14px);
}

.nav-link{
  color:var(--accent);
  text-decoration:none;
  opacity:0.95;
  transition:opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor:pointer;
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.nav-link::after{
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background-color:transparent;
  transition:background-color 0.2s ease;
  flex-shrink:0;
}

.nav-link:hover{
  opacity:1;
}

.nav-link.active::after{
  background-color:var(--accent);
}

/* burger */
.burger{
  display:none;
  background:none;
  border:0;
  padding:8px;
  cursor:pointer;
  z-index:61;
  position:absolute;
  left:calc(var(--page-padding));
  font-size:24px;
  color:var(--accent);
  transition:all 0.3s ease;
  width:40px;
  height:40px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.burger-menu,
.burger-close{
  display:block;
  transition:opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position:absolute;
}

.burger-menu{
  opacity:1;
}

.burger-close{
  opacity:0;
}

.burger.open .burger-menu{
  opacity:0;
}

.burger.open .burger-close{
  opacity:1;
}

.burger:hover{
  background:rgba(255,255,255,0.05);
  border-radius:4px;
}

/* language toggle */
.lang-separator{
  opacity:0.4;
}

/* main content */
main{
  min-height:100vh;
  animation:fadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

@keyframes bgFadeIn{
  from{opacity:0}
  to{opacity:1}
}

@keyframes dropdownSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* landing page */
.landing-page{
  padding:0;
  min-height:auto;
  display:flex;
  flex-direction:column;
  overflow:visible;
}

/* page sections */
.shop-page,
.archive-page,
.gallery-page,
.inverted-exe-page{
  min-height:calc(100vh - 76px);
  padding:60px calc(var(--page-padding));
}

.hero{
  min-height:100vh;
  display:flex;
  margin-top: -120px;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  flex:1;
  width:100%;
  z-index:1;
}

.hero .bg-image{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background-image:url("../image/banner.png");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  background-repeat:no-repeat;
  filter:brightness(0.35);
  z-index:0;
}

/* Mobile background fix */
@media (max-width:720px){
  .hero .bg-image{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background-attachment:scroll;
    background-size:cover;
    background-position:center;
  }
}

.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:48px;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-left:calc(var(--page-padding));
  padding-right:calc(var(--page-padding));
}

.text{
  text-align:center;
  width:100%;
  max-width:600px;
}

.text{
  font-family: "Poppins";
  font-size: clamp(12px, 2vw, 16px);
  margin:0;
  text-align: center;
  letter-spacing:0.2em;
}

.text h1{

  line-height:1.2;
}

.btn{
  display:inline-block;
  padding:12px 26px;
  border:2px solid #fff;
  color:#fff;
  border-radius: 24px;
  text-decoration:none;
  transition:all 0.22s;
  font-family: "Poppins", "Helvetica", Arial, system-ui;
  text-transform:lowercase;
  cursor:pointer;
  font-size: clamp(12px, 1.5vw, 14px);
  white-space:nowrap;
}
.btn:hover{background:#fff;color:#111;transform:translateY(-2px)}

.cover img{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 24px 40px rgba(0,0,0,.45));
  border-radius:2px;
}

/* film grain overlay */
.film-grain{
  pointer-events:none;
  position:fixed;inset:0;z-index:0;
  background-image:
    radial-gradient(rgba(255,255,255,0.02) 1px, rgba(255,255,255,0) 1px);
  background-size:40px 40px;
  opacity:0.06;
  animation:grain 1s steps(2) infinite;
  mix-blend-mode:overlay;
}
@keyframes grain{
  0%{transform:translate(0,0)}
  50%{transform:translate(10px,6px)}
  100%{transform:translate(0,0)}
}

/* featured section */
.featured{
  padding:80px calc(var(--page-padding));
  background:rgba(0,0,0,0.3);
}

.featured-grid{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:32px;
}

.featured-item{
  display:flex;
  flex-direction:column;
  gap:16px;
  transition:transform 0.3s ease;
}

.featured-item:hover{transform:translateY(-4px)}

.featured-img{
  width:100%;
  height:280px;
  overflow:hidden;
  border-radius:2px;
  background:#1a1a1a;
}

.featured-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.4s ease;
}

.featured-item:hover .featured-img img{
  transform:scale(1.05);
}

.featured-item h3{
  font-family: "Poppins", "Helvetica", Arial, sans-serif;
  font-size:20px;
  font-weight:400;
  margin:0;
  text-transform:lowercase;
  letter-spacing:0.05em;
}

.featured-item p{
  font-size:14px;
  color:var(--muted);
  margin:0;
}

.featured-item a{
  display:inline-block;
  color:var(--accent);
  text-decoration:none;
  font-size:13px;
  font-family: "Poppins", "Helvetica", Arial, sans-serif;
  transition:all 0.2s;
  width:fit-content;
}

.featured-item a:hover{color:#888;transform:translateX(4px)}

/* page header */
.page-header{
  max-width:var(--max-width);
  margin:-30px auto 60px;
  text-align:left;
}

.page-header h2{
  font-family: "Poppins", "Helvetica", Arial, sans-serif;
  font-weight:400;
  font-size:clamp(24px,4vw,36px);
  margin:16px 0 12px 0;
  letter-spacing:-0.01em;
}

.page-header p{
  font-size:14px;
  color:var(--muted);
  margin:0 0 16px 0;
}

/* shop page */
.shop-page{
  display:block !important;
}

.shop-grid{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}

.shop-item{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.shop-image{
  position:relative;
  width:100%;
  aspect-ratio:1;
  overflow:hidden;
  background:#0a0a0a;
  cursor:pointer;
  transition:all 0.3s ease;
}

.shop-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.4s ease;
}

.shop-image:hover img{
  transform:scale(1.05);
}

.shop-overlay{
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity 0.3s ease;
}

.shop-image:hover .shop-overlay{
  opacity:1;
}

.preview-btn{
  background:var(--accent);
  color:var(--bg);
  padding:10px 24px;
  border-radius:2px;
  font-size:13px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.05em;
  cursor:pointer;
  transition:all 0.2s;
}

.preview-btn:hover{
  transform:scale(1.05);
}

.shop-info{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.shop-info h3{
  font-size:14px;
  font-weight:500;
  margin:0;
  text-transform:lowercase;
  letter-spacing:0.05em;
}

.shop-price{
  font-size:13px;
  font-weight:500;
  color:var(--accent);
}

.shop-info p{
  font-size:12px;
  font-weight:400;
  color:rgba(255,255,255,0.5);
  margin:0;
  line-height:1.4;
}

/* Simplified Shop Items - Image + Title Only */
.shop-item-simple{
  display:flex;
  flex-direction:column;
  gap:14px;
  text-decoration:none;
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position:relative;
}

.shop-item-simple:hover{
  transform:translateY(-6px);
}

.shop-item-link{
  display:flex;
  flex-direction:column;
  gap:14px;
  text-decoration:none;
}

.shop-image-simple{
  width:100%;
  aspect-ratio:1;
  background:#0a0a0a;
  border-radius:4px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 4px 12px rgba(0,0,0,0.4);
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shop-image-simple img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display:block;
}

.shop-item-simple:hover .shop-image-simple{
  border-color:rgba(255,255,255,0.2);
  box-shadow:0 8px 24px rgba(0,0,0,0.5);
}

.shop-item-simple:hover .shop-image-simple img{
  transform:scale(1.08);
}

.shop-item-title{
  font-size:14px;
  font-weight:500;
  margin:0;
  text-transform:lowercase;
  letter-spacing:0.05em;
  color:rgba(255,255,255,0.85);
  transition:color 0.3s ease;
  text-align:center;
  line-height:1.4;
}

.shop-item-simple:hover .shop-item-title{
  color:var(--accent);
}

.shop-item-price{
  font-size:14px;
  font-weight:500;
  color:#667eea;
  text-align:center;
  text-transform:lowercase;
  letter-spacing:0.05em;
}

.shop-item-cart-btn{
  padding:10px 12px;
  background:rgba(255,255,255,0.08);
  color:var(--accent);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:2px;
  cursor:pointer;
  font-family:"Poppins", "Helvetica", Arial, sans-serif;
  font-size:13px;
  font-weight:500;
  transition:all 0.2s;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  text-transform:lowercase;
  letter-spacing:0.05em;
}

.shop-item-cart-btn:hover{
  background:rgba(255,255,255,0.15);
  border-color:rgba(255,255,255,0.3);
}

.shop-item-cart-btn:active{
  transform:scale(0.98);
}

/* Product Detail Page */
.product-detail-page{
  display:block !important;
}

.detail-container{
  max-width:100%;
  margin:0;
  padding:60px calc(var(--page-padding)) 120px calc(var(--page-padding));
  display:flex;
  justify-content:center;
}

.back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.7);
  text-decoration:none;
  font-size:14px;
  font-weight:400;
  text-transform:lowercase;
  letter-spacing:0.02em;
  margin-bottom:40px;
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position:absolute;
  left:calc(var(--page-padding));
  top:120px;
  z-index:10;
}

.back-link:hover{
  gap:12px;
  color:var(--accent);
}

.detail-content{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:80px;
  align-items:start;
  max-width:var(--max-width);
  width:100%;
  position:relative;
}

.detail-gallery-wrapper{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:24px;
  top:0;
  sticky:top;
  padding-top:20px;
}

.detail-main-image{
  width:100%;
  aspect-ratio:1;
  background:rgba(255,255,255,0.02);
  border-radius:0px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  box-shadow:inset 0 0 40px rgba(255,255,255,0.02);
  transition:all 0.3s ease;
}

.detail-main-image:hover{
  border-color:rgba(255,255,255,0.15);
  box-shadow:inset 0 0 40px rgba(255,255,255,0.04);
}

.detail-main-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.detail-gallery-nav{
  display:flex;
  align-items:center;
  gap:16px;
  justify-content:flex-start;
  flex-wrap:wrap;
}

.detail-thumbnails{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-start;
  flex:1;
}

.detail-thumbnail{
  width:70px;
  height:70px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:0px;
  cursor:pointer;
  overflow:hidden;
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink:0;
  opacity:0.6;
}

.detail-thumbnail img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.detail-thumbnail:hover{
  border-color:rgba(255,255,255,0.3);
  opacity:0.9;
  transform:translateY(-2px);
}

.detail-thumbnail.active{
  border-color:var(--accent);
  opacity:1;
  box-shadow:0 8px 24px rgba(255,255,255,0.1);
}

.detail-info{
  display:flex;
  flex-direction:column;
  gap:32px;
}

.detail-header{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-bottom:0;
  border-bottom:none;
}

.detail-header h1{
  font-size:clamp(28px, 5vw, 48px);
  font-weight:400;
  font-family:"Poppins", sans-serif;
  margin:0;
  text-transform:lowercase;
  letter-spacing:0.02em;
  line-height:1.3;
  color:var(--accent);
}

.detail-meta-top{
  display:flex;
  gap:16px;
  font-size:11px;
  font-weight:400;
  font-family:"Poppins", sans-serif;
  color:rgba(255,255,255,0.5);
  text-transform:lowercase;
  letter-spacing:0.02em;
  align-items:center;
}

.meta-category{
  color:rgba(255,255,255,0.7);
  font-weight:400;
  font-family:"Poppins", sans-serif;
  padding:4px 10px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:0px;
}

.meta-date{
  color:rgba(255,255,255,0.5);
  font-weight:400;
  font-family:"Poppins", sans-serif;
}

.detail-meta-designer{
  font-size:11px;
  font-weight:400;
  font-family:"Poppins", sans-serif;
  color:rgba(255,255,255,0.5);
  text-transform:lowercase;
  letter-spacing:0.02em;
  margin-top:8px;
}

.detail-price-section{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin:0;
  padding:24px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.price-value{
  font-size:clamp(24px, 4vw, 36px);
  font-weight:500;
  font-family:"Poppins", sans-serif;
  color:var(--accent);
  letter-spacing:-0.02em;
  margin:0;
}

.detail-description{
  display:flex;
  flex-direction:column;
  gap:0;
  line-height:1.8;
  margin:0;
  padding:0;
}

.detail-description p{
  font-size:15px;
  font-weight:300;
  font-family:"Poppins", sans-serif;
  color:rgba(255,255,255,0.7);
  margin:0;
  padding:0;
}

/* Available Sizes Pills */
.detail-sizes{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:24px 0;
  border-top:1px solid rgba(255,255,255,0.08);
}

.sizes-label{
  font-size:11px;
  font-weight:500;
  font-family:"Poppins", sans-serif;
  text-transform:lowercase;
  letter-spacing:0.02em;
  color:rgba(255,255,255,0.6);
  margin:0;
  padding:0;
}

.sizes-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0;
  padding:0;
}

.size-pill{
  padding:8px 14px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:0px;
  font-size:11px;
  font-weight:400;
  font-family:"Poppins", sans-serif;
  text-transform:uppercase;
  letter-spacing:0.02em;
  color:rgba(255,255,255,0.7);
  cursor:default;
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.size-pill:hover{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.2);
  color:var(--accent);
}

.detail-actions{
  display:flex;
  gap:12px;
  flex-direction:column;
  margin-top:0;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.08);
}

.action-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 24px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
}

.action-btn{
  padding:14px 24px;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.05);
  color:rgba(255,255,255,0.85);
  border-radius:0px;
  font-size:13px;
  font-weight:400;
  font-family:"Poppins", sans-serif;
  text-transform:lowercase;
  letter-spacing:0.02em;
  cursor:pointer;
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
}

.action-btn:hover{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.25);
  color:var(--accent);
}

/* TeePublic Redirect Button */
.action-btn.buy-on-teepublic {
  background:rgba(255, 165, 0, 0.1);
  border-color:rgba(255, 165, 0, 0.25);
  color:#ffa500;
}

.action-btn.buy-on-teepublic:hover {
  background:rgba(255, 165, 0, 0.2);
  border-color:rgba(255, 165, 0, 0.4);
  color:#ffb84d;
}

.action-btn.buy-on-tees {
  background:rgba(76, 175, 80, 0.1);
  border-color:rgba(76, 175, 80, 0.25);
  color:#4caf50;
}

.action-btn.buy-on-tees:hover {
  background:rgba(76, 175, 80, 0.2);
  border-color:rgba(76, 175, 80, 0.4);
  color:#66bb6a;
}

.detail-meta{
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.1);
}

.meta-info{
  font-size:12px;
  color:rgba(255,255,255,0.5);
  margin:0;
}

/* Image Lightbox */
.image-lightbox{
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.95);
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.image-lightbox.active{
  display:flex;
}

.lightbox-content{
  position:relative;
  max-width:90vw;
  max-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox-close{
  position:absolute;
  top:-40px;
  right:0;
  background:none;
  border:none;
  color:var(--accent);
  font-size:32px;
  cursor:pointer;
  transition:color 0.2s;
  z-index:10;
}

.lightbox-close:hover{
  color:rgba(255,255,255,0.7);
}

.lightbox-content img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  border-radius:2px;
  border:1px solid rgba(255,255,255,0.1);
}

/* Gallery Modal - Professional Gallery Viewer */
.gallery-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.98);
  z-index:1001;
  padding:20px;
  overflow-y:auto;
}

.gallery-modal.active{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.gallery-modal-content{
  position:relative;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  gap:20px;
  padding:0;
  justify-content:center;
  align-items:center;
}

.gallery-modal-close{
  position:absolute;
  top:10px;
  right:20px;
  background:none;
  border:none;
  color:var(--accent);
  font-size:36px;
  cursor:pointer;
  transition:color 0.2s;
  z-index:10;
  padding:0;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.gallery-modal-close:hover{
  color:rgba(255,255,255,0.7);
}

.gallery-modal-main{
  display:grid;
  grid-template-columns:50px 1fr 50px;
  gap:30px;
  align-items:center;
  justify-items:center;
  width:90vw;
  height:80vh;
  max-width:1200px;
}

.gallery-modal-image-wrapper{
  display:flex;
  flex-direction:column;
  gap:15px;
  width:100%;
  height:100%;
  max-width:600px;
  max-height:600px;
  justify-self:center;
}

.gallery-modal-image-container{
  position:relative;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  border-radius:2px;
  border:1px solid rgba(255,255,255,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:0 8px 32px rgba(0,0,0,0.6);
}

.gallery-modal-image-container img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:20px;
}

.gallery-modal-nav{
  width:50px;
  height:50px;
  border:2px solid rgba(255,255,255,0.2);
  background:transparent;
  color:var(--accent);
  border-radius:2px;
  cursor:pointer;
  transition:all 0.2s;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.gallery-modal-nav:hover{
  border-color:var(--accent);
  background:rgba(255,255,255,0.05);
  transform:scale(1.05);
}

.gallery-modal-nav:active{
  transform:scale(0.95);
}

.gallery-modal-info{
  display:flex;
  flex-direction:column;
  gap:20px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,0.1);
}

.gallery-modal-info h2{
  font-size:clamp(20px, 3vw, 28px);
  font-weight:500;
  margin:0;
  text-transform:lowercase;
  letter-spacing:0.05em;
  color:var(--accent);
}

.gallery-modal-info p{
  font-size:14px;
  font-weight:400;
  line-height:1.7;
  color:rgba(255,255,255,0.8);
  margin:0;
}

/* Gallery Thumbnails */
.gallery-modal-thumbnails{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}

.gallery-modal-thumb{
  width:50px;
  height:50px;
  border:2px solid rgba(255,255,255,0.2);
  border-radius:2px;
  cursor:pointer;
  overflow:hidden;
  transition:all 0.2s;
  flex-shrink:0;
  padding:0;
  background:none;
}

.gallery-modal-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-modal-thumb:hover{
  border-color:var(--accent);
  transform:scale(1.1);
}

.gallery-modal-thumb.active{
  border-color:var(--accent);
  box-shadow:0 0 16px rgba(255,255,255,0.3);
}

/* Gallery Minilist - Hidden */
.gallery-minilist-wrapper{
  display:none;
}

/* Gallery Item Navigation Dots */
.gallery-item-nav{
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
  padding-top:12px;
}

.item-nav-dot{
  width:10px;
  height:10px;
  border:1px solid rgba(255,255,255,0.3);
  border-radius:50%;
  background:transparent;
  cursor:pointer;
  transition:all 0.2s;
  padding:0;
}

.item-nav-dot:hover{
  border-color:var(--accent);
  transform:scale(1.2);
}

.item-nav-dot.active{
  background:var(--accent);
  border-color:var(--accent);
}

/* Product Preview Modal */
.product-preview-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.95);
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.product-preview-modal.active{
  display:flex;
}

.preview-content{
  position:relative;
  background:rgba(17,17,17,0.8);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:4px;
  max-width:900px;
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:40px;
  max-height:90vh;
  overflow-y:auto;
}

.preview-close{
  position:absolute;
  top:20px;
  right:20px;
  background:none;
  border:none;
  color:var(--accent);
  font-size:32px;
  cursor:pointer;
  transition:color 0.2s;
  z-index:10;
}

.preview-close:hover{
  color:var(--muted);
}

.preview-image-container{
  width:100%;
  aspect-ratio:1;
  background:#0a0a0a;
  border-radius:4px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.preview-image-container img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.preview-info{
  display:flex;
  flex-direction:column;
  gap:24px;
  padding:20px 0;
}

.preview-info h2{
  font-size:28px;
  font-weight:500;
  margin:0;
  text-transform:lowercase;
  letter-spacing:0.05em;
  line-height:1.3;
}

.preview-price{
  display:flex;
  gap:12px;
  align-items:baseline;
  font-size:18px;
  font-weight:500;
  color:var(--accent);
}

.price-label{
  font-size:14px;
  color:rgba(255,255,255,0.6);
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:0.05em;
}

.preview-info p{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,0.7);
  margin:0;
  font-weight:400;
}

.preview-actions{
  display:flex;
  gap:12px;
  margin-top:12px;
}

.add-to-cart-btn,
.add-to-wishlist-btn{
  flex:1;
  padding:14px 24px;
  border:2px solid var(--accent);
  background:var(--accent);
  color:var(--bg);
  border-radius:2px;
  font-size:13px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.05em;
  cursor:pointer;
  transition:all 0.2s;
  font-family:"Poppins", sans-serif;
}

.add-to-cart-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(255,255,255,0.1);
}

/* Image Gallery Navigation */
.preview-gallery-wrapper{
  position:relative;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.image-counter{
  position:absolute;
  bottom:12px;
  right:12px;
  background:rgba(0,0,0,0.7);
  color:var(--accent);
  padding:6px 12px;
  border-radius:4px;
  font-size:12px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.05em;
}

.gallery-nav{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:16px;
  justify-content:center;
  flex-wrap:wrap;
}

.nav-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.2);
  color:var(--accent);
  cursor:pointer;
  transition:all 0.2s;
  border-radius:2px;
  font-size:18px;
  font-weight:500;
}

.nav-btn:hover{
  background:rgba(255,255,255,0.15);
  border-color:var(--accent);
  transform:scale(1.05);
}

.thumbnails{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
  max-width:300px;
}

.thumbnail{
  width:50px;
  height:50px;
  border:2px solid rgba(255,255,255,0.2);
  border-radius:2px;
  cursor:pointer;
  overflow:hidden;
  transition:all 0.2s;
  flex-shrink:0;
}

.thumbnail img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.thumbnail:hover{
  border-color:var(--accent);
  transform:scale(1.05);
}

.thumbnail.active{
  border-color:var(--accent);
  box-shadow:0 0 12px rgba(255,255,255,0.3);
}

/* archive page */
.archive-page{
  display:block !important;
}

.archive-grid{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}

.archive-item{
  display:flex;
  flex-direction:column;
  gap:16px;
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.3);
}

.archive-item:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.2);
  box-shadow:0 12px 32px rgba(0,0,0,0.5);
}

.archive-item:hover .archive-image img{
  filter:grayscale(0%);
}

.archive-image{
  width:100%;
  aspect-ratio:1;
  overflow:hidden;
  background:#0a0a0a;
  border-radius:0;
}

.archive-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:grayscale(100%);
  transition:filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform:scale(1);
}

.archive-item:hover .archive-image img{
  transform:scale(1.08);
}

.archive-info{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.archive-info h3{
  font-size:15px;
  font-weight:500;
  margin:0;
  text-transform:lowercase;
  letter-spacing:0.05em;
}

.archive-category{
  font-size:12px;
  color:rgba(255,255,255,0.5);
  text-transform:uppercase;
  letter-spacing:0.1em;
  margin:0;
}

.archive-info p{
  font-size:13px;
  color:rgba(255,255,255,0.6);
  margin:0;
  line-height:1.5;
  font-weight:400;
}

.archive-info time{
  font-size:12px;
  color:rgba(255,255,255,0.4);
  margin-top:4px;
}

/* Archive Simple Layout (Public Page) */
.archive-simple{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.archive-item-simple{
  display:flex;
  flex-direction:column;
  gap:14px;
  text-decoration:none;
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.archive-item-simple:hover{
  transform:translateY(-4px);
}

.archive-image-simple{
  width:100%;
  aspect-ratio:1;
  background:#0a0a0a;
  border-radius:4px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 4px 12px rgba(0,0,0,0.4);
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.archive-image-simple img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter:grayscale(100%) brightness(0.85);
}

.archive-item-simple:hover .archive-image-simple{
  border-color:rgba(255,255,255,0.2);
  box-shadow:0 8px 24px rgba(0,0,0,0.5);
}

.archive-item-simple:hover .archive-image-simple img{
  transform:scale(1.08);
  filter:grayscale(50%) brightness(0.95);
}

.archive-item-title{
  font-size:14px;
  font-weight:500;
  margin:0;
  text-transform:lowercase;
  letter-spacing:0.05em;
  color:rgba(255,255,255,0.8);
  transition:color 0.3s ease;
  text-align:center;
  line-height:1.4;
}

.archive-item-simple:hover .archive-item-title{
  color:var(--accent);
}

/* gallery page */
.gallery-page{
  display:block !important;
}

.gallery-grid{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:4px;
  background:#0a0a0a;
  aspect-ratio:1;
  cursor:pointer;
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 4px 12px rgba(0,0,0,0.4);
}

.gallery-item:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,0.2);
  box-shadow:0 12px 32px rgba(0,0,0,0.6);
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img{
  transform:scale(1.08);
}

/* Gallery Item with Overlay */
.gallery-image-wrapper{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}

.gallery-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.gallery-item-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter:none;
}

.gallery-item:hover .gallery-item-overlay{
  opacity:1;
}

.gallery-item-overlay i{
  font-size:36px;
  color:var(--accent);
  transition:transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  opacity:0.8;
}

.gallery-item:hover .gallery-item-overlay i{
  transform:scale(1.15);
  opacity:1;
}

.gallery-item-title{
  display:none;
}

.gallery-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding:20px;
  opacity:0;
  transform:translateY(20px);
  transition:all 0.3s ease;
  color:var(--accent);
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
  transform:translateY(0);
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
  transform:translateY(0);
}

.gallery-overlay h4{
  font-size:14px;
  font-weight:500;
  margin:0 0 4px 0;
  text-transform:lowercase;
  letter-spacing:0.05em;
}

.gallery-overlay p{
  font-size:12px;
  color:rgba(255,255,255,0.7);
  margin:0;
  line-height:1.4;
  font-weight:400;
}



.gallery-item{
  position:relative;
  overflow:hidden;
  aspect-ratio:1;
  cursor:pointer;
}

.gallery-img{
  width:100%;
  height:100%;
  overflow:hidden;
}

.gallery-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.4s ease;
}

.gallery-item:hover .gallery-img img{
  transform:scale(1.1);
}

.gallery-item h4{
  position:absolute;
  bottom:0;left:0;right:0;
  background:linear-gradient(transparent, rgba(0,0,0,0.8));
  padding:40px 16px 16px;
  margin:0;
  font-family: "Poppins", "Helvetica", Arial, sans-serif;
  font-size:14px;
  font-weight:500;
  text-transform:lowercase;
  transform:translateY(20px);
  transition:transform 0.3s ease;
}

.gallery-item:hover h4{
  transform:translateY(0);
}

/* inverted.exe page */
.inverted-exe-page{
  display:block !important;
  padding:60px calc(var(--page-padding));
  min-height:calc(100vh - 76px - 120px);
}

.inverted-exe-container{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:flex-start;
}

.inverted-exe-left{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.inverted-exe-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:20px;
}

.inverted-exe-right{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.inverted-exe-section{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.inverted-exe-section h3{
  font-family: "Poppins", "Helvetica", Arial, sans-serif;
  font-size:18px;
  font-weight:400;
  margin:0;
  text-transform:lowercase;
}

.inverted-exe-section p{
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
  margin:0;
}

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

.contact-btn{
  display:inline-block;
  padding:12px 26px;
  border:2px solid var(--accent);
  color:var(--accent);
  border-radius:24px;
  text-decoration:none;
  transition:all 0.22s;
  font-family: "Poppins", "Helvetica", Arial, system-ui;
  text-transform:lowercase;
  cursor:pointer;
  font-size:13px;
  background:transparent;
}

.contact-btn:hover{
  background:var(--accent);
  color:var(--bg);
  transform:translateY(-2px);
}

.contact-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border:2px solid var(--accent);
  border-radius:50%;
  text-decoration:none;
  transition:all 0.22s;
  background:transparent;
}

.contact-link:hover{
  background:var(--accent);
  transform:translateY(-2px);
}

.contact-link i{
  font-size:20px;
  color:var(--accent);
  transition:color 0.22s;
}

.contact-link:hover i{
  color:var(--bg);
}

@media (max-width:767px){
  .inverted-exe-page{
    padding:60px calc(var(--page-padding)) 0;
  }
  
  .inverted-exe-container{
    grid-template-columns:1fr;
    gap:40px;
  }
}

.release-item{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:16px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.release-item:last-child{
  border-bottom:none;
}

.release-item .date{
  font-family: "Poppins", "Helvetica", Arial, sans-serif;
  font-size:12px;
  color:var(--muted);
}

.release-item .title{
  font-size:13px;
  text-transform:lowercase;
  font-weight:500;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.contact-info p{
  margin:0;
  font-size:13px;
  font-weight:400;
}

.contact-info a{
  color:var(--accent);
  text-decoration:none;
  opacity:0.8;
  transition:opacity 0.2s;
}

.contact-info a:hover{
  opacity:1;
}

/* team members */
.team-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.team-member{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:16px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.team-member:last-child{
  border-bottom:none;
}

.team-member strong{
  font-size:13px;
  color:var(--accent);
  text-transform:lowercase;
}

.team-member span{
  font-size:13px;
  color:var(--muted);
}

/* partners */
.partner-list{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:16px;
  margin-top:12px;
}

.partner-item{
  padding:16px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:2px;
  font-size:13px;
  text-transform:lowercase;
  text-align:center;
  transition:all 0.2s;
}

.partner-item:hover{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.12);
}

/* footer */
.footer{
  padding:0;
  text-align:left;
  position:relative;
  z-index:10;
  background:rgba(17,17,17,0.95);
  backdrop-filter:blur(8px);
  margin:0 calc(var(--page-padding));
  padding-top:40px;
  padding-bottom:40px;
  padding-left:0;
  padding-right:0;
}

.landing-footer{
  background:transparent;
  backdrop-filter:none;
  padding:0;
  position:relative;
  z-index:10;
  text-align:left;
  margin:0 calc(var(--page-padding));
  padding-top:40px;
  padding-bottom:40px;
}

.footer p{
  margin:6px 0;
  font-family: "Poppins", "Helvetica", Arial, sans-serif;
  font-size:12px;
  color:var(--muted);
}

/* mobile nav overlay */
.mobile-nav-overlay{
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.98);
  z-index:50;
  padding:100px calc(var(--page-padding)) 40px calc(var(--page-padding));
  flex-direction:column;
  gap:0;
  max-height:none;
  height:100vh;
  overflow-y:auto;
  backdrop-filter:blur(16px);
  animation:slideInDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom:none;
}

@keyframes slideInDown{
  from{
    transform:translateY(-20px);
    opacity:0;
  }
  to{
    transform:translateY(0);
    opacity:1;
  }
}

.mobile-nav-overlay.open{
  display:flex;
}

.mobile-link{
  display:flex;
  align-items:center;
  gap:8px;
  padding:28px 0;
  padding-left:0;
  font-size:18px;
  color:var(--accent);
  text-decoration:none;
  font-family: "Poppins", "Helvetica", Arial, sans-serif;
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding-left 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform:lowercase;
  letter-spacing:0.05em;
  text-align:left;
}

.mobile-link::after{
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background-color:transparent;
  transition:background-color 0.2s ease;
  flex-shrink:0;
}

.mobile-link:hover{
  color:var(--muted);
  padding-left:12px;
}

.mobile-link.active::after{
  background-color:var(--accent);
}

.mobile-link:last-child{
  border-bottom:none;
}

.mobile-group a:hover{
  color:var(--accent);
}

/* Mobile header styles */
@media (max-width:720px){
  .site-header{
    padding:12px 4vw;
  }

  .burger{
    display:flex;
  }

  .nav-left{
    display:none;
  }

  .nav-right {
    position: relative;
    padding: 0;
  }

  .nav-right .profile-link{
    display: block !important;
  }

  .site-header{
    background: #000000;
  }

  .lang-toggle{
    position:static;
    gap:6px;
  }

  .lang-btn{
    padding:4px 6px;
    font-size:13px;
  }

  .brand img{
    height:24px;
  }
}

@media (max-width:480px){
  .site-header{
    padding:8px 3vw;
    background: #000000;
  }

  .burger{
    left:3vw;
    padding:6px;
  }

  .nav-right {
    position: relative;
    padding: 0;
  }

  .nav-right .profile-link{
    display: block !important;
  }

  .brand img{
    height:20px;
  }
}

/* responsive */
@media (max-width:980px){
  .hero-inner{
    gap:32px;
  }
}

/* Tablet responsive (768px - 1024px) */
@media (max-width:1024px) and (min-width:769px){
  .shop-grid{grid-template-columns:repeat(3, 1fr);gap:20px}
  .gallery-grid{grid-template-columns:repeat(3, 1fr);gap:20px}
  .archive-grid{grid-template-columns:repeat(3, 1fr);gap:20px}
  .archive-simple{grid-template-columns:repeat(3, 1fr);gap:18px}
}

/* Tablet responsive */
@media (max-width:768px){
  :root{
    --page-padding:4vw;
  }
  .hero{
    min-height:100vh;
    padding:0;
  }
  .hero-inner{
    gap:24px;
    padding:80px 4vw;
  }
  .cover img{
    max-width:380px;
  }
  .preview-content{
    grid-template-columns:1fr;
    gap:24px;
    padding:24px;
  }
  .thumbnails{
    max-width:100%;
  }
  .gallery-nav{
    gap:8px;
  }
  .detail-content{
    grid-template-columns:1fr;
    gap:40px;
  }
  .detail-container{
    padding:60px 4vw 100px;
  }
  .back-link{
    left:4vw;
    font-size:13px;
    top:100px;
  }
  .lightbox-close{
    top:10px;
    right:10px;
  }
  }


@media (max-width:720px){
  :root{
    --page-padding:4vw;
  }
  .nav-left{
    display:none;
  }
  .burger{
    display:flex;
    position:relative;
    left:auto;
    margin-right:auto;
  }
  .site-header{
    padding:12px 4vw;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }
  .nav-right{
    margin-left:auto;
  }
  .lang-btn{
    padding:6px 10px;
  }
  .lang-separator{
    font-size:clamp(10px, 2vw, 12px);
  }
  .hero{
    min-height:100vh;
    padding:0;
    margin-top:0;
    margin-left:0;
    margin-right:0;
  }
  .hero-inner{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:96px 4vw 60px 4vw;
    gap:24px;
  }
  .text{
    order:2;
    text-align:center;
  }
  .cover{
    order:1;
    margin-bottom:12px;
  }
  .cover img{max-width:280px}
  .btn{
    padding:14px 28px;
    font-size:clamp(12px, 1.5vw, 14px);
  }
  .featured{padding:60px 4vw}
  .featured-grid{grid-template-columns:1fr}
  .page{padding:40px 4vw}
  .shop-grid{grid-template-columns:repeat(2, 1fr);gap:16px}
  .archive-grid{grid-template-columns:repeat(2, 1fr);gap:16px}
  .archive-simple{grid-template-columns:repeat(2, 1fr);gap:14px}
  .gallery-grid{grid-template-columns:repeat(2, 1fr);gap:16px}
  .inverted-exe-content{grid-template-columns:1fr;gap:40px}
  .footer p{
    margin:6px 0;
    margin-left: 12px;
    font-size:clamp(11px, 1.5vw, 12px);
  }
  .preview-content{
    padding:20px;
  }
  .preview-image-container{
    margin-bottom:20px;
  }
  .preview-actions{
    flex-direction:column;
  }
  .detail-header h1{
    font-size:clamp(20px, 5vw, 28px);
  }
  .detail-actions{
    flex-direction: column;
  }
  .back-link{
    left:4vw;
    top:100px;
    font-size:14px;
  }
  .action-btn{
    padding:14px 20px;
    font-size:12px;
  }
  .detail-thumbnail{
    width:50px;
    height:50px;
  }
  .thumbnail{
    width:40px;
    height:40px;
  }
  .gallery-modal-main{
    grid-template-columns:40px 1fr 40px;
    gap:12px;
    min-height:auto;
    width:95vw;
    height:auto;
    max-width:none;
  }
  .gallery-modal-image-container{
    aspect-ratio:1;
    max-height:50vh;
  }
  .gallery-modal-image-wrapper{
    max-width:none;
    max-height:none;
  }
  .gallery-modal-nav{
    width:40px;
    height:40px;
    font-size:18px;
    flex-shrink:0;
  }
  .gallery-modal-thumbnails{
    gap:6px;
  }
  .gallery-modal-thumb{
    width:45px;
    height:45px;
  }
  .gallery-minilist-item{
    min-width:70px;
    padding:6px;
  }
  .gallery-minilist-item img{
    width:50px;
    height:50px;
  }
  .gallery-minilist-item .minilist-title{
    font-size:9px;
  }

  /* Hide navigation buttons on mobile and use swipe */
  .gallery-modal-nav{
    display:none;
  }

  .gallery-modal-main{
    grid-template-columns:1fr;
    gap:0;
  }

  }
  .gallery-modal-info h2{
    font-size:18px;
  }
  .gallery-modal-info p{
    font-size:13px;
  }
  .gallery-modal-content{
    padding:20px 12px;
    gap:24px;
  }
  .gallery-modal-close{
    font-size:28px;
  }
  .nav-btn{
    width:36px;
    height:36px;
    font-size:16px;
  }
  .thumbnails{
    max-width:200px;
  }


@media (max-width:480px){
  .cover img{max-width:220px}
  .hero{
    min-height:100vh;
    padding:0;
    margin:0;
  }
  .hero-inner{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:20px;
    padding:80px 4vw 40px 4vw;
  }
  .text{
    text-align:center;
  }
  .site-header .brand img{
    height:20px;
  }
  .mobile-link{
    padding:20px 0;
    font-size:16px;
  }
  .shop-grid{grid-template-columns:repeat(2, 1fr);gap:14px}
  .archive-grid{grid-template-columns:repeat(2, 1fr);gap:14px}
  .archive-simple{grid-template-columns:repeat(2, 1fr);gap:12px}
  .gallery-grid{grid-template-columns:repeat(2, 1fr);gap:14px}
}

@media (max-width:360px){
  .shop-grid{grid-template-columns:repeat(2, 1fr);gap:12px}
  .archive-grid{grid-template-columns:repeat(2, 1fr);gap:12px}
  .gallery-grid{grid-template-columns:repeat(2, 1fr);gap:12px}
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

/* Lazy Loading - Fade in effect */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

img.lazy-loaded {
  opacity: 1;
}

/* Pagination Controls */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 20px;
}

.pagination-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent);
  cursor: pointer;
  font-family: inherit;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  white-space: nowrap;
}

.pagination-info .current-page {
  color: var(--accent);
  font-weight: 500;
}

/* Placeholder skeleton loading effect */
.skeleton-loader {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Image loading placeholder */
.image-loading {
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  min-height: 300px;
}

/* Performance metrics display (for debugging) */
.performance-metrics {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 15px;
  border-radius: 6px;
  font-size: 12px;
  font-family: monospace;
  z-index: 1000;
  max-width: 300px;
  display: none; /* Enable for debugging */
}

.performance-metrics.active {
  display: block;
}

/* Auth Navigation */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex-shrink: 0;
  padding: 0;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  text-decoration: none;
  opacity: 0.95;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000000;
}

.profile-link:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
}

.profile-link::after {
  display: none;
}

.nav-action,
.cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  transition: all 0.2s ease;
  position: relative;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 20px;
}

.nav-action:hover,
.cart-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-action:active,
.cart-btn:active {
  transform: scale(0.95);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4757;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid rgba(20, 20, 20, 0.8);
}

.auth-buttons {
  display: none;
}

/* Cart Notification Toast */
.cart-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #44ff44;
  color: #111111;
  padding: 16px 24px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(68, 255, 68, 0.3);
  animation: slideInRight 0.3s ease;
}

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

/* Improve mobile pagination controls */
@media (max-width: 768px) {
  .pagination-controls {
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .pagination-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .pagination-info {
    font-size: 12px;
    order: 3;
    flex-basis: 100%;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-action {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* 🔒 SECURITY STYLES */

/* Input validation states */
input.input-error,
textarea.input-error {
  border-color: #ff4757 !important;
  background-color: rgba(255, 71, 87, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

input.input-success,
textarea.input-success {
  border-color: #44ff44 !important;
  background-color: rgba(68, 255, 68, 0.05);
}

/* Security warning messages */
.security-warning {
  background-color: #fff3cd;
  color: #856404;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  border-left: 4px solid #ffc107;
  font-size: 14px;
}

.security-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  border-left: 4px solid #f5c6cb;
  font-size: 14px;
}

.security-success {
  background-color: #d4edda;
  color: #155724;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  border-left: 4px solid #c3e6cb;
  font-size: 14px;
}

/* Password strength indicator */
.password-strength {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0;
  transition: width 0.3s ease, background 0.3s ease;
  border-radius: 3px;
}

.password-strength-bar.strength-1 {
  width: 25%;
  background: #ff4757;
}

.password-strength-bar.strength-2 {
  width: 50%;
  background: #ffa502;
}

.password-strength-bar.strength-3 {
  width: 75%;
  background: #ffc107;
}

.password-strength-bar.strength-4 {
  width: 100%;
  background: #44ff44;
}

.password-strength-bar.strength-5 {
  width: 100%;
  background: #00d4ff;
}

/* Password requirements checklist */
.password-requirements {
  font-size: 12px;
  margin-top: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: #dcdcdc;
}

.password-requirement {
  display: flex;
  align-items: center;
  margin: 6px 0;
}

.password-requirement.met::before {
  content: '✓';
  color: #44ff44;
  font-weight: bold;
  margin-right: 8px;
}

.password-requirement:not(.met)::before {
  content: '○';
  color: #ff4757;
  margin-right: 8px;
}

/* Form protection indicator */
.form-protected {
  position: relative;
  padding-top: 4px;
}

.form-protected::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #44ff44, transparent);
  opacity: 0.5;
  animation: securityPulse 2s ease-in-out infinite;
}

@keyframes securityPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Rate limit warning */
.rate-limit-warning {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #ff4757;
  color: white;
  padding: 16px 24px;
  border-radius: 4px;
  z-index: 9999;
  animation: slideInRight 0.3s ease;
}

/* Session timeout warning */
.session-timeout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid #ff4757;
  padding: 32px;
  border-radius: 8px;
  z-index: 10000;
  max-width: 400px;
  text-align: center;
}

.session-timeout-modal h3 {
  color: #ff4757;
  margin-bottom: 12px;
}

.session-timeout-modal p {
  color: #dcdcdc;
  margin-bottom: 24px;
  font-size: 14px;
}

.session-timeout-modal button {
  background: #ff4757;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

/* CSRF protection hidden */
input[name="csrf-token"] {
  display: none;
}

/* Security badge */
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(68, 255, 68, 0.1);
  border: 1px solid rgba(68, 255, 68, 0.3);
  border-radius: 4px;
  font-size: 12px;
  color: #44ff44;
  font-weight: 500;
}

.security-badge::before {
  content: '🔒';
  font-size: 11px;
}