/* Root variables for consistent theming */
:root {
  --bg-color: #0a0a0a;
  --surface-color: #131313;
  --primary-color: #ffffff;
  --secondary-color: #cccccc;
  --accent-color: #00bcd4;
  --accent-color-alt: #ff0080;
  --max-width: 1200px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--primary-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Utility container */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 0;
}

/* Navigation bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Mobile navigation toggle */
#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

#nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--primary-color);
  transition: transform 0.3s ease;
}

/* Hero section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Glitch effect on hero heading */
.hero h1::before,
.hero h1::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  mix-blend-mode: screen;
}

.hero h1::before {
  color: var(--accent-color);
  animation: glitchTop 2.5s infinite linear;
}

.hero h1::after {
  color: var(--accent-color-alt);
  animation: glitchBottom 2.5s infinite linear;
}

@keyframes glitchTop {
  0% { clip-path: polygon(0 2%, 100% 2%, 100% 20%, 0 20%); transform: translate(-2px, -2px); }
  10% { clip-path: polygon(0 5%, 100% 5%, 100% 15%, 0 15%); transform: translate(2px, -1px); }
  20% { clip-path: polygon(0 10%, 100% 10%, 100% 25%, 0 25%); transform: translate(-1px, 2px); }
  30%, 100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: translate(0, 0); }
}

@keyframes glitchBottom {
  0% { clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%); transform: translate(2px, 2px); }
  10% { clip-path: polygon(0 70%, 100% 70%, 100% 90%, 0 90%); transform: translate(-2px, 1px); }
  20% { clip-path: polygon(0 60%, 100% 60%, 100% 85%, 0 85%); transform: translate(1px, -2px); }
  30%, 100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: translate(0, 0); }
}

.tagline {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--accent-color);
  color: var(--bg-color);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background: var(--accent-color-alt);
  transform: scale(1.05);
}

/* Section headings */
section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* About section */
.about p {
  max-width: 800px;
  margin: 0.5rem auto;
  text-align: center;
  color: var(--secondary-color);
}

/* Services section */
.services {
  background: #0d0d0d;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Updated Card Styles for Linking */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


.card {
  background: var(--surface-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  height: 100%; /* Ensures equal height in grid */
}

/* Hover effect works on the card when you hover the link */
.card-link:hover .card,
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--accent-color);
}

.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

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

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.card p {
  color: var(--secondary-color);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Portfolio section */
.portfolio {
  background: var(--bg-color);
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

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

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--primary-color);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  transition: opacity 0.3s ease;
}

.project:hover .project-overlay {
  opacity: 1;
}

.project-overlay h4 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.project-overlay p {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

/* Contact section */
.contact {
  background: #0d0d0d;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
  color: var(--primary-color);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
}

.submit-button {
  align-self: flex-start;
  padding: 0.8rem 1.6rem;
  background: var(--accent-color);
  color: var(--bg-color);
  border: none;
  border-radius: 0.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
  background: var(--accent-color-alt);
  transform: translateY(-2px);
}

.email-link {
  text-align: center;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.email-link a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.email-link a:hover {
  color: var(--accent-color-alt);
}

/* Footer */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--secondary-color);
}

/* =========================================
   NEW STYLES FOR STORE / PRODUCT PAGES
   ========================================= */

.store-hero {
  padding-top: 140px; /* Account for fixed nav */
  padding-bottom: 60px;
  text-align: center;
  background: var(--bg-color);
}

.store-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  padding-bottom: 4rem;
}

.product-card {
  background: var(--surface-color);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  border-color: var(--accent-color);
}

.product-image-wrapper {
  height: 220px;
  width: 100%;
  overflow: hidden;
  background: #222;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.product-info p {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-info .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.add-cart-btn {
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-cart-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-color);
}
.card-image {
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background images */
.uiux-bg { background-image: url("/images/uiux.png"); }
.interior-bg { background-image: url("/images/interior.png"); }

/* If you use <img> inside card-image */
.card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .nav-links.show {
    transform: translateY(0);
  }

  #nav-toggle {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
  }

  .exterior.png {
    width: 100%;
    height: auto;
  }
}

/* ===== Gallery page ===== */
.gallery-hero{
  padding-top: 140px;
  padding-bottom: 30px;
  background: var(--bg-color);
  text-align: center;
}

.gallery-title{
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.gallery-subtitle{
  color: var(--secondary-color);
  max-width: 850px;
  margin: 0 auto 1.5rem;
}

.gallery-controls{
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
  align-items: center;
  margin: 1rem auto 1rem;
  max-width: 900px;
}

.gallery-search, .gallery-sort{
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface-color);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  color: var(--primary-color);
  outline: none;
  font-family: inherit;
}

.gallery-search:focus, .gallery-sort:focus{
  border-color: var(--accent-color);
}

.gallery-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: .75rem;
}

.filter-chip{
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: var(--secondary-color);
  padding: .55rem .9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
  font-weight: 500;
}

.filter-chip:hover{
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.filter-chip.is-active{
  background: rgba(0,188,212,0.15);
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.gallery-main{
  padding-bottom: 4rem;
}

.gallery-status{
  text-align: center;
  color: var(--secondary-color);
  margin-top: 1rem;
}

.g-section{
  margin-top: 2.25rem;
}

.g-section-title{
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.g-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.g-card{
  background: var(--surface-color);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.45);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.g-card:hover{
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0,0,0,0.55);
}

.g-card-img{
  height: 200px;
  background: #111;
}

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

.g-card-body{
  padding: 1.2rem;
  text-align: left;
}

.g-card-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.g-badge{
  display: inline-block;
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--secondary-color);
  font-size: .8rem;
}

.g-stars{
  color: var(--secondary-color);
  font-size: .9rem;
}

.g-title{
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.g-desc{
  color: var(--secondary-color);
  font-size: .95rem;
  line-height: 1.45;
  min-height: 2.8em;
}

.g-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: .9rem;
}

.tag-chip{
  display: inline-block;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--secondary-color);
  font-size: .8rem;
}

.g-actions{
  display: flex;
  gap: 14px;
  margin-top: 1rem;
}

.mini-link{
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.mini-link:hover{
  color: var(--accent-color-alt);
}

.gallery-empty{
  text-align: center;
  color: var(--secondary-color);
  margin-top: 2rem;
}

@media (max-width: 768px){
  .gallery-controls{
    grid-template-columns: 1fr;
  }
  .g-section-title{
    text-align: center;
  }
}

/* =========================
   ADMIN DASHBOARD CENTERING
   ========================= */

/* Make the dashboard section full width, but center its content */
#admin-dashboard{
  width: 100%;
}

/* Center the top header row and the main grid/card area */
#admin-dashboard .split,
#admin-dashboard .admin-grid{
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;     /* ✅ centers */
  padding-inline: 20px;    /* ✅ safe spacing on mobile */
  box-sizing: border-box;
}

/* =========================
   HERO VIDEO BACKGROUND
========================= */

.hero-video{
  position: relative;
  overflow: hidden;
}

.hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Use your existing shade name so you don't break theme */
.hero-video .hero-shade{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Ensure text is above video */
.hero-video .hero-content{
  position: relative;
  z-index: 2;
}

/* Optional: for mobile performance */
@media (max-width: 768px){
  .hero-bg-video{ filter: none; }
}

/* Selected Projects: equal size cards */
.portfolio-gallery,
.service-cards,
#portfolioGallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* the card */
.project,
.card {
  height: 220px;              /* ✅ same height for all */
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #111;
}

/* image/video fills the box */
.project img,
.project video,
.card img,
.card video {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* ✅ crop nicely */
  display: block;
}

/* ===== Project Modal ===== */
.gs-modal { position: fixed; inset: 0; z-index: 9999; }

.gs-modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.gs-modal-card{
  position: relative;
  width: min(860px, 94vw);
  margin: 6vh auto 0;
  background: rgba(18,18,18,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(10px);
  color: #fff;
  max-height: 88vh;
  overflow: auto;
}

.gs-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.gs-modal-x{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:#fff;
  border-radius: 10px;
  padding: 6px 10px;
  cursor:pointer;
}

.gs-modal-body{ padding-top: 12px; }

.gs-modal-section{
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.gs-modal-section:last-child{ border-bottom: none; }

.gs-modal-gallery{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.gs-modal-gallery img{
  width:100%;
  height:140px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.gs-modal-buy{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

#gsModalContactForm input,
#gsModalContactForm textarea{
  width:100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:#fff;
  outline:none;
  font-family: Poppins, sans-serif;
}

/* =========================
   GLITCH SIGNAL MODAL (PREMIUM)
   ========================= */

.gs-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.gs-modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gs-modal-card{
  position: relative;
  width: min(920px, 94vw);
  margin: 6vh auto 0;
  background: rgba(14,14,14,.92);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px 18px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  max-height: 88vh;
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,.65);
}

.gs-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.gs-modal-head h3{
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .2px;
}

.gs-modal-x{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.gs-modal-x:hover{
  transform: scale(1.05);
  border-color: rgba(0,188,212,.55);
  background: rgba(0,188,212,.10);
}

.gs-modal-body{
  padding-top: 14px;
  overflow: auto;
  max-height: calc(88vh - 80px);
}

.gs-modal-section{
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gs-modal-section:last-child{ border-bottom:none; }

#gsModalName{
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
}
#gsModalDesc{
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

/* Gallery grid inside modal */
.gs-modal-gallery{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.gs-modal-gallery img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  transition: transform .18s ease, border-color .18s ease;
}
.gs-modal-gallery img:hover{
  transform: translateY(-2px);
  border-color: rgba(0,188,212,.45);
}

/* Buy row */
.gs-modal-buy{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

#gsModalPrice{
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent-color);
}

/* =========================
   BUTTONS (GLOBAL LOOK)
   ========================= */
.btn{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(0,188,212,.40);
  background: rgba(0,188,212,.08);
}
.btn:active{ transform: translateY(0); }
.btn:disabled{ opacity: .55; cursor: not-allowed; }

.btn.primary{
  background: rgba(0,188,212,.14);
  border-color: rgba(0,188,212,.35);
}
.btn.primary:hover{
  background: rgba(0,188,212,.22);
  border-color: rgba(0,188,212,.55);
}

/* Modal form */
#gsModalContactForm label{
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: .95rem;
}

#gsModalContactForm input,
#gsModalContactForm textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: #fff;
  outline: none;
  font-family: Poppins, sans-serif;
  transition: border-color .15s ease, box-shadow .15s ease;
}
#gsModalContactForm input:focus,
#gsModalContactForm textarea:focus{
  border-color: rgba(0,188,212,.55);
  box-shadow: 0 0 0 3px rgba(0,188,212,.15);
}

#gsModalStatus{
  font-size: .92rem;
  color: rgba(255,255,255,.78);
}

/* Mobile */
@media (max-width: 640px){
  .gs-modal-card{
    margin: 4vh auto 0;
    border-radius: 18px;
  }
  .gs-modal-buy{
    flex-direction: column;
    align-items: stretch;
  }
  .gs-modal-gallery img{ height: 130px; }
}
