  /* --- GLOBAL RESETS (Only for the nav) --- */
  .yucca-nav-wrapper {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  /* --- NAVIGATION BAR --- */
  .yucca-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #171717;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #171717;
    z-index: 9999;
    height: 70px;
  }

  .yucca-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* --- LOGO --- */
  .yucca-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    margin-right: 40px;
  }

  /* --- DESKTOP LINKS --- */
  .yucca-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1; 
  }

  .yucca-nav-item {
    position: relative;
    height: 70px; 
    display: flex;
    align-items: center;
  }

  .yucca-nav-item > a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    cursor: pointer;
  }

  .yucca-nav-item:hover > a {
    color: #a1a1a1;
  }

  /* Dropdown Chevron Icon */
  .yucca-chevron {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
  }

  .yucca-nav-item:hover .yucca-chevron {
    transform: rotate(180deg);
  }

  /* --- MEGA MENU DROPDOWN --- */
  .yucca-mega-menu {
    position: absolute;
    top: 70px;
    left: -20px;
    background-color: #111111;
    width: 650px; /* Wider to accommodate cards */
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    padding: 24px;
    
    display: flex;
    gap: 30px;
    
    /* Animation setup */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
  }

  /* Standard Dropdown (for items without images) */
  .yucca-dropdown-menu {
    width: 220px; 
    padding: 12px 0;
    display: block; /* Overrides mega menu flex */
  }

  .yucca-nav-item:hover .yucca-mega-menu,
  .yucca-nav-item:hover .yucca-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* MEGA MENU LEFT SIDE: Links */
  .mega-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid #3f3f3f;
    padding-right: 24px;
  }

  .mega-menu-links a, 
  .yucca-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .mega-menu-links a:hover,
  .yucca-dropdown-menu a:hover {
    color: #000000;
    background-color: #f5f5f5;
  }

  /* MEGA MENU RIGHT SIDE: Cards */
  .mega-menu-cards {
    flex: 1.2;
    display: flex;
    gap: 16px;
  }

  .mega-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    background-color: #444444f0;
    border: 1px solid #444444f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mega-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }

  .mega-card-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
  }

  .mega-card-content {
    padding: 12px;
  }

  .mega-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin: 0 0 4px 0;
  }

  .mega-card-desc {
    font-size: 0.8rem;
    color: white;
    margin: 0;
  }

  /* --- RIGHT SIDE (CART & HAMBURGER) --- */
  .yucca-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .yucca-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    text-decoration: none;
    cursor: pointer;
  }

  .yucca-cart svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
  }

  .yucca-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #111111;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  /* --- MOBILE TOGGLE --- */
  .yucca-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }

  .yucca-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #111111;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* --- MOBILE RESPONSIVENESS --- */
  @media (max-width: 992px) {
    .yucca-nav-links {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
      gap: 0;
      height: calc(100vh - 70px);
      overflow-y: auto;
      
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
    }

    .yucca-nav-links.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      border-top: 1px solid #eaeaea;
    }

    .yucca-nav-item {
      width: 100%;
      height: auto;
      flex-direction: column;
      align-items: flex-start;
      border-bottom: 1px solid #f5f5f5;
    }

    .yucca-nav-item > a {
      width: 100%;
      padding: 20px 24px;
      justify-content: space-between;
    }

    /* Restructure Mega Menu for Mobile */
    .yucca-mega-menu, .yucca-dropdown-menu {
      position: static;
      width: 100%;
      box-shadow: none;
      border: none;
      border-radius: 0;
      background-color: #fcfcfc;
      padding: 0;
      flex-direction: column; /* Stack cards below links */
      gap: 0;
      
      display: none;
      opacity: 1;
      visibility: visible;
      transform: none;
    }

    .yucca-nav-item.mobile-open .yucca-mega-menu,
    .yucca-nav-item.mobile-open .yucca-dropdown-menu {
      display: flex;
    }
    .yucca-nav-item.mobile-open .yucca-chevron {
      transform: rotate(180deg);
    }

    .mega-menu-links {
      border-right: none;
      padding: 0;
      gap: 0;
    }

    .mega-menu-links a, .yucca-dropdown-menu a {
      padding: 15px 24px 15px 40px;
      border-radius: 0;
      border-bottom: 1px solid #f5f5f5;
    }

    .mega-menu-cards {
      padding: 20px 24px;
      flex-direction: column; /* Stack cards vertically on phone */
    }

    .yucca-mobile-toggle { display: block; }
    .yucca-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .yucca-mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .yucca-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  }

  /*-- FOOTER --*/
  /* --- FOOTER WRAPPER --- */
  .propper-footer-wrapper {
    background-color: #0a0a0a;
    border-top: 1px solid #2d2d35;
    padding: 80px 20px 30px 20px;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #a1a1aa; /* Soft gray */
  }

  .propper-footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* --- FOOTER MAIN GRID --- */
  .propper-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  /* --- COLUMN 1: BRAND --- */
  .propper-footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .propper-footer-desc {
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 25px;
  }

  /* Social Icons */
  .propper-social-links {
    display: flex;
    gap: 15px;
  }

  .propper-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #16161a;
    border: 1px solid #2d2d35;
    border-radius: 50%;
    color: #a1a1aa;
    transition: all 0.3s ease;
  }

  .propper-social-links a:hover {
    background-color: #f59e0b; /* Amber/Gold Accent */
    color: #111111;
    border-color: #f59e0b;
    transform: translateY(-3px);
  }

  .propper-social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  /* --- COLUMNS 2, 3, 4: LINKS & CONTACT --- */
  .propper-footer-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .propper-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .propper-footer-links a, 
  .propper-footer-contact li {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
  }

  .propper-footer-links a:hover {
    color: #f59e0b; /* Amber hover effect */
  }

  .propper-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .propper-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }

  .propper-footer-contact svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #f59e0b;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* --- FOOTER BOTTOM (COPYRIGHT) --- */
  .propper-footer-bottom {
    border-top: 1px solid #2d2d35;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
  }

  .propper-bottom-links {
    display: flex;
    gap: 20px;
  }

  .propper-bottom-links a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .propper-bottom-links a:hover {
    color: #ffffff;
  }

  /* --- RESPONSIVENESS --- */
  @media (max-width: 992px) {
    .propper-footer-grid {
      grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
    }
  }

  @media (max-width: 600px) {
    .propper-footer-wrapper {
      padding: 60px 20px 20px 20px;
    }
    .propper-footer-grid {
      grid-template-columns: 1fr; /* 1 column on mobile */
      gap: 40px;
    }
    .propper-footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
  }

/*----SECTION ONE---*/

  /* --- ASYMMETRIC SPLIT HERO --- */
  .propper-split-hero {
    display: flex;
    min-height: 85vh; /* Takes up 85% of the screen height */
    width: 100%;
    background-color: #0a0a0a;
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* This padding ensures the content isn't hidden behind your fixed navigation! */
    padding-top: 70px; 
  }

  /* --- LEFT SIDE: CONTENT --- */
  .propper-hero-content {
    flex: 1; /* Takes up 50% of the space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5% 8%;
    background-color: #0a0a0a;
  }

  .propper-hero-kicker {
    color: #f59e0b; /* Amber/Gold Accent */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
  }

  .propper-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 25px 0;
    letter-spacing: -1px;
  }

  .propper-hero-desc {
    color: #a1a1aa;
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 500px;
  }

  /* --- BUTTONS --- */
  .propper-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allows buttons to stack on very small screens */
  }

  .propper-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px; /* Slight rounding for a modern feel */
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
  }

  /* Primary Button (Solid Amber) */
  .propper-btn-primary {
    background-color: #f59e0b;
    color: #111111;
    border: 2px solid #f59e0b;
  }

  .propper-btn-primary:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
  }

  /* Secondary Button (Outlined) */
  .propper-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #3f3f46;
  }

  .propper-btn-secondary:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #111111;
    transform: translateY(-2px);
  }

  /* --- RIGHT SIDE: IMAGE --- */
  .propper-hero-image {
    flex: 1; /* Takes up the other 50% */
    position: relative;
    background-image: url('images/path-light-landscape-lighting-luna-nova.png'); /* Replace with your hero image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Optional: A very subtle gradient overlay so the image isn't overly bright next to the dark theme */
  .propper-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0) 30%);
  }

  /* --- MOBILE RESPONSIVENESS --- */
  @media (max-width: 992px) {
    .propper-split-hero {
      flex-direction: column-reverse; /* Puts the text on bottom, image on top for mobile */
      min-height: auto;
      padding-top: 70px;
    }

    .propper-hero-image {
      min-height: 45vh; /* Gives the image a fixed height on phones */
      width: 100%;
    }

    .propper-hero-content {
      padding: 10% 6%;
      align-items: center;
      text-align: center;
    }

    .propper-hero-title {
      font-size: 2.8rem;
    }

    .propper-hero-actions {
      justify-content: center;
      width: 100%;
    }

    .propper-btn {
      width: 100%; /* Makes buttons full-width on mobile for easier tapping */
      max-width: 350px;
    }
    
    /* Remove the fade gradient on mobile since it stacks */
    .propper-hero-image::after {
      display: none; 
    }
  }

  @media (max-width: 480px) {
    .propper-hero-title {
      font-size: 2.2rem;
    }
  }

  /* SECTION TWO */

  /* --- PHILOSOPHY SECTION --- */
  .propper-philosophy-section {
    background-color: #0a0a0a; /* Matches your dark theme perfectly */
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .propper-philosophy-container {
    max-width: 900px; /* Keeps the text from getting too wide and hard to read */
  }

  .propper-philosophy-text {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.3;
    color: #f5f5f7;
    margin: 0;
    letter-spacing: -1px;
  }

  /* Emphasize a few key words with your brand's amber/gold color */
  .propper-philosophy-highlight {
    color: #f59e0b; 
  }

  .propper-philosophy-sub {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    color: #a1a1aa; /* Soft gray */
    margin-top: 40px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
  }

  /* --- MOBILE RESPONSIVENESS --- */
  @media (max-width: 768px) {
    .propper-philosophy-section {
      padding: 80px 20px;
    }
    .propper-philosophy-text {
      font-size: 1.8rem;
      line-height: 1.4;
    }
    .propper-philosophy-sub {
      font-size: 0.9rem;
      margin-top: 30px;
    }
  }

/* SECTION THREE */

  /* --- BENTO GRID WRAPPER --- */
  .propper-bento-section {
    background-color: #0a0a0a;
    padding: 60px 20px 120px 20px;
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  .propper-bento-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* --- HEADER --- */
  .propper-bento-header {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .propper-bento-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: -1px;
  }

  .propper-bento-desc {
    color: #a1a1aa;
    font-size: 1.1rem;
    margin: 0;
    max-width: 500px;
  }

  /* --- THE GRID --- */
  .propper-bento-grid {
    display: grid;
    /* Creates a 3-column layout */
    grid-template-columns: repeat(3, 1fr);
    /* Creates distinct row heights */
    grid-template-rows: 350px 300px; 
    gap: 20px;
  }

  /* --- BENTO CARDS --- */
  .propper-bento-card {
    position: relative;
    background-color: #16161a;
    border-radius: 16px;
    border: 1px solid #2d2d35;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    cursor: pointer;
  }

  .propper-bento-card:hover {
    transform: translateY(-5px);
    border-color: #f59e0b; /* Amber highlight on hover */
  }

  /* Background Images inside the cards */
  .propper-bento-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Keeps the images moody and text readable */
    transition: opacity 0.4s ease, transform 0.6s ease;
    z-index: 1;
  }

  .propper-bento-card:hover .propper-bento-img {
    opacity: 0.8;
    transform: scale(1.05); /* Slight zoom effect */
  }

  /* Gradient to ensure text always pops */
  .propper-bento-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
    z-index: 2;
  }

  /* Text Content */
  .propper-bento-content {
    position: relative;
    z-index: 3;
  }

  .propper-bento-kicker {
    color: #f59e0b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
  }

  .propper-bento-name {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 10px 0;
  }

  .propper-bento-link {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .propper-bento-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.2s ease;
  }

  .propper-bento-card:hover .propper-bento-link svg {
    transform: translateX(4px); /* Arrow slides right on hover */
  }

  /* --- SPECIFIC CARD SIZING (The "Bento" Look) --- */
  
  /* Make the first card span 2 columns */
  .bento-large {
    grid-column: span 2;
  }

  /* The 4th card spans 2 columns on the bottom row */
  .bento-wide {
    grid-column: span 2;
  }

  /* --- MOBILE RESPONSIVENESS --- */
  @media (max-width: 992px) {
    .propper-bento-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    .propper-bento-grid {
      grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
      grid-template-rows: auto;
      auto-rows: 300px;
    }
    .bento-large, .bento-wide {
      grid-column: span 2;
    }
  }

  @media (max-width: 600px) {
    .propper-bento-grid {
      grid-template-columns: 1fr; /* 1 column on phone */
      auto-rows: 280px;
    }
    .bento-large, .bento-wide {
      grid-column: span 1;
    }
    .propper-bento-title {
      font-size: 2.2rem;
    }
  }

/* SECTION FOUR */
  /* --- DUAL CTA SECTION --- */
  .propper-cta-section {
    background-color: #0a0a0a;
    padding: 80px 20px 120px 20px;
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  .propper-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* --- CTA CARDS --- */
  .propper-cta-card {
    background-color: #16161a;
    border: 1px solid #2d2d35;
    border-radius: 16px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .propper-cta-card:hover {
    transform: translateY(-5px);
    border-color: #f59e0b; /* Amber border on hover */
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.05); /* Very subtle amber glow */
  }

  /* Icon Wrapper */
  .propper-cta-icon {
    width: 60px;
    height: 60px;
    background-color: #222228;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #f59e0b; /* Amber icon */
  }

  .propper-cta-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Text Content */
  .propper-cta-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
  }

  .propper-cta-desc {
    color: #a1a1aa;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 40px 0;
  }

  /* --- CTA BUTTONS --- */
  .propper-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    align-self: flex-start; /* Keeps the button from stretching full width */
  }

  /* Primary Button for Pros (Your main target) */
  .cta-btn-pro {
    background-color: #f59e0b;
    color: #111111;
    border: 2px solid #f59e0b;
  }

  .cta-btn-pro:hover {
    background-color: #d97706;
    border-color: #d97706;
  }

  /* Secondary Button for Homeowners */
  .cta-btn-home {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #3f3f46;
  }

  .cta-btn-home:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #111111;
  }

  /* --- MOBILE RESPONSIVENESS --- */
  @media (max-width: 992px) {
    .propper-cta-container {
      grid-template-columns: 1fr; /* Stacks the cards vertically */
    }
    .propper-cta-card {
      padding: 80px 40px;
    }
  }

  @media (max-width: 600px) {
    .propper-cta-card {
      padding: 80px 25px;
    }
    .propper-cta-title {
      font-size: 1.8rem;
    }
    .propper-cta-btn {
      width: 80%; /* Full width buttons on mobile */
    }
  }

  /* SECTION FIVE */

  /* --- FAQ ACCORDION SECTION --- */
  .propper-faq-section {
    background-color: #0a0a0a;
    padding: 80px 20px 120px 20px;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  .propper-faq-container {
    max-width: 800px; /* Kept narrow for optimal reading length */
    margin: 0 auto;
  }

  /* --- HEADER --- */
  .propper-faq-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .propper-faq-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
  }

  .propper-faq-desc {
    color: #a1a1aa;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 600px;
  }

  /* --- ACCORDION ITEMS --- */
  .propper-faq-item {
    border-bottom: 1px solid #2d2d35;
  }

  .propper-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: inherit;
  }

  .propper-faq-question:hover {
    color: #f59e0b; /* Amber highlight on hover */
  }

  /* The Plus/Minus Icon */
  .propper-faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-left: 20px;
    color: #f59e0b;
  }

  .propper-faq-icon::before,
  .propper-faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Horizontal line of the plus */
  .propper-faq-icon::before {
    top: 8px; 
    left: 0; 
    width: 18px; 
    height: 2px;
  }

  /* Vertical line of the plus */
  .propper-faq-icon::after {
    top: 0; 
    left: 8px; 
    width: 2px; 
    height: 18px;
  }

  /* Active state (Turns Plus into Minus) */
  .propper-faq-question.active .propper-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
  }

  /* --- ACCORDION ANSWER --- */
  .propper-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .propper-faq-answer p {
    margin: 0;
    padding-bottom: 25px;
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 1.05rem;
  }

  /* --- MOBILE RESPONSIVENESS --- */
  @media (max-width: 600px) {
    .propper-faq-title {
      font-size: 2rem;
    }
    .propper-faq-question {
      font-size: 1.1rem;
      padding: 20px 0;
    }
    .propper-faq-answer p {
      font-size: 0.95rem;
    }
  }

/* UPLIGHTS PRODUCT PAGE */

  /* --- GLOBAL PAGE SETTINGS --- */
  .propper-product-page {
    background-color: #0a0a0a;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #a1a1aa;
    padding-bottom: 100px;
  }

  /* =========================================
     1. HERO SECTION (Category Intro)
     ========================================= */
  .propper-product-hero {
    padding: 140px 20px 80px 20px; 
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .propper-product-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .propper-product-kicker {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
  }

  .propper-product-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
  }

  .propper-product-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 500px;
  }

  .propper-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #f5f5f7; 
    color: #111111;
    border-radius: 30px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .propper-btn-hero:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
  }

  .propper-btn-hero svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .propper-product-image-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .propper-product-image-wrap::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(0,0,0,0) 60%);
    z-index: 0;
  }

  .propper-product-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
  }

  /* =========================================
     2. PRODUCT GRID SECTION (Individual SKUs)
     ========================================= */
  .propper-catalog-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .propper-grid-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #2d2d35;
    padding-bottom: 20px;
  }

  .propper-grid-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.5px;
  }

  .propper-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
  }

  .propper-product-card {
    background-color: #16161a;
    border: 1px solid #2d2d35;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .propper-product-card:hover {
    transform: translateY(-5px);
    border-color: #f59e0b; 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }

  .propper-card-image-wrap {
    position: relative;
    height: 250px;
    background-color: #111115; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #2d2d35;
    overflow: hidden;
  }

  .propper-card-image-wrap::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
  }

  .propper-card-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
    transition: transform 0.4s ease;
  }

  .propper-product-card:hover .propper-card-image {
    transform: scale(1.05); 
  }

  .propper-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .propper-card-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 20px 0;
  }

  .propper-card-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    flex: 1; 
  }

  .propper-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
  }

  .propper-spec-label {
    color: #888891;
    font-weight: 500;
  }

  .propper-spec-value {
    color: #e4e4e7;
    font-weight: 600;
  }

  .propper-swatch-group {
    display: flex;
    gap: 8px;
  }

  .propper-mini-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .swatch-bronze { background: linear-gradient(135deg, #5c4d3c 0%, #3b2f24 100%); }
  .swatch-black { background-color: #18181b; }

  .propper-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .propper-card-link {
    color: #f59e0b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
  }

  .propper-card-link:hover {
    color: #d97706;
  }

  .propper-card-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.2s ease;
  }

  .propper-product-card:hover .propper-card-link svg {
    transform: translateX(4px); 
  }
  /* =========================================
     PREMIUM LIGHTBOX OVERLAY
     ========================================= */
  .propper-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .propper-lightbox.active {
    opacity: 1;
    visibility: visible;
  }

  /* Close Button */
  .propper-lb-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
  }

  .propper-lb-close:hover {
    background: #ffffff;
    color: #111111;
    transform: scale(1.05);
  }

  /* Navigation Arrows */
  .propper-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
  }

  .propper-lb-nav:hover {
    background: #ffffff;
    color: #111111;
    transform: scale(1.1);
  }

  .propper-lb-prev { left: 40px; }
  .propper-lb-next { right: 40px; }

  /* The Image Container */
  .propper-lb-content {
    max-width: 85%;
    max-height: 85vh;
    position: relative;
  }

  .propper-lb-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    
    /* Smooth fade when swapping images */
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .propper-lb-image.loaded {
    opacity: 1;
  }

  /* Image Counter (e.g., "1 of 3") */
  .propper-lb-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #a1a1aa;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
  }

  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .propper-lb-nav {
      width: 45px; height: 45px;
    }
    .propper-lb-prev { left: 15px; }
    .propper-lb-next { right: 15px; }
    .propper-lb-close { top: 15px; right: 15px; width: 40px; height: 40px; }
    .propper-lb-content { max-width: 95%; }
  }

  /* --- RESPONSIVE --- */
  @media (max-width: 992px) {
    .propper-product-hero {
      flex-direction: column;
      text-align: center;
      gap: 40px;
      padding-top: 100px;
    }
    .propper-product-hero-text {
      align-items: center; 
    }
    .propper-product-desc {
      margin: 0 auto 30px auto;
    }
  }

  @media (max-width: 600px) {
    .propper-product-title { font-size: 2.8rem; }
    .propper-grid-header h2 { font-size: 1.6rem; }
  }

    /* --- CONTACT SECTION WRAPPER --- */
  .propper-contact-section {
    background-color: #0a0a0a;
    padding: 120px 20px;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #a1a1aa;
  }

  .propper-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Info takes less space, Form takes more */
    gap: 80px;
    align-items: start;
  }

  /* --- LEFT SIDE: CONTACT INFO --- */
  .propper-contact-info {
    display: flex;
    flex-direction: column;
  }

  .propper-contact-kicker {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
  }

  .propper-contact-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
  }

  .propper-contact-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 50px 0;
    max-width: 400px;
  }

  /* Info Blocks (Email, Phone, Location) */
  .propper-info-block {
    margin-bottom: 35px;
  }

  .propper-info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #888891;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .propper-info-label svg {
    width: 18px;
    height: 18px;
    stroke: #f59e0b;
    fill: none;
    stroke-width: 2;
  }

  .propper-info-value {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  a.propper-info-value:hover {
    color: #f59e0b;
  }

  /* --- RIGHT SIDE: THE FORM --- */
  .propper-contact-form-wrap {
    background-color: #16161a;
    border: 1px solid #2d2d35;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .propper-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .propper-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .propper-form-row .propper-form-group {
    margin-bottom: 0; /* Prevents double margins in rows */
  }

  .propper-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e4e4e7;
  }

  /* Inputs, Selects, and Textareas */
  .propper-input, 
  .propper-select, 
  .propper-textarea {
    width: 100%;
    background-color: #0a0a0a;
    border: 1px solid #2d2d35;
    border-radius: 8px;
    padding: 16px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
  }

  /* The "Apple" Focus Glow */
  .propper-input:focus, 
  .propper-select:focus, 
  .propper-textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
  }

  /* Customizing the Select Dropdown Arrow */
  .propper-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
  }

  .propper-textarea {
    resize: vertical;
    min-height: 150px;
  }

  /* Submit Button */
  .propper-submit-btn {
    background-color: #f59e0b;
    color: #111111;
    border: none;
    padding: 18px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    margin-top: 10px;
    letter-spacing: 0.5px;
  }

  .propper-submit-btn:hover {
    background-color: #d97706;
    transform: translateY(-2px);
  }

  /* --- RESPONSIVENESS --- */
  @media (max-width: 992px) {
    .propper-contact-container {
      grid-template-columns: 1fr; /* Stacks form under text */
      gap: 50px;
    }
    .propper-contact-title {
      font-size: 2.8rem;
    }
  }

  @media (max-width: 600px) {
    .propper-contact-form-wrap {
      padding: 30px 20px; /* Less padding on small phones */
    }
    .propper-form-row {
      grid-template-columns: 1fr; /* Stacks side-by-side inputs */
      gap: 20px;
    }
    .propper-contact-title {
      font-size: 2.5rem;
    }
  }
