

/* Start:/local/templates/pasha/styles.css?177881333733287*/
/* ========================================
       CSS Variables
       ======================================== */
    :root {
      --bg-primary: #000000;
      --bg-secondary: #0C151F;
      --bg-card: #181D23;
      --text-primary: #ffffff;
      --text-secondary: rgba(255, 255, 255, 0.7);
      --text-muted: rgba(255, 255, 255, 0.4);
      --accent: #5D5D5D;
      --transition-fast: 0.2s ease;
      --transition-base: 0.3s ease;
      --transition-slow: 0.6s ease;
    }

    /* ========================================
       Reset & Base
       ======================================== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-primary);
      background: var(--bg-primary);
      overflow-x: hidden;
    }

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

    a:hover {
      opacity: 0.8;
    }

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

    ul {
      list-style: none;
    }

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

    /* ========================================
       Header
       ======================================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: #000000;
      transition: background var(--transition-base);
    }

    .header.scrolled {
      background: #000000;
    }

    .header-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* Logo */
    .logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .logo-icon {
      height: 48px;
      width: auto;
    }

    .logo-subtitle {
      font-size: 10px;
      font-weight: 400;
      color: #5D5D5D;
      line-height: 1.5;
      max-width: 320px;
      display: none;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    @media (min-width: 1200px) {
      .logo-subtitle {
        display: block;
      }
    }

    /* Navigation */
    .nav-main {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-main a {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-primary);
      white-space: nowrap;
      position: relative;
      padding: 4px 0;
    }

    .nav-main a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--text-primary);
      transition: width var(--transition-base);
    }

    .nav-main a:hover {
      opacity: 1;
    }

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

    .nav-item-wrap {
      position: relative;
    }

    .nav-dropdown {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .nav-dropdown svg {
      width: 10px;
      height: 10px;
      opacity: 0.6;
      transition: transform 0.3s ease;
    }

    .nav-item-wrap.open .nav-dropdown svg {
      transform: rotate(180deg);
    }

    /* Dropdown Menu */
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 16px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 200px;
      background: #111820;
      border: 1px solid rgba(201, 169, 110, 0.1);
      border-radius: 12px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  visibility 0.35s;
      z-index: 2000;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 110, 0.05);
    }

    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid rgba(201, 169, 110, 0.15);
    }

    /* Invisible bridge between trigger and menu */
    .dropdown-menu::after {
      content: '';
      position: absolute;
      top: -20px;
      left: 0;
      right: 0;
      height: 20px;
    }

    .nav-item-wrap.open .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu a {
      display: block;
      padding: 10px 24px;
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.7);
      transition: all 0.2s ease;
      letter-spacing: 0.3px;
    }

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

    .dropdown-menu a:hover {
      color: #fff;
      background: rgba(201, 169, 110, 0.08);
      padding-left: 28px;
      opacity: 1;
    }

    /* Mobile dropdown styles */
    @media (max-width: 1024px) {
      .nav-item-wrap {
        width: 100%;
      }

      .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-radius: 0;
        border-left: 1px solid rgba(201, 169, 110, 0.15);
        margin-left: 16px;
        padding: 4px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    padding 0.4s ease;
        box-shadow: none;
        backdrop-filter: none;
      }

      .dropdown-menu::before,
      .dropdown-menu::after {
        display: none;
      }

      .nav-item-wrap.open .dropdown-menu {
        max-height: 300px;
        padding: 8px 0;
        transform: none;
      }

      .dropdown-menu a {
        padding: 8px 24px;
        font-size: 15px;
        border-bottom: none;
      }

      .dropdown-menu a:hover {
        padding-left: 28px;
      }
    }

    /* Header Right */
    .header-right {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-shrink: 0;
    }

    .lang-wrap {
      position: relative;
    }

    .lang-switch {
      font-size: 13px;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 4px 0;
      cursor: pointer;
    }

    .lang-switch svg {
      width: 10px;
      height: 10px;
      opacity: 0.6;
      transition: transform 0.3s ease;
    }

    .lang-wrap.open .lang-switch svg {
      transform: rotate(180deg);
    }

    .lang-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      min-width: 140px;
      background: #111820;
      border: 1px solid rgba(201, 169, 110, 0.1);
      border-radius: 10px;
      padding: 6px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      z-index: 2000;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    }

    .lang-wrap.open .lang-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-option {
      display: block;
      width: 100%;
      text-align: left;
      padding: 9px 20px;
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      background: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .lang-option:hover {
      color: #fff;
      background: rgba(201, 169, 110, 0.08);
    }

    .lang-option.active {
      color: #c9a96e;
    }

    /* Search Overlay */
    .search-overlay {
      position: fixed;
      inset: 0;
      z-index: 5000;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 15vh;
    }

    .search-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .search-inner {
      width: 100%;
      max-width: 620px;
      padding: 0 24px;
      transform: translateY(20px);
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .search-overlay.open .search-inner {
      transform: translateY(0);
    }

    .search-close {
      position: absolute;
      top: 32px;
      right: 40px;
      background: none;
      border: none;
      cursor: pointer;
      opacity: 0.5;
      transition: opacity 0.2s ease, transform 0.2s ease;
      padding: 8px;
    }

    .search-close:hover {
      opacity: 1;
      transform: rotate(90deg);
    }

    .search-box {
      position: relative;
      width: 100%;
    }

    .search-box-icon {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .search-input {
      width: 100%;
      background: none;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      padding: 16px 0 16px 40px;
      font-size: 22px;
      font-weight: 300;
      color: #fff;
      font-family: inherit;
      outline: none;
      letter-spacing: 0.5px;
      transition: border-color 0.3s ease;
    }

    .search-input::placeholder {
      color: rgba(255,255,255,0.25);
    }

    .search-input:focus {
      border-color: rgba(201, 169, 110, 0.4);
    }

    .search-hints {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .search-hint-label {
      font-size: 12px;
      color: rgba(255,255,255,0.3);
      margin-right: 4px;
    }

    .search-hint {
      padding: 6px 16px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.1);
      background: none;
      color: rgba(255,255,255,0.5);
      font-size: 12px;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .search-hint:hover {
      border-color: rgba(201, 169, 110, 0.4);
      color: #fff;
      background: rgba(201, 169, 110, 0.08);
    }

    .search-results {
      margin-top: 32px;
    }

    .search-result-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .search-result-item:hover {
      padding-left: 8px;
    }

    .search-result-cat {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #c9a96e;
      min-width: 80px;
    }

    .search-result-name {
      font-size: 15px;
      font-weight: 300;
      color: rgba(255,255,255,0.8);
    }

    .search-result-item:hover .search-result-name {
      color: #fff;
    }

    .search-no-results {
      text-align: center;
      padding: 40px 0;
      color: rgba(255,255,255,0.3);
      font-size: 14px;
      font-weight: 300;
    }

    .header-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      transition: background var(--transition-fast);
    }

    .header-icon:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .header-icon svg {
      width: 20px;
      height: 20px;
      stroke: white;
      fill: none;
      stroke-width: 2;
    }

    /* Mobile Toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      z-index: 1100;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: white;
      transition: transform var(--transition-base), opacity var(--transition-base);
    }

    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(4px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(4px, -5px);
    }

    /* ========================================
       Hero Section
       ======================================== */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      background: #000;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
    }

    /* Hero Content */
    .hero-content {
      position: relative;
      z-index: 10;
      text-align: right;
      padding: 0 80px;
      width: 100%;
      max-width: 1440px;
    }

    .hero-brand {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 300;
      letter-spacing: 12px;
      text-transform: uppercase;
      color: var(--text-primary);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease 0.3s forwards;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Hero Scroll Arrow */
    .hero-arrow {
      position: absolute;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      opacity: 0.6;
      transition: opacity var(--transition-base), transform var(--transition-base);
      animation: bounceDown 2s ease infinite;
    }

    .hero-arrow:hover {
      opacity: 1;
    }

    @keyframes bounceDown {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* Hero Dots */
    .hero-dots {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 18px;
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      cursor: pointer;
      transition: background var(--transition-base), transform var(--transition-base);
    }

    .hero-dot.active {
      background: white;
      transform: scale(1.2);
    }

    .hero-dot:hover {
      background: rgba(255, 255, 255, 0.7);
    }

    /* ========================================
       Brands Section
       ======================================== */
    .brands-section {
      background: var(--bg-primary);
      padding: 60px 0 0;
    }

    .brands-title {
      text-align: center;
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 300;
      letter-spacing: 1px;
      margin-bottom: 48px;
      color: var(--text-primary);
    }

    .brands-grid {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
    }

    .brand-card {
      position: relative;
      aspect-ratio: 230 / 300;
      background: var(--bg-card);
      overflow: hidden;
      cursor: pointer;
    }

    .brand-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.25;
      transition: opacity var(--transition-slow), transform var(--transition-slow);
    }

    .brand-card.highlight .brand-card-img {
      opacity: 0.5;
    }

    .brand-card:hover .brand-card-img {
      opacity: 0.4;
      transform: scale(1.05);
    }

    .brand-card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      transition: background var(--transition-base);
    }

    .brand-card:hover .brand-card-overlay {
      background: rgba(0, 0, 0, 0.2);
    }

    .brand-card-logo {
      position: absolute;
      inset: 0;
      z-index: 2;
    }

    .brand-card-logo img {
      width: 100%;
      height: 100%;
    }

    /* Responsive brands grid */
    @media (max-width: 1024px) {
      .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 16px;
      }
    }

    @media (max-width: 640px) {
      .brands-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .brand-card {
        aspect-ratio: 1 / 1.2;
      }
    }

    /* ========================================
       About Section
       ======================================== */
    .about-section {
      position: relative;
      background: var(--bg-primary);
      padding: 100px 0;
      overflow: hidden;
    }

    .about-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.25;
      mix-blend-mode: screen;
    }

    .about-inner {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 40px;
      text-align: center;
    }

    .about-title {
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 300;
      letter-spacing: 0.5px;
      margin-bottom: 24px;
    }

    .about-text {
      font-size: clamp(12px, 1.1vw, 14px);
      font-weight: 300;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 56px;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .about-stats {
      display: flex;
      justify-content: center;
      gap: clamp(40px, 6vw, 100px);
    }

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

    .stat-number {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 11px;
      font-weight: 400;
      color: var(--text-muted);
      line-height: 1.5;
      letter-spacing: 0.5px;
    }

    @media (max-width: 640px) {
      .about-section {
        padding: 60px 0;
      }

      .about-stats {
        flex-direction: column;
        gap: 32px;
      }
    }

    /* ========================================
       Boutiques Section
       ======================================== */
    .boutiques-section {
      background: var(--bg-primary);
      padding: 80px 0 0;
    }

    .boutiques-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 436px;
    }

    .boutiques-info {
      padding-right: 60px;
    }

    .boutiques-title {
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 300;
      letter-spacing: 1px;
      margin-bottom: 28px;
    }

    .city-tabs {
      display: inline-flex;
      gap: 0;
      margin-bottom: 36px;
      background: #1A2332;
      border-radius: 28px;
      padding: 4px;
    }

    .city-tab {
      padding: 10px 32px;
      border-radius: 24px;
      font-size: 15px;
      font-weight: 400;
      border: none;
      color: var(--text-muted);
      background: transparent;
      transition: all var(--transition-fast);
      cursor: pointer;
    }

    .city-tab.active {
      background: #fff;
      color: #000;
    }

    .city-tab:hover:not(.active) {
      color: var(--text-primary);
    }

    .address-block {
      margin-bottom: 0;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .address-block:last-child {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .address-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .address-col label {
      display: block;
      font-size: 13px;
      letter-spacing: 0.5px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .address-col p {
      font-size: 18px;
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1.5;
    }

    .address-col a {
      color: var(--text-primary);
      text-decoration: none;
    }

    .address-col a:hover {
      text-decoration: underline;
    }

    .boutiques-map {
      position: relative;
      overflow: hidden;
      min-height: 436px;
    }

    /* Hide Leaflet attribution icon (flag) */
    .leaflet-control-attribution svg,
    .leaflet-control-attribution a[href="https://leafletjs.com"] {
      display: none !important;
    }
    .leaflet-control-attribution {
      background: rgba(0,0,0,0.5) !important;
      color: #555 !important;
      font-size: 10px !important;
    }
    .leaflet-control-attribution a {
      color: #666 !important;
    }

    .boutiques-map img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media (max-width: 1024px) {
      .boutiques-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .boutiques-info {
        padding-right: 0;
      }

      .boutiques-map {
        height: 300px;
      }
    }

    /* ========================================
       Footer
       ======================================== */
    .footer {
      background: var(--bg-primary);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 32px 0;
    }

    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .footer-social {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity var(--transition-fast);
    }

    .footer-social:hover {
      opacity: 0.8;
    }

    .footer-social svg {
      width: 18px;
      height: 18px;
      fill: black;
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .footer-legal p {
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .footer-privacy {
      font-size: 11px;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .footer-privacy:hover {
      color: var(--text-secondary);
    }

    @media (max-width: 768px) {
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-legal {
        flex-direction: column;
        gap: 12px;
      }
    }

    /* ========================================
       Premium Animations
       ======================================== */

    /* --- Preloader --- */
    .preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
    }
    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .preloader-logo {
      width: 260px;
      height: auto;
      animation: preloaderPulse 1.6s ease-in-out infinite;
    }
    .preloader-line {
      width: 140px;
      height: 1px;
      background: rgba(255,255,255,0.08);
      margin-top: 32px;
      position: relative;
      overflow: hidden;
      border-radius: 1px;
    }
    .preloader-line::after {
      content: '';
      position: absolute;
      left: 0; top: 0;
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #c9a96e, #f5d89a, #c9a96e);
      animation: preloaderProgress 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    @keyframes preloaderPulse {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.03); }
    }
    @keyframes preloaderProgress {
      to { width: 100%; }
    }

    /* --- Gold shimmer text --- */
    .gold-accent {
      background: linear-gradient(135deg, #c9a96e 0%, #f5d89a 50%, #c9a96e 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: goldShimmer 3s ease infinite;
    }
    @keyframes goldShimmer {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* --- Reveal on scroll --- */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .reveal.from-left { transform: translateX(-60px); }
    .reveal.from-right { transform: translateX(60px); }
    .reveal.from-scale { transform: scale(0.92); }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0) translateX(0) scale(1);
    }

    /* --- Stagger children --- */
    .stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
    .stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
    .stagger-children .reveal:nth-child(3) { transition-delay: 0.12s; }
    .stagger-children .reveal:nth-child(4) { transition-delay: 0.18s; }
    .stagger-children .reveal:nth-child(5) { transition-delay: 0.24s; }
    .stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }
    .stagger-children .reveal:nth-child(7) { transition-delay: 0.36s; }
    .stagger-children .reveal:nth-child(8) { transition-delay: 0.42s; }
    .stagger-children .reveal:nth-child(9) { transition-delay: 0.48s; }
    .stagger-children .reveal:nth-child(10) { transition-delay: 0.54s; }

    /* --- Brand card gold hover shine --- */
    .brand-card::before {
      content: '';
      position: absolute;
      inset: -50%;
      z-index: 5;
      background: linear-gradient(135deg,
        transparent 30%,
        rgba(201, 169, 110, 0.12) 50%,
        transparent 70%);
      transform: rotate(45deg) translateX(-200%);
      transition: none;
      pointer-events: none;
    }
    .brand-card:hover::before {
      animation: cardShine 0.8s ease forwards;
    }
    @keyframes cardShine {
      to { transform: rotate(45deg) translateX(200%); }
    }
    .brand-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #c9a96e, transparent);
      transform: scaleX(0);
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 6;
    }
    .brand-card:hover::after {
      transform: scaleX(1);
    }

    /* --- Hero Ken Burns slow zoom --- */
    .hero-slide-bg {
      transition: opacity 1s ease, transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
    .hero-slide.active .hero-slide-bg {
      transform: scale(1.06);
    }

    /* --- Hero brand gold underline --- */
    .hero-brand { position: relative; }
    .hero-brand::after {
      content: '';
      display: block;
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #c9a96e, transparent);
      margin: 16px 0 0 auto;
      animation: lineExpand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
    }
    @keyframes lineExpand {
      from { width: 0; opacity: 0; }
      to { width: 60px; opacity: 1; }
    }

    /* --- Stat glow on visible --- */
    .stat-number {
      text-shadow: 0 0 40px rgba(201, 169, 110, 0);
      transition: text-shadow 0.6s ease;
    }
    .stat-item.visible .stat-number {
      text-shadow: 0 0 40px rgba(201, 169, 110, 0.25);
    }

    /* --- Gold section divider --- */
    .section-divider {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .section-divider-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
      transform: scaleX(0);
      transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .section-divider-line.visible {
      transform: scaleX(1);
    }

    /* --- Floating gold particles --- */
    .particles-container {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: rgba(201, 169, 110, 0.25);
      border-radius: 50%;
      animation: floatParticle linear infinite;
    }
    @keyframes floatParticle {
      0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
    }

    /* --- Cursor gold glow (desktop only) --- */
    .cursor-glow {
      position: fixed;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
      transform: translate(-50%, -50%);
      transition: left 0.15s ease-out, top 0.15s ease-out;
      display: none;
    }
    @media (hover: hover) {
      .cursor-glow { display: block; }
    }

    /* --- Header gold line on scroll --- */
    .header.scrolled {
      border-bottom: 1px solid rgba(201, 169, 110, 0.08) !important;
    }

    /* --- Dots active ring pulse --- */
    .hero-dot { position: relative; overflow: visible; }
    .hero-dot.active::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid rgba(201, 169, 110, 0.5);
      animation: dotPulse 2s ease infinite;
    }
    @keyframes dotPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.6); opacity: 0; }
    }

    /* --- Map gold left border --- */
    .boutiques-map::before {
      content: '';
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.2), transparent);
      z-index: 999;
    }

    /* --- Footer social hover lift + gold --- */
    .footer-social {
      transition: opacity var(--transition-fast), transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    .footer-social:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
    }

    /* --- Magnetic button effect class --- */
    .magnetic { transition: transform 0.2s ease-out; }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* ========================================
       Mobile Responsive
       ======================================== */
    @media (max-width: 1024px) {
      .header-inner {
        padding: 0 24px;
        height: 72px;
      }

      .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 80vw;
        height: 100vh;
        background: rgba(12, 21, 31, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right var(--transition-base);
        z-index: 1050;
      }

      .nav-main.active {
        right: 0;
      }

      .nav-main a {
        font-size: 18px;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .nav-toggle {
        display: flex;
      }

      .logo-icon {
        height: 36px;
      }

      .hero-content {
        padding: 0 24px;
        text-align: center;
      }

      .hero-brand {
        letter-spacing: 8px;
      }

      .lang-switch {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .hero {
        max-height: 70vh;
        min-height: 480px;
      }

      .hero-dots {
        bottom: 24px;
        gap: 12px;
      }

      .hero-dot {
        width: 6px;
        height: 6px;
      }
    }

    /* Mobile menu overlay */
    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1040;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--transition-base), visibility var(--transition-base);
    }

    .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
    }
/* End */
/* /local/templates/pasha/styles.css?177881333733287 */
