/*
Theme Name: Staly Steel Door Luxury Theme
Theme URI: https://stalysteeldoor.com/
Author: Staly Steel Door Team
Author URI: https://stalysteeldoor.com/
Description: A luxury, mobile-responsive WordPress theme designed for Staly Steel Door India. Integrated with WooCommerce and free Elementor shortcodes.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: staly-steel-door
Tags: luxury, steel-doors, woocommerce, e-commerce, responsive-layout, elementor-ready
*/

/* ==========================================================================
   1. ROOT VARIABLES & LUXURY DESIGN TOKENS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Warm Luxury Bronze, Dark Steel & Cream */
  --bg-dark: #14110F;
  --bg-dark-card: #1E1A17;
  --bg-light: #FAF7F2;
  --bg-cream: #F0EDE8;
  --bg-white: #FFFFFF;
  
  --text-dark: #1E1A17;
  --text-muted: #645A53;
  --text-light: #F5F2EB;
  --text-gold: #C5A059;
  --text-gold-bright: #DFC283;

  --accent-gold: #C5A059;
  --accent-gold-hover: #D4AF37;
  --accent-bronze: #8C5638;
  --accent-bronze-dark: #6D3F25;

  --border-light: rgba(140, 86, 56, 0.15);
  --border-gold: rgba(197, 160, 89, 0.3);
  --border-dark: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 4px 12px rgba(20, 17, 15, 0.05);
  --shadow-md: 0 10px 25px rgba(20, 17, 15, 0.08);
  --shadow-lg: 0 20px 45px rgba(20, 17, 15, 0.15);
  --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

/* ==========================================================================
   3. REUSABLE COMPONENTS & BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--text-dark);
  color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-bronze);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #E4C88E 100%);
  color: var(--bg-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #F3D99F 100%);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(197, 160, 89, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}
.btn-outline:hover {
  background: var(--bg-white);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-light);
}
.btn-outline-dark:hover {
  border-color: var(--accent-gold);
  color: var(--accent-bronze);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
  padding: 0 20px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-bronze);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.section-title-dark {
  color: var(--bg-white);
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}
.section-desc-dark {
  color: #B3ADA6;
}

/* ==========================================================================
   4. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dark);
}
.top-bar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar-item i {
  color: var(--accent-gold);
}

/* ==========================================================================
   5. MAIN HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo img {
  height: 48px;
  width: auto;
}
.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-dark);
}
.brand-logo-text .brand-sub {
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent-bronze);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  background: var(--bg-light);
  position: relative;
}
.action-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-white);
  border-color: var(--accent-gold);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-bronze);
  color: var(--bg-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ==========================================================================
   6. HERO SECTIONS (WITH WORDPRESS UPLOAD URLS)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  /* Uses WordPress uploaded Welcome Hero Image */
  background: linear-gradient(135deg, rgba(20, 17, 15, 0.88) 0%, rgba(30, 26, 23, 0.75) 100%),
              url('https://skylinesenterprises.com/wp-content/uploads/2026/07/welcome-staly-steel-door.jpg') center/cover no-repeat;
  color: var(--bg-white);
  overflow: hidden;
}
.hero-content {
  max-width: 900px;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--text-gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--bg-white);
}
.gold-highlight {
  background: linear-gradient(135deg, #DFC283 0%, #C5A059 50%, #E4C88E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #E0DDD7;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   7. STATS BANNER
   ========================================================================== */
.stats-banner {
  background: var(--bg-dark-card);
  padding: 48px 24px;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-card {
  padding: 16px;
}
.stat-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.95rem;
  color: #B3ADA6;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ==========================================================================
   8. COLLECTIONS GRID
   ========================================================================== */
.collections-section {
  padding: 96px 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.collection-card {
  position: relative;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background: var(--bg-dark);
}
.collection-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.collection-card:hover .collection-img {
  transform: scale(1.08);
}
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 17, 15, 0.92) 0%, rgba(20, 17, 15, 0.2) 60%, rgba(20, 17, 15, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--bg-white);
  transition: var(--transition);
}
.collection-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.collection-name {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--bg-white);
}
.collection-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bg-white);
  transition: var(--transition);
}
.collection-card:hover .collection-action {
  color: var(--accent-gold);
  transform: translateX(6px);
}

/* ==========================================================================
   9. PRODUCTS GRID & DOOR CARDS
   ========================================================================== */
.products-section {
  padding: 96px 24px;
  background: var(--bg-cream);
}
.products-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.door-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.door-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}
.door-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent-bronze);
  color: var(--bg-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 10;
  letter-spacing: 1px;
}
.door-card-badge.new {
  background: #2E5A44;
}
.door-img-container {
  height: 330px;
  background: #F7F5F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.door-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.door-card:hover .door-img {
  transform: scale(1.05);
}
.door-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.door-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}
.door-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.door-specs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.door-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-bronze);
  margin-top: auto;
  margin-bottom: 16px;
}
.door-actions {
  display: flex;
  gap: 10px;
}
.btn-card-primary {
  flex: 1;
  background: var(--text-dark);
  color: var(--bg-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-card-primary:hover {
  background: var(--accent-bronze);
}
.btn-card-outline {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-card-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-bronze);
  background: var(--bg-light);
}

/* ==========================================================================
   10. WHY STALY 8-KEY ADVANTAGES
   ========================================================================== */
.why-staly-section {
  padding: 96px 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.advantage-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.advantage-item::top {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.advantage-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}
.advantage-item:hover::top {
  transform: scaleX(1);
}
.advantage-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-bronze);
  font-size: 1.6rem;
  transition: var(--transition);
}
.advantage-item:hover .advantage-icon-wrapper {
  background: var(--accent-bronze);
  color: var(--bg-white);
}
.advantage-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.advantage-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   11. LUXURY ENTRANCE LIFESTYLE BANNER
   ========================================================================== */
.luxury-banner {
  padding: 110px 24px;
  /* Using WordPress Uploaded SD-23-lifestyle.jpg banner */
  background: linear-gradient(135deg, rgba(20, 17, 15, 0.92) 0%, rgba(35, 26, 20, 0.84) 100%),
              url('https://skylinesenterprises.com/wp-content/uploads/2026/07/SD-23-lifestyle.jpg') center/cover no-repeat;
  color: var(--bg-white);
  text-align: center;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.luxury-banner-content {
  max-width: 800px;
  margin: 0 auto;
}
.luxury-banner-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--bg-white);
  margin-bottom: 20px;
}
.luxury-banner-desc {
  font-size: 1.2rem;
  color: #E0DDD7;
  margin-bottom: 36px;
  font-weight: 300;
}

/* ==========================================================================
   12. SMART LOCK SECTION
   ========================================================================== */
.smartlock-section {
  padding: 96px 24px;
  background: var(--bg-dark);
  color: var(--bg-white);
}
.smartlock-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  text-align: center;
}
.smartlock-item {
  background: var(--bg-dark-card);
  padding: 32px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}
.smartlock-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}
.smartlock-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.smartlock-item h4 {
  font-size: 1.3rem;
  color: var(--bg-white);
  margin-bottom: 10px;
}
.smartlock-item p {
  font-size: 0.9rem;
  color: #B3ADA6;
}

/* ==========================================================================
   13. TESTIMONIALS & DEALER BANNER
   ========================================================================== */
.testimonials-section {
  padding: 96px 24px;
  background: var(--bg-white);
  text-align: center;
}
.testimonial-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid var(--border-light);
}
.stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-bronze);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dealer-banner {
  background: linear-gradient(135deg, var(--accent-bronze) 0%, var(--accent-bronze-dark) 100%);
  padding: 70px 24px;
  color: var(--bg-white);
}
.dealer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.dealer-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--bg-white);
  margin-bottom: 10px;
}
.dealer-text p {
  font-size: 1.1rem;
  color: #F0EDE8;
}

/* ==========================================================================
   14. FOOTER & MODAL BACKDROP
   ========================================================================== */
.main-footer {
  background: var(--bg-dark);
  color: #B3ADA6;
  padding: 80px 24px 30px;
  font-size: 0.95rem;
  border-top: 1px solid var(--border-gold);
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 1.5fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 44px;
}
.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: 2px;
}
.footer-col h4 {
  color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a:hover {
  color: var(--accent-gold);
}
.newsletter-form {
  display: flex;
  margin-top: 16px;
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-dark);
  background: #1E1A17;
  color: var(--bg-white);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  outline: none;
}
.newsletter-btn {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border: none;
  padding: 0 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}
.newsletter-btn:hover {
  background: var(--accent-gold-hover);
}
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* Interactive Quick View Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 12, 10, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}
.modal-backdrop.active .modal-content {
  transform: translateY(0);
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-cream);
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.modal-img-area {
  background: #F7F5F0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.modal-img-area img {
  max-height: 360px;
  object-fit: contain;
}
.modal-info-area {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS (ALL DEVICES)
   ========================================================================== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .hamburger-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 30px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }
  .nav-links.mobile-open {
    transform: translateY(0);
  }
  .modal-content {
    grid-template-columns: 1fr;
  }
  .hero-section {
    padding: 60px 20px;
  }
  .dealer-container {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar-container {
    justify-content: center;
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}
