/* ============================================
   WARDROBE AUDIT - GLASSMORPHISM DESIGN
   Neo-Minimalism with Glass & Airy Layouts
   ============================================ */

:root {
  /* Color Palette */
  --color-stellar-white: #F8F9FA;
  --color-cyber-slate: #2C3E50;
  --color-glass-azure: #E0F2F1;
  --color-champagne-chrome: #D4AF37;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Typography */
  --font-primary: 'Orbitron', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  
  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.12);
  --shadow-lg: 0 8px 32px rgba(44, 62, 80, 0.16);
  --shadow-glass: 0 8px 32px rgba(224, 242, 241, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(20px);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-cyber-slate);
  background-color: var(--color-stellar-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-cyber-slate);
}

h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: relative;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
}

.brand-name {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-cyber-slate);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
}

.burger-toggle {
  position: relative;
  z-index: 10002;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-cyber-slate);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link:hover {
  color: var(--color-champagne-chrome);
  background: rgba(212, 175, 55, 0.1);
}

.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger-line {
  width: 100%;
  height: 2px;
  background: var(--color-cyber-slate);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: 10000;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Mobile Menu Sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--glass-border);
  z-index: 10001;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(44, 62, 80, 0.2);
  transition: right var(--transition-base);
  padding-top: var(--space-xxl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-menu-link {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-cyber-slate);
  text-decoration: none;
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
  margin: 0 var(--space-md);
  border-radius: var(--radius-md);
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-champagne-chrome);
  border-left-color: var(--color-champagne-chrome);
  transform: translateX(4px);
}

/* Mobile Navigation */
@media (max-width: 1023px) {
  .burger-toggle {
    display: flex;
  }
  
  .main-navigation .nav-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   HERO BANNERS (FULL-WIDTH)
   ============================================ */

.hero-banner {
  position: relative;
  width: 100vw;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.75), rgba(44, 62, 80, 0.5));
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: var(--space-xl);
  text-align: center;
  color: var(--color-stellar-white);
}

.banner-title {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.banner-text {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  width: 100%;
}

.content-section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-md);
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-champagne-chrome), transparent);
}

.section-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-container {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  width: 100%;
  max-width: 1400px;
  justify-items: center;
}

.grid-two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.grid-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  overflow: hidden;
}

.grid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass);
  border-color: var(--color-champagne-chrome);
}

.grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.grid-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-sm);
  color: var(--color-cyber-slate);
}

.grid-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-cyber-slate);
  opacity: 0.9;
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.glass-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--color-champagne-chrome), #B8941F);
  color: var(--color-cyber-slate);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-top: 10px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: black;
  background: linear-gradient(135deg, #B8941F, var(--color-champagne-chrome));
}

.btn-secondary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  color: var(--color-cyber-slate);
  font-weight: 600;
  border: 2px solid var(--color-cyber-slate);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: var(--color-cyber-slate);
  color: var(--color-stellar-white);
}

.btn-full-width {
  width: 100%;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--color-cyber-slate);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-cyber-slate);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-champagne-chrome);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   MAP CONTAINER
   ============================================ */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   PRODUCTS
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glass);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-cyber-slate);
}

.product-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: var(--color-cyber-slate);
  opacity: 0.9;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-champagne-chrome);
  font-family: var(--font-primary);
}

/* ============================================
   GALLERY - BEFORE/AFTER
   ============================================ */

.comparison-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: var(--space-xl) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.comparison-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--color-stellar-white);
  cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--color-stellar-white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.comparison-slider::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--color-cyber-slate);
}

.comparison-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-cyber-slate);
  color: var(--color-stellar-white);
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-xxl);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.footer-section {
  margin-bottom: var(--space-lg);
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--color-champagne-chrome);
}

.footer-menu {
  list-style: none;
}

.footer-link {
  display: block;
  padding: var(--space-sm) 0;
  color: var(--color-stellar-white);
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  opacity: 1;
  color: var(--color-champagne-chrome);
  padding-left: var(--space-sm);
}

.footer-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .main-content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .content-section {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) 0;
  }
  
  .grid-two,
  .grid-three,
  .grid-four {
    grid-template-columns: 1fr;
  }
  
  .hero-banner {
    min-height: 50vh;
  }
  
  .banner-content {
    padding: var(--space-lg);
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: var(--space-sm) var(--space-md);
  }
  
  .main-content {
    padding: var(--space-md);
  }
  
  .glass-card {
    padding: var(--space-md);
  }
  
  .contact-form {
    padding: var(--space-md);
  }
}

/* ============================================
   PRIVACY POPUP
   ============================================ */

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 600px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: none;
}

.privacy-popup.active {
  display: block;
}

.privacy-popup-content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-popup-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.privacy-btn {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.privacy-btn-accept {
  background: var(--color-champagne-chrome);
  color: var(--color-cyber-slate);
  font-weight: 600;
}

.privacy-btn-decline {
  background: transparent;
  color: var(--color-cyber-slate);
  border: 1px solid var(--glass-border);
}

@media (max-width: 480px) {
  .privacy-popup {
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
  }
  
  .privacy-popup-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .privacy-popup-buttons {
    flex-direction: column;
  }
  
  .privacy-btn {
    width: 100%;
  }
}

