/* BODY & GLOBAL */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0b0c10;
    color: white;
    overflow-x: hidden;
}


.contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.glass-box {

    background: rgba(74, 74, 74, 0.05);
    padding: 20px 0px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.email {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}


/* --- GLASS EFFECT --- */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* --- NAV BAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem auto;
    padding: 1rem;
    width: 90%;
}

.nav-links a {
    margin-left: 1.5rem;
    color: white;
    font-weight: 500;
    text-decoration: none;
}
.nav-links a:hover {
    color: #bdd0d0;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Mobile toggle button (hidden on desktop) */
.nav-toggle {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color:white;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

/* --- CONTENT --- */
.content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2.5rem;
}

.content h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

/* --- FOOTER --- */
.footer {
    width: 90%;
    margin: 4rem auto 2rem;
    padding: 1rem;
    text-align: center;
    color: #aaa;
}

/* --- ABSTRACT BACKGROUND --- */
.background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 500px;
    height: 400px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
    animation: float 15s ease-in-out infinite alternate;
}

.blob1 {
    background: linear-gradient(135deg, #ff00ff, #ff4d00);
    top: -150px;
    left: -150px;
}

.blob2 {
    background: linear-gradient(135deg, #00ffff, #0044ff);
    bottom: -150px;
    right: -150px;
}

.blob3 {
    background: linear-gradient(135deg, #fffb00, #ff00aa);
    top: 40%;
    left: 50%;
}

/* --- FLOAT ANIMATION --- */
@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(40px) translateX(30px); }
    100% { transform: translateY(0px) translateX(0px); }
}

html, body {
    height: 100%;
    margin: 0;
}

/* Wrapper stretches to full viewport height */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;  /* full height */
}

/* Content stays natural height */
main.content {
    margin: 3rem auto;
    padding: 1.5rem;
    max-width: 1080px;
    margin-bottom: 100px;
    min-width: 40%;
    width: 100%;
}

/* Footer sticks to bottom when content is short */
footer.footer {
    margin-top: auto;   /* pushes footer to bottom */
}
.logo-img {
    height: 30px;      /* adjust as needed */
    width: auto;
    display: block;
}


.render-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: minmax(320px, 1fr);
    gap: 11.5rem;
}

.render-grid img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.render-grid img:hover {
    transform: scale(1.01);
}


.about-text {
font-weight: 600;
  letter-spacing: 0.06rem;
  color: #f5f5f5;
  opacity: 0.85;
  margin-bottom: 70px !important;
  font-size: 1.3rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #e5e5e5;
}

.contact-icon {
    width: 26px;
    height: 26px;
    stroke: #bdd0d0;   /* neon cyan matches high-tech aesthetic */
    margin-top: -60px;
}

.blob1 {
    background: radial-gradient(circle at 30% 30%, #1c335e, #30476f);
    background: radial-gradient(circle at 30% 30%, #15181e, #30476f);
}

.blob2 {
    background: radial-gradient(circle at 70% 70%, #0f2027, #203a43, #2c5364);
}

.blob3 {
    background: radial-gradient(circle at 50% 50%, #334b5b, #101315);
}

.hero-tagline {
  text-transform: uppercase;
  font-size: clamp(1.4rem, 4vw, 3.3rem);
  letter-spacing: 0.25rem;
  color: #f5f5f5;
  text-align: center;
  opacity: 0.85;
  text-align:center;
  margin-bottom:70px !important;
}


.hero-tagline.animate {
  animation: fadeUp 1.2s ease-out;
}


@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px); /* smaller movement */
  }
  60% {
    opacity: 1;
    transform: translateY(5px);  /* slows into place */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.render-thumbs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none; /* hides scrollbar in Firefox */
  margin-top:50px;
}

.render-thumbs::-webkit-scrollbar {
  display: none; /* hides scrollbar in Chrome/Safari */
}

.render-thumbs img {
  height: 150px;          /* consistent height */
  width: auto;
  border-radius: 10px;    /* optional for modern look */
  object-fit: cover;
  background: rgb(17,17,17); /* background for Fusion renders */
  padding: 4px;           /* subtle padding */
}

.auto-gallery {
  overflow: hidden;
}

.track {
  display: flex;
  gap: 6rem;
  animation: sway 44s ease-in-out infinite alternate;
}

.track img {
  height: 150px;
  width: auto;
  border-radius: 10px;
}

@keyframes sway {
  from { transform: translateX(0); }
  to   { transform: translateX(-40%); } /* adjust for number of images */
}

.highlight {
  color: #b5b5b5;
  color:#5ab2ff;
  color: #8fbde6;
  color: #7dc2ff;
}

@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 80px;
    right: 20px;
    background: #1c1c1c;
    display: none;        /* IMPORTANT */
    flex-direction: column;
    width: 150px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99;
  }

  .nav-links.show {
    display: flex;        /* shows menu when toggled */
  }

  .nav-toggle {
    display: block;       /* show hamburger icon */
  }
}

.render-thumbs {
  width: 50%;
  max-width: 100vw;
  overflow: hidden;
  margin: auto;
}

@media (max-width: 961px) {
  .render-thumbs { display: none; }
  .printer {max-width:100% !important;}
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid a {
  text-decoration: none;
  color: inherit;
}

.desc {
  font-size: 16px;
  font-weight: 600;
  margin: 14px 12px 6px; /* more breathing room */
}

.price {
  font-size: 15px;
  margin-bottom: 8px;
}

.gallery.body {
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  overflow: hidden;
  text-align: center; /* 🔥 centers text */
  padding-bottom: 12px;
}

.product_2 {
  display: grid;
  grid-template-columns: 8fr 2fr; /* 70 / 30 */
  gap: 20px;
}

/* mobile */
@media (max-width: 768px) {
  .product_2 {
    grid-template-columns: 1fr;
  }
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

* {
  box-sizing: border-box;
}
.main_img {
  max-width: 100%;
  height: auto;
}

.mini-image {
width:auto;
max-height:80px;
  margin:5px;

}

/* mobile */
@media (max-width: 768px) {
  .reviews {
    grid-template-columns: 1fr;
  }
  .mini-image {
    max-height:40px;
  }
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-meta {
    align-items: flex-start;
  }
}


.back-btn {
  width: 100px;
  padding: 6px 10px;
  margin-top: 8px;

  background: #00000070;
  border: 1px solid #222;
  border-radius: 6px;

  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.back-btn:hover {
  background: #222;
  color: white;
}

.checkout-btn {
  width: 200px;
  padding: 10px 12px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;

  color: #fff;
  backdrop-filter: blur(8px);

  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.buy-btn {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.checkout-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.buy-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-check {
  flex-shrink: 0;
}

.cart-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1; /* 🔥 takes remaining space */
}

.cart-img {
  width: 60px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-name {
  color: white;
}

.cart-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;

  min-width: 80px;
  min-width: 200px; /* 👈 guarantees space */
  flex-shrink: 0;
}

.cart-total {
  font-weight: 600;
}
.checkout-box {
  display: flex;
  font-size: 13pt;
}

.checkout-label {
  flex: 0 0 50%;
  text-align: right;
  padding: 10px;
  font-weight: bold;
}

.checkout-info {
  flex: 0 0 50%;
  text-align: left;
  padding: 10px;
  flex: 1;
  max-width: 60%; /* 👈 KEY: stop it from taking everything */
}

.cart-meta > div {
  width: 100%;
}

.cart-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  min-width: 90px; /* 👈 column width */
}

.cart-qty {
  width: 60px;
  padding: 4px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: white;
  text-align: center;
}

.cart-update {
  font-size: 12px;
  padding: 6px 10px; 
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: white;
  cursor: pointer;
}

.cart-delete {
  font-size: 14px;
  color: #e65252;
  text-decoration: none;
  padding: 4px 24px; 
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
}

.checkout-form {
  display: flex;
  justify-content: flex-end; /* 👉 pushes button to far right */
  margin-top: 20px;
}

.checkout-btn {
  width: 220px;
  padding: 12px;

  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 10px;

  color: #fff;
  backdrop-filter: blur(8px);

  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkout-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}