        /* Work Sans Font */
    @font-face {
      font-family: 'Work Sans';
      src: url('/assets/fonts/WorkSans-Regular.ttf') format('ttf'),
           url('/assets/fonts/WorkSans-Regular.ttf') format('ttf');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Work Sans';
      src: url('/assets/fonts/WorkSans-Light.ttf') format('ttf'),
           url('/assets/fonts/WorkSans-Light.ttf') format('ttf');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Work Sans';
      src: url('/assets/fonts/WorkSans-SemiBold.ttf') format('ttf'),
           url('/assets/fonts/WorkSans-SemiBold.ttf') format('ttf');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Work Sans';
      src: url('/assets/fonts/WorkSans-Bold.ttf') format('ttf'),
           url('/assets/fonts/WorkSans-Bold.ttf') format('ttf');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Work Sans', sans-serif;
      background-color: #1a1a1a;
      color: #fff;
      overflow-x: hidden;
    }

    /* Top Navigation Bar */
    .top-bar {
      background-color: #222;
      padding: 20px 60px;
      border-bottom: 1px solid #444;
      position: relative;
      z-index: 100;
    }

    .logo {
      font-size: 24px;
      font-weight: 300;
      letter-spacing: 8px;
      color: #fff;
      text-transform: uppercase;
      max-width:1200px;
      margin:0 auto;
    }

    /* Breadcrumb */
    .breadcrumb {
      padding: 15px 0px;
      font-size: 13px;
      color: #999;
      max-width:1200px;
      margin: 0 auto;
    }

    .minfo {
      padding: 15px 0px;
      font-size: 13px;
      color: #999;
      max-width:1200px;
      margin: 0 auto;
      padding-bottom:40px;
    }

    .breadcrumb a {
      color: #999;
      text-decoration: none;
      transition: color 0.3s;
    }

    .breadcrumb a:hover {
      color: #dae342;
    }

    .breadcrumb span {
      margin: 0 8px;
    }

    /* Main Content Area */
    .main-content {
      position: relative;
      min-height: 90vh;
      padding: 0px 0px 0px;
      overflow:hidden;
      background-image:url(../../assets/images/bg.webp);
      background-size:cover;
      padding-bottom:50px;
    }

    /* Background Pattern Layer */
    .background-pattern {
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><path d="M20 10 L30 10 L25 20 Z M40 10 L50 10 L45 20 Z" fill="%23333" opacity="0.3"/></svg>');
      background-repeat: repeat;
      opacity: 0.15;
      pointer-events: none;
      z-index: 1;
    }

    /* Pulsating Glow Effect */
    .glow-effect {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(212, 255, 0, 0.15) 0%, transparent 70%);
      animation: pulse 4s ease-in-out infinite;
      pointer-events: none;
      z-index: 2;
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
      }
      50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
      }
    }

    /* Headline */
    .headline {
      position: relative;
      z-index: 10;
      font-size: 42px;
      font-weight: bold;
      letter-spacing: 2px;
      max-width:1200px;
      margin:0 auto;
    }

    /* Product Grid */
    .product-grid {
      position: relative;
      z-index: 10;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      justify-content: center;
    }

    /* Product Card */
    .product-card {
      position: relative;
      background: rgba(40, 40, 40, 0.5);
      border-radius: 20px;
      padding: 40px 30px;
      cursor: pointer;
      transition: all 0.4s ease;
      overflow: hidden;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(212, 255, 0, 0.05) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .product-card:hover {
      background: #000;
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .product-card:hover::before {
      opacity: 1;
    }

    .product-card:hover .product-model {
      color:#dae342;
    }

    .product-card:hover .arrow-button {
      background:#dae342;
      transform: scale(1.1);
    }

    /* Product Image Container */
    .product-image {
      position: relative;
      width: 100%;
      height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 30px;
    }

    .product-image img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    }

    /* Product Info */
    .product-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .product-title {
      flex: 1;
    }

    .product-model {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 5px;
      letter-spacing: 2px;
    }

    .product-name {
      font-size: 13px;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Arrow Button */
    .arrow-button {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: transparent;
      border:2px solid #dae342;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .arrow-button svg {
      width: 24px;
      height: 24px;
      stroke: #dae342;
      stroke-width: 2;
      fill: none;
    }

    .product-card:hover .arrow-button svg {
      stroke: #000;
    }

    /* Bottom Return Button */
    .bottom-section {
      background: linear-gradient(180deg, #dae342 0%, #dae342 100%);
      padding: 60px;
      text-align: center;
      margin-top: 0px;
    }

    .return-button {
      display: inline-block;
      font-size: 22px;
      font-weight: 300;
      color: #000;
      text-transform: uppercase;
      letter-spacing: 3px;
      text-decoration: none;
      padding: 25px 60px;
      background-color: transparent;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .return-button:hover {
      color: #000;
      transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .top-bar,
      .main-content {
        padding-left: 30px;
        padding-right: 30px;
      }

      .headline {
        font-size: 26px;
      }

      .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .logo {
        font-size: 18px;
        letter-spacing: 4px;
      }
      .logo img {
        max-width:300px;
        width:100%;
      }
    }