/* ==========================================================================
   MZ TIMBER - Design System & Stylesheet (Premium Dark Wood & Tobacco Theme)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&family=Caveat:wght@700&display=swap');

:root {
  /* Color Palette - Wood-Tobacco-Chocolate Brown Aesthetic */
  --color-bg: #15100E; /* Dark tobacco-espresso base */
  --color-text: #F3ECE6; /* Soft warm ivory cream for maximum font readability */
  --color-text-muted: #9E9187; /* Sandy warm wood beige */
  --color-accent: #D69055; /* Glowing warm tobacco amber / gold wood tone */
  --color-accent-light: #E5A36C;
  --color-accent-glow: rgba(214, 144, 85, 0.18);
  --color-bronze: #855838; /* Warm chocolate bronze */
  --color-bronze-light: #9B6C4A;
  --color-white: #FFFFFF;
  --color-black: #0C0908;
  
  /* Fonts */
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;
  
  /* Radiuses */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--color-bg);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input, textarea, select {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

::selection {
  background: transparent;
  color: inherit;
}

::-moz-selection {
  background: transparent;
  color: inherit;
}

a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-light);
}

/* Global Elements */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, .btn {
  font-family: var(--font-title);
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: var(--transition-smooth);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* Helper Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.w-full { width: 100%; }
.mt-4 { margin-top: 16px; }

/* Glassmorphism utility */
.glass {
  background: rgba(43, 35, 29, 0.45); /* Warm frosted tobacco glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.glass-dark {
  background: rgba(14, 12, 11, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  background: rgba(21, 16, 14, 0.85); /* Deep dark tobacco blur header */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 16px 0;
  background: rgba(21, 16, 14, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 102;
}

.logo-img {
  height: 48px;
  width: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 1.5px solid var(--color-accent);
  transition: var(--transition-smooth);
}

.logo:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--color-text);
  text-transform: uppercase;
}

.logo-text .accent {
  color: var(--color-accent);
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  opacity: 0.8;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 102;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: var(--transition-smooth);
}

.header-social-btn svg {
  width: 28px;
  height: 28px;
}

.header-social-btn:hover {
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Header CTA is hidden on mobile screens to save space */
@media (max-width: 992px) {
  #cta-header-btn {
    display: none !important;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.header-phone {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  white-space: nowrap;
  line-height: 1.2;
}

.header-phone:hover {
  color: var(--color-text);
  transform: translateY(-1px);
}

/* Burger Toggle Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.no-scroll {
  overflow: hidden;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(21, 16, 14, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 99;
  transition: var(--transition-smooth);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.mobile-nav-link:hover {
  color: var(--color-accent);
}

.mobile-drawer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

/* Buttons */
.btn-primary {
  padding: 18px 36px;
  background-color: var(--color-accent);
  color: var(--color-black);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--color-accent-glow);
}

.btn-secondary-link {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 10px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.btn-secondary-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-text);
  transition: var(--transition-smooth);
}

.btn-secondary-link:hover::after {
  width: 100%;
}

/* Sections Base */
section {
  padding: 100px 0;
  position: relative;
  background-color: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  margin-bottom: 60px;
}

.section-line {
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 0 auto;
}

.tech-subtitle {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  display: block;
}

.tech-title {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.cursive {
  font-family: 'Caveat', cursive;
  color: var(--color-accent);
  font-size: 1.45em; /* Significantly larger than surrounding text for organic contrast */
  font-style: normal;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/background.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  opacity: 0.15;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 20px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-subtitle {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background-color: var(--color-accent);
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 58px;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 650px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: stretch;
  width: 100%;
}

.villa-frame {
  width: 100%;
  max-width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.villa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.villa-frame:hover .villa-img {
  transform: scale(1.05);
}

.mobile-hero-photo {
  display: none;
}

/* Floating info cards in Hero */
.floating-card-design {
  position: absolute;
  top: 40px;
  left: -40px;
  width: 300px;
  padding: 24px;
  border-radius: var(--radius-md);
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}

.card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.card-tag {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-text-muted);
}

.card-tag.active {
  background-color: var(--color-accent);
  color: var(--color-black);
  border-color: var(--color-accent);
}

.card-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--color-text);
}

.card-subtitle {
  font-size: 13px;
  color: var(--color-text-muted);
}

.floating-card-action {
  position: absolute;
  bottom: 60px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  z-index: 10;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  animation: float 8s ease-in-out infinite alternate;
}

.stages-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.stages-btn-icon::after {
  content: '➔';
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
}

.floating-card-action:hover .stages-btn-icon {
  background-color: var(--color-white);
  transform: scale(1.1);
}

.action-text {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Hero Bottom Stats */
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card {
  background: rgba(43, 35, 29, 0.45); /* Warm frosted tobacco glass fill */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 30px var(--color-accent-glow);
}

.stat-card-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.4;
}


/* ==========================================================================
   CATALOG SECTION & SLIDERS
   ========================================================================== */
.catalog-section {
  background-color: var(--color-bg);
  padding: 80px 0;
}

.catalog-split-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

.catalog-left {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.catalog-tabs-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-tab-btn {
  padding: 18px 28px;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.catalog-tab-btn:hover {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.catalog-tab-btn.active {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: rgba(214, 144, 85, 0.05);
  box-shadow: inset 4px 0 0 var(--color-accent);
}

.catalog-right {
  position: relative;
}

.catalog-pane {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.catalog-pane.active {
  display: block;
  animation: catalogFadeIn 0.35s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes catalogFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

/* Product Card Styling */
.product-card {
  background-color: #1F1715; /* Rich dark chocolate brown */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px var(--color-accent-glow);
  border-color: var(--color-accent);
}

/* Card Slideshow */
.card-slideshow {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-color: rgba(28, 28, 28, 0.03);
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slideshow-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.slideshow-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slideshow-dots .dot.active {
  background: var(--color-accent);
  width: 18px;
}

/* Card Body & Inputs */
.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

.product-price-row {
  font-size: 15px;
  color: var(--color-text-muted);
}

.price-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-title);
}

.card-specs-row, .card-volume-row, .card-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-label, .volume-label {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.calc-label {
  font-size: 15px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.volume-unit-light {
  color: var(--color-text-muted);
  opacity: 0.7;
  font-weight: 400;
  font-size: 14px;
  margin-left: 2px;
}

/* Custom Select Dropdown */
.custom-select-wrapper {
  position: relative;
  width: 140px;
}

.card-select {
  width: 100%;
  padding: 10px 14px;
  background: #2D2320;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.card-select:focus {
  border-color: var(--color-accent);
}

.custom-select-wrapper::after {
  content: "▼";
  font-size: 8px;
  color: var(--color-text-muted);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Volume Spinner */
.volume-spinner {
  display: flex;
  align-items: center;
  background: #2D2320;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 3px;
  width: 140px;
  justify-content: space-between;
  position: relative;
}

.spinner-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.spinner-btn:hover {
  background: var(--color-accent);
  color: var(--color-black);
}

.volume-input {
  width: 55px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
}

.volume-input::-webkit-outer-spin-button,
.volume-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Real-time Calculation Result */
.card-calc-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  margin-top: 4px;
}

.calc-total {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-title);
}

/* Add to Cart button success state animation */
.add-to-cart-btn {
  position: relative;
  overflow: hidden;
  height: 52px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.add-to-cart-btn .success-icon {
  position: absolute;
  transform: translateY(30px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.add-to-cart-btn .btn-text {
  transition: var(--transition-smooth);
}

.add-to-cart-btn.added {
  background-color: #2e7d32 !important; /* Success Green */
  border-color: #2e7d32 !important;
  color: var(--color-white) !important;
}

.add-to-cart-btn.added .btn-text {
  transform: translateY(-30px);
  opacity: 0;
}

.add-to-cart-btn.added .success-icon {
  transform: translateY(0);
  opacity: 1;
}

/* Floating Cart Badge */
.floating-cart-badge {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-black);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(214, 144, 85, 0.35);
  cursor: pointer;
  z-index: 99;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  transform: scale(0);
  opacity: 0;
}

.floating-cart-badge.active {
  transform: scale(1);
  opacity: 1;
}

.floating-cart-badge:hover {
  transform: scale(1.08) rotate(-5deg);
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-accent);
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  transition: visibility 0.4s ease;
}

.cart-drawer.active {
  visibility: visible;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cart-drawer.active .drawer-overlay {
  opacity: 1;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 440px;
  height: 100%;
  background: rgba(21, 16, 14, 0.98);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
}

.cart-drawer.active .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.drawer-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
}

.drawer-close {
  font-size: 32px;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  background: none;
}

.drawer-close:hover {
  color: var(--color-accent);
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 8px;
}

.cart-empty-message {
  color: var(--color-text-muted);
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
}

.cart-item-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.cart-item-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  padding-right: 24px;
}

.cart-item-details {
  font-size: 13px;
  color: var(--color-text-muted);
}

.cart-item-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.cart-item-price {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
}

.cart-item-remove {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #c62828;
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition-fast);
  border: none;
  background: none;
}

.cart-item-remove:hover {
  color: #ff5252;
}

.cart-summary {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: var(--color-text);
}

.summary-row strong {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--color-accent);
}

.checkout-form-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.checkout-form-subtitle {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.drawer-success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.drawer-success-message.active {
  display: flex;
}

.drawer-success-message h3 {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--color-text);
  margin: 16px 0 8px;
}

.drawer-success-message p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}


/* ==========================================================================
   PRODUCTION & GALLERY SECTION
   ========================================================================== */
.production-section {
  background-color: var(--color-bg);
  padding: 100px 0;
}

.production-lead {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.gallery-toggles {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.gallery-toggle-btn {
  padding: 14px 28px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-toggle-btn:hover {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.gallery-toggle-btn.active {
  color: var(--color-black);
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 10px 25px var(--color-accent-glow);
}

.gallery-container {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.gallery-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-pane.active {
  display: block;
}

.gallery-pane.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  cursor: pointer;
  background-color: #1a1311;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2) {
  grid-column: span 3;
  height: 380px;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: span 2;
  height: 280px;
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(21, 16, 14, 0.9) 0%, rgba(21, 16, 14, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item-overlay span {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--color-accent-glow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item-overlay span {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .gallery-grid {
    gap: 16px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) {
    grid-column: span 3;
    height: 300px;
  }
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 3;
    height: 240px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    height: 220px;
  }
}

/* ==========================================================================
   QUALITY / STANDARDS SECTION
   ========================================================================== */
.quality-section {
  background-color: var(--color-bg);
}

.quality-container {
  max-width: 900px;
  margin: 0 auto;
}

.quality-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.quality-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.quality-steps li {
  display: flex;
  gap: 24px;
  align-items: center;
  background-color: #1F1715;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-smooth);
}

.quality-steps li:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px var(--color-accent-glow);
}

.step-num {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-accent);
  background-color: var(--color-accent-glow);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h4 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}

.step-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ==========================================================================
   CONTACTS & LEAD FORM
   ========================================================================== */
.contact-section {
  background-color: var(--color-bg);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-glow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
}

.method-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.method-label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

/* Form Styles */
.contact-form-panel {
  background-color: #1F1715;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.form-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-input, .form-select {
  width: 100%;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: var(--color-accent);
  background-color: var(--color-bg);
  box-shadow: 0 0 0 4px var(--color-accent-glow);
}

/* Floating Label Animation */
.form-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 15px;
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0;
  left: 10px;
  transform: translateY(-50%) scale(0.85);
  background-color: #1F1715; /* matches form panel */
  padding: 0 6px;
  color: var(--color-accent);
  font-weight: 600;
}

.select-label {
  top: 0;
  left: 10px;
  transform: translateY(-50%) scale(0.85);
  background-color: #1F1715;
  padding: 0 6px;
  color: var(--color-text-muted);
}

.form-select:focus ~ .select-label {
  color: var(--color-accent);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23f3ece6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-consent {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.4;
}

/* Form Submission Success States */
.form-success-message, .modal-success-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1F1715;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  z-index: 5;
}

.form-success-message.active, .modal-success-message.active {
  opacity: 1;
  pointer-events: auto;
}

.form-success-message h3, .modal-success-message h3 {
  font-family: var(--font-title);
  font-size: 24px;
  margin: 20px 0 10px;
  color: var(--color-text);
}

.form-success-message p, .modal-success-message p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 320px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: var(--color-bg); /* Unified dark footer */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.brand-slogan {
  margin-top: 16px;
  max-width: 320px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-links h4, .footer-socials h4 {
  font-family: var(--font-title);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  color: var(--color-text);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.social-icons a svg {
  width: 24px;
  height: 24px;
}

.social-icons a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 14, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background-color: #1F1715;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  z-index: 2;
  transform: translateY(30px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  transform: rotate(90deg);
}

.modal-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
  text-align: center;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
  text-align: center;
}

.modal-form .form-consent {
  margin-top: 16px;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.reveal-fade.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.reveal-fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-left .reveal-fade:nth-child(1) { transition-delay: 0.1s; }
.hero-left .reveal-fade:nth-child(2) { transition-delay: 0.2s; }
.hero-left .reveal-fade:nth-child(3) { transition-delay: 0.3s; }
.hero-left .reveal-fade:nth-child(4) { transition-delay: 0.4s; }
.hero-bottom.reveal-fade { transition-delay: 0.5s; }

/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */

/* Tablet & Mobile Landscape */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Header Mobile Adaptations */
  .main-header {
    padding: 12px 0;
  }
  .main-header.scrolled {
    padding: 10px 0;
  }
  .header-container {
    padding: 0 16px;
  }
  .header-right {
    gap: 16px;
  }
  .logo {
    gap: 8px;
  }
  .logo-img {
    height: 36px;
    width: 36px;
  }
  .logo-text {
    font-size: 14px;
  }
  .header-phone {
    font-size: 13px;
  }
  .header-socials {
    display: flex !important;
    gap: 8px;
  }
  .header-social-btn svg {
    width: 22px;
    height: 22px;
  }

  /* Hero Mobile Layout */
  .hero-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-right {
    display: none !important;
  }

  .mobile-hero-photo {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 24px;
  }

  .mobile-hero-photo .villa-frame {
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 40px;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-subtitle {
    align-self: center;
  }
  
  .hero-description {
    text-align: center;
    max-width: 100%;
    align-self: center;
    margin-bottom: 24px;
  }
  
  .hero-cta-group {
    align-self: center;
  }
  
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  
  /* Catalog Tabs Mobile Center */
  .catalog-split-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .catalog-left {
    position: relative;
    top: 0;
  }

  .catalog-tabs-vertical {
    flex-direction: row;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-tab-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 10px 20px;
    font-size: 13px;
  }

  .catalog-tab-btn.active {
    box-shadow: inset 0 -3px 0 var(--color-accent);
  }

  /* Contact Section Flex Order */
  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .contact-info-panel {
    display: contents;
  }

  .contact-container .tech-subtitle {
    order: 1;
    text-align: center;
    align-self: center;
    margin-bottom: 8px;
  }

  .contact-container .tech-title {
    order: 2;
    text-align: center;
    margin-bottom: 16px;
  }

  .contact-container .contact-subtitle {
    order: 3;
    text-align: center;
    margin-bottom: 32px;
  }

  .contact-container .contact-form-panel {
    order: 4;
    width: 100%;
    margin-bottom: 40px;
  }

  .contact-container .contact-methods {
    order: 5;
    width: 100%;
    gap: 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile Portrait */
@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  /* Header Compact for Tiny Screens */
  .header-container {
    padding: 0 10px;
  }
  .header-right {
    gap: 10px;
  }
  .logo-img {
    height: 32px;
    width: 32px;
  }
  .logo-text {
    font-size: 12px;
  }
  .header-phone {
    font-size: 11px;
  }
  .header-socials {
    gap: 6px;
  }
  .header-social-btn svg {
    width: 18px;
    height: 18px;
  }

  .tech-title {
    font-size: 32px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .mobile-hero-photo .villa-frame {
    height: 240px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .catalog-tabs-vertical {
    gap: 8px;
  }
  
  .catalog-tab-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-body {
    padding: 20px;
  }
  
  .product-title {
    font-size: 18px;
  }

  /* Cart Drawer Mobile Layout */
  .drawer-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 16px !important;
  }
  
  .contact-form-panel, .modal-content {
    padding: 32px 20px;
  }
  
  .form-title {
    font-size: 20px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  
  .quest-card {
    background: rgba(43, 35, 29, 0.85);
  }
}

/* Extra Tiny Screens (Sony Xperia, iPhone SE, etc. down to 320px) */
@media (max-width: 360px) {
  .logo-text {
    display: none; /* Hide logo text to fit phones + socials + menu on single line */
  }
}

/* Slideshow PC Hover Arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(31, 23, 21, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition-fast);
  font-size: 18px;
  opacity: 0;
}

.card-slideshow:hover .slide-arrow {
  opacity: 1;
}

.slide-arrow:hover {
  background: var(--color-accent);
  color: var(--color-black);
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.05);
}

.slide-arrow.prev {
  left: 16px;
}

.slide-arrow.next {
  right: 16px;
}

@media (max-width: 992px) {
  .slide-arrow {
    display: none !important;
  }
}
