/** Shopify CDN: Minification failed

Line 592:0 All "@import" rules must come first
Line 632:0 All "@import" rules must come first
Line 811:0 All "@import" rules must come first
Line 922:0 All "@import" rules must come first
Line 1177:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-grid (INDEX:0) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;600;700&display=swap');

  .collection-grid-section {
    padding: 3rem 0 5rem;
    background: #000;
  }

  .collection-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  @media (min-width: 1024px) {
    .collection-grid-container {
      padding: 0 3rem;
    }
  }

  .collection-filter-btns {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(192,192,192,0.3);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .filter-btn:hover,
  .filter-btn.active {
    border-color: #c0c0c0;
    color: #c0c0c0;
    background: rgba(192,192,192,0.08);
  }

  .collection-grid-meta {
    text-align: center;
    margin-bottom: 3rem;
  }

  .collection-grid-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .collection-grid-divider {
    width: 2rem;
    height: 2px;
    background: #c0c0c0;
  }

  .collection-grid-label-text {
    color: #c0c0c0;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }

  .collection-grid-count {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    margin-top: 0.5rem;
  }

  .product-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .product-grid-layout {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 1200px) {
    .product-grid-layout {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* Product card — matches collection-card style */
  .product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(192, 192, 192, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
  }

  .product-card:hover {
    border-color: #c0c0c0;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
    transform: translateY(-6px);
  }

  .product-card-image {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: #111;
  }

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

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

  .product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2), transparent);
  }

  .product-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    background: #c0c0c0;
    color: #000;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
  }

  .product-card-badge.sale {
    background: #fff;
  }

  .product-card-no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card-no-image span {
    color: rgba(192, 192, 192, 0.3);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
  }

  .product-card-content {
    padding: 1.25rem;
    background: #111;
    border-top: 2px solid rgba(192, 192, 192, 0.3);
    transition: border-color 0.3s ease;
  }

  .product-card:hover .product-card-content {
    border-color: #c0c0c0;
  }

  .product-card-label {
    color: #c0c0c0;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }

  .product-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    line-height: 1.1;
  }

  .product-card-price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
  }

  .product-card-price {
    color: #c0c0c0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }

  .product-card-compare {
    color: rgba(255,255,255,0.35);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    text-decoration: line-through;
  }

  .product-card-cta {
    color: #c0c0c0;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s ease;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s ease;
  }

  .product-card:hover .product-card-cta {
    opacity: 1;
    transform: translateY(0);
    gap: 0.75rem;
  }

  .product-card-wrap {
    position: relative;
  }

  .quick-view-btn {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: #c0c0c0;
    border: 1px solid #c0c0c0;
    padding: 0.5rem 1.25rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
  }

  .product-card-wrap:hover .quick-view-btn {
    opacity: 1;
  }

  .quick-view-btn:hover {
    background: #c0c0c0;
    color: #000;
  }

  /* Quick View Modal */
  .qv-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .qv-overlay.active {
    display: flex;
  }

  .qv-modal {
    background: #111;
    border: 1px solid rgba(192,192,192,0.3);
    max-width: 820px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
  }

  @media (max-width: 640px) {
    .qv-modal {
      grid-template-columns: 1fr;
    }
  }

  .qv-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #c0c0c0;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s;
  }

  .qv-close:hover { color: white; }

  .qv-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  @media (max-width: 640px) {
    .qv-image { height: 260px; }
  }

  .qv-image-placeholder {
    width: 100%;
    height: 400px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(192,192,192,0.2);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.2em;
  }

  .qv-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .qv-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
  }

  .qv-price {
    color: #c0c0c0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }

  .qv-variant-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }

  .qv-variant-select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(192,192,192,0.3);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
  }

  .qv-variant-select option { background: #000; }

  .qv-qty-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .qv-qty-btn {
    width: 34px;
    height: 34px;
    background: rgba(192,192,192,0.1);
    border: 1px solid rgba(192,192,192,0.3);
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
  }

  .qv-qty-btn:hover {
    background: rgba(192,192,192,0.3);
    border-color: #c0c0c0;
  }

  .qv-qty-input {
    width: 50px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(192,192,192,0.3);
    color: white;
    padding: 0.4rem;
    font-family: 'Poppins', sans-serif;
  }

  .qv-atc-btn {
    width: 100%;
    padding: 0.875rem;
    background: #c0c0c0;
    color: #000;
    border: 2px solid #c0c0c0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .qv-atc-btn:hover {
    background: transparent;
    color: #c0c0c0;
  }

  .qv-view-link {
    display: block;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
  }

  .qv-view-link:hover { color: #c0c0c0; }

  /* Recently Viewed */
  .recently-viewed {
    padding: 3rem 0 4rem;
    background: #000;
    border-top: 1px solid rgba(192,192,192,0.1);
  }

  .recently-viewed-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  @media (min-width: 1024px) {
    .recently-viewed-container { padding: 0 3rem; }
  }

  .recently-viewed-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .recently-viewed-divider {
    width: 2rem;
    height: 2px;
    background: #c0c0c0;
  }

  .recently-viewed-label {
    color: #c0c0c0;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }

  .recently-viewed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .recently-viewed-grid { grid-template-columns: repeat(4, 1fr); }
  }

  .rv-card {
    text-decoration: none;
    border: 1px solid rgba(192,192,192,0.15);
    transition: all 0.3s ease;
    display: block;
  }

  .rv-card:hover {
    border-color: #c0c0c0;
    transform: translateY(-4px);
  }

  .rv-card-image {
    height: 200px;
    overflow: hidden;
  }

  .rv-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

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

  .rv-card-info {
    padding: 0.75rem;
    background: #111;
  }

  .rv-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }

  .rv-card-price {
    color: #c0c0c0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
  }

  .collection-grid-empty {
    text-align: center;
    padding: 5rem 1.5rem;
    color: rgba(255,255,255,0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
  }

  .collection-grid-empty h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(255,255,255,0.2);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
/* END_SECTION:collection-grid */

/* START_SECTION:collection-header (INDEX:1) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;600;700&display=swap');

  .collection-header {
    padding: 6rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 4rem;
  }

  .collection-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .collection-header h1 em {
    color: #c0c0c0;
    font-style: normal;
  }

  .collection-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    font-family: 'Poppins', sans-serif;
  }

  @media (min-width: 1024px) {
    .collection-header {
      padding: 6rem 3rem;
    }
  }
/* END_SECTION:collection-header */

/* START_SECTION:featured-collections (INDEX:2) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;600;700&display=swap');

  .collections-section {
    padding: 5rem 0;
    background: #000;
  }

  .collections-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  @media (min-width: 1024px) {
    .collections-container {
      padding: 0 3rem;
    }
  }

  .collections-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .collections-header-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .collections-header-divider {
    width: 2rem;
    height: 2px;
    background: #c0c0c0;
  }

  .collections-header-text {
    color: #c0c0c0;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }

  .collections-header-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .collections-header-title em {
    font-style: normal;
    color: #c0c0c0;
    font-weight: 700;
  }

  .collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .collections-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #c0c0c0;
    transition: all 0.3s ease;
  }

  .collection-card:hover {
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
    transform: translateY(-8px);
  }

  .collection-card-image {
    position: relative;
    overflow: hidden;
    height: 320px;
  }

  .collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

  .collection-card:hover .collection-card-image img {
    transform: scale(1.08);
  }

  .collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4), transparent);
  }

  .collection-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: #c0c0c0;
    color: #000;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
  }

  .collection-card-content {
    padding: 1.5rem;
    background: #1a1a1a;
    border-top: 2px solid #c0c0c0;
  }

  .collection-card-label {
    color: #c0c0c0;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }

  .collection-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
  }

  .collection-card-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .collection-card-link {
    color: #c0c0c0;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
  }

  .collection-card-link:hover {
    gap: 1rem;
  }
/* END_SECTION:featured-collections */

/* START_SECTION:footer (INDEX:3) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;600;700&display=swap');

  .footer {
    padding: 3rem 0;
    border-top: 2px solid #c0c0c0;
    background: #000;
  }

  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  @media (min-width: 1024px) {
    .footer-container {
      padding: 0 3rem;
    }
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
    }
  }

  .footer-logo {
    height: 2rem;
    width: auto;
    opacity: 0.8;
  }

  .footer-rule {
    height: 2px;
    background: #c0c0c0;
    border: none;
    display: none;
    flex: 1;
  }

  @media (min-width: 768px) {
    .footer-rule {
      display: block;
    }
  }

  .footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
  }

  .footer-link:hover {
    color: #c0c0c0;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
    }
  }

  .footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-family: 'Poppins', sans-serif;
  }

  .footer-tagline {
    color: #c0c0c0;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:4) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;600;700&display=swap');

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid rgba(192, 192, 192, 0.2);
  }

  .navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid #c0c0c0;
    padding: 0.75rem 1.5rem;
  }

  .navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-logo {
    height: 2.5rem;
    width: auto;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .navbar-logo:hover {
    transform: scale(1.05);
  }

  .navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }

  .navbar-nav > li {
    position: relative;
  }

  .navbar-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c0c0c0;
    transition: width 0.3s ease;
  }

  .navbar-nav a:hover {
    color: #c0c0c0;
  }

  .navbar-nav a:hover::after {
    width: 100%;
  }

  .dropdown-toggle::before {
    content: '▼';
    font-size: 0.6rem;
    transition: transform 0.3s ease;
  }

  .dropdown-toggle.active::before {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-top: none;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 100;
  }

  .dropdown-menu.active {
    display: block;
  }

  .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
  }

  .dropdown-menu a::after {
    display: none;
  }

  .dropdown-menu a:hover {
    background: rgba(192, 192, 192, 0.1);
    color: #c0c0c0;
    padding-left: 2rem;
  }

  .navbar-cta {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border: 2px solid #c0c0c0;
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    margin-left: 1rem;
  }

  .navbar-cta:hover {
    background: #c0c0c0;
    color: #000;
  }

  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #c0c0c0;
    cursor: pointer;
    padding: 0.5rem;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .mobile-menu-toggle:hover {
    opacity: 0.8;
  }

  .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
  }

  @media (max-width: 767px) {
    .navbar {
      padding: 1rem 1.5rem;
    }

    .navbar-container {
      flex-wrap: wrap;
    }

    .mobile-menu-toggle {
      display: block;
      order: 3;
    }

    .navbar-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 0;
      background: rgba(0, 0, 0, 0.95);
      border-bottom: 2px solid #c0c0c0;
      padding: 1rem 0;
      width: 100%;
      margin-top: 0;
    }

    .navbar-nav.active {
      display: flex;
    }

    .navbar-nav li {
      width: 100%;
    }

    .navbar-nav a {
      display: block;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    }

    .navbar-nav a::after {
      display: none;
    }

    .dropdown-menu {
      position: static;
      background: rgba(192, 192, 192, 0.05);
      border: none;
      margin-top: 0;
      padding: 0;
    }

    .dropdown-menu a {
      padding: 0.75rem 3rem;
      border-left: 2px solid rgba(192, 192, 192, 0.2);
    }

    .dropdown-menu a:hover {
      padding-left: 3rem;
    }

    .navbar-cta {
      display: none;
    }

    .navbar-logo {
      order: 1;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hero (INDEX:5) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;600;700&display=swap');

  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 60px;
    background: transparent;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 0 1.5rem;
  }

  @media (min-width: 1024px) {
    .hero-content {
      padding: 0 3rem;
    }
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slide-in 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
  }

  .hero-eyebrow-text {
    color: #c0c0c0;
    font-size: 0.875rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 6rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 0.9;
    opacity: 0;
    animation: slide-in 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.35s forwards;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .hero-title em {
    font-style: normal;
    color: #c0c0c0;
    font-weight: 700;
  }

  .hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
    opacity: 0;
    animation: slide-in 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: slide-in 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.65s forwards;
  }

  .hero-btn {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    border: 2px solid #c0c0c0;
    cursor: pointer;
  }

  .hero-btn-primary {
    background: #c0c0c0;
    color: #000;
    border-color: #c0c0c0;
  }

  .hero-btn-primary:hover {
    background: transparent;
    color: #c0c0c0;
  }

  .hero-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.8);
  }

  .hero-btn-secondary:hover {
    border-color: #c0c0c0;
    color: #c0c0c0;
  }

  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
  }

  .hero-scroll-text {
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }

  .hero-scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  }

  @keyframes slide-in {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
/* END_SECTION:hero */