    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #fafafc;
      color: #1e1e2f;
      line-height: 1.4;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* HEADER */
    .main-header {
      background-color: #ffffff;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .top-nav {
      border-bottom: 1px solid #eef2f6;
      background-color: #ffffff;
    }

    .top-nav .container {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 28px;
      min-height: 48px;
      flex-wrap: wrap;
    }

    .top-nav a {
      font-size: 0.85rem;
      font-weight: 500;
      color: #2c3e50;
      text-decoration: none;
      transition: color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .top-nav a i {
      font-size: 0.85rem;
      color: #4b6b8f;
    }

    .top-nav a:hover {
      color: #0a58ca;
    }

    .main-navbar {
      background-color: #ffffff;
      padding: 5px 0;
    }

    .navbar-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .logo-area {
      flex-shrink: 0;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #1e3c72, #2a5298);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .logo i {
      background: none;
      color: #2a5298;
      font-size: 1.6rem;
    }

    .search-wrapper {
      flex: 1;
      max-width: 520px;
      min-width: 200px;
      position: relative;
    }

    .search-form {
      display: flex;
      width: 100%;
      border: 1px solid #cfdee9;
      border-radius: 48px;
      background: white;
      transition: all 0.2s;
    }

    .search-form:focus-within {
      border-color: #2a5298;
      box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.15);
    }

    .search-input {
      flex: 1;
      border: none;
      padding: 12px 20px;
      font-size: 0.95rem;
      background: transparent;
      border-radius: 48px 0 0 48px;
      outline: none;
    }

    .search-btn {
      background: transparent;
      border: none;
      padding: 0 18px;
      cursor: pointer;
      color: #2c3e50;
      font-size: 1.2rem;
      border-radius: 0 48px 48px 0;
    }

    /* Search Dropdown Results */
    .search-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      margin-top: 8px;
      z-index: 1000;
      max-height: 450px;
      overflow-y: auto;
      display: none;
    }

    .search-dropdown.show {
      display: block;
    }

    .search-dropdown-header {
      padding: 12px 16px;
      background: #f8fafc;
      border-bottom: 1px solid #eef2f6;
      font-size: 0.8rem;
      color: #64748b;
      font-weight: 600;
      position: sticky;
      top: 0;
      background: #f8fafc;
      z-index: 1;
    }

    .search-dropdown-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      cursor: pointer;
      transition: background 0.2s;
      border-bottom: 1px solid #f1f5f9;
      text-decoration: none;
      color: inherit;
    }

    .search-dropdown-item:hover {
      background: #f8fafc;
    }

    .search-item-img {
      width: 55px;
      height: 55px;
      background: #f1f5f9;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .search-item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .search-item-img i {
      font-size: 1.5rem;
      color: #2a5298;
    }

    .search-item-info {
      flex: 1;
    }

    .search-item-title {
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 4px;
      color: #1e293b;
    }

    .search-item-details {
      font-size: 0.7rem;
      color: #64748b;
    }

    .search-item-price {
      font-weight: 700;
      color: #2a5298;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .search-dropdown-empty {
      padding: 30px;
      text-align: center;
      color: #64748b;
    }

    .search-dropdown-footer {
      padding: 10px 16px;
      background: #f8fafc;
      border-top: 1px solid #eef2f6;
      text-align: center;
      position: sticky;
      bottom: 0;
    }

    .view-all-results {
      background: none;
      border: none;
      color: #2a5298;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      padding: 8px;
      font-size: 0.85rem;
    }

    .view-all-results:hover {
      text-decoration: underline;
    }

    /* CART ICON & SIDEBAR */
    .cart-icon {
      position: relative;
      background-color: #f3f5f9;
      border-radius: 40px;
      padding: 8px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: #1e2f3e;
      font-weight: 600;
      transition: background 0.2s;
      border: 1px solid #e2e8f0;
      cursor: pointer;
    }

    .cart-icon i {
      font-size: 1.3rem;
      color: #2a5298;
    }

    .cart-count {
      background-color: #c2410c;
      color: white;
      border-radius: 30px;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 8px;
      margin-left: 4px;
    }

    /* Cart Sidebar */
    .cart-sidebar {
      position: fixed;
      top: 0;
      right: -450px;
      width: 450px;
      height: 100vh;
      background: white;
      box-shadow: -5px 0 30px rgba(0,0,0,0.15);
      z-index: 1000;
      transition: right 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .cart-sidebar.open {
      right: 0;
    }

    .cart-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 999;
      display: none;
    }

    .cart-overlay.show {
      display: block;
    }

    .cart-header {
      padding: 20px;
      border-bottom: 1px solid #eef2f6;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cart-header h3 {
      font-size: 1.3rem;
      font-weight: 700;
    }

    .close-cart {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #666;
    }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 20px;
    }

    .cart-item {
      display: flex;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid #eef2f6;
      position: relative;
    }

    .cart-item-img {
      width: 80px;
      height: 80px;
      background: #f5f7fc;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .cart-item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cart-item-img i {
      font-size: 2rem;
      color: #2a5298;
    }

    .cart-item-details {
      flex: 1;
    }

    .cart-item-title {
      font-weight: 700;
      margin-bottom: 5px;
    }

    .cart-item-price {
      color: #2a5298;
      font-weight: 700;
    }

    .cart-item-quantity {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
    }

    .quantity-btn {
      background: #f3f5f9;
      border: none;
      width: 28px;
      height: 28px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
    }

    .quantity-btn:hover {
      background: #2a5298;
      color: white;
    }

    .item-quantity {
      font-weight: 600;
      min-width: 30px;
      text-align: center;
    }

    .remove-item {
      position: absolute;
      top: 15px;
      right: 0;
      background: none;
      border: none;
      color: #e74c3c;
      cursor: pointer;
      font-size: 1rem;
    }

    .cart-footer {
      padding: 20px;
      border-top: 1px solid #eef2f6;
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .checkout-btn {
      width: 100%;
      background: #2a5298;
      color: white;
      border: none;
      padding: 14px;
      border-radius: 40px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s;
    }

    .checkout-btn:hover {
      background: #1e3c72;
    }

    .empty-cart {
      text-align: center;
      padding: 40px;
      color: #666;
    }

    /* Button Group Styles */
    .button-group {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .btn-small {
      background: #f3f5f9;
      border: none;
      flex: 1;
      padding: 10px;
      border-radius: 40px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: 0.2s;
      text-align: center;
      font-size: 0.85rem;
    }

    .btn-small:hover {
      background: #2a5298;
      color: white;
    }

    .btn-buy-now {
      background: #10b981;
      color: white;
      flex: 1;
    }

    .btn-buy-now:hover {
      background: #059669;
      color: white;
    }

    /* Checkout Modal */
    .checkout-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 2000;
      display: none;
      justify-content: center;
      align-items: center;
    }

    .checkout-modal.show {
      display: flex;
    }

    .checkout-container {
      background: white;
      border-radius: 24px;
      max-width: 600px;
      width: 90%;
      max-height: 85vh;
      overflow-y: auto;
      padding: 30px;
    }

    .checkout-container h2 {
      margin-bottom: 20px;
      color: #1e293b;
    }


    /* FULLSCREEN HERO SLIDER SECTION */
    .fullscreen-slider {
      position: relative;
      width: 100%;
      height: 85vh;
      min-height: 550px;
      background: #0f172a;
      overflow: hidden;
    }

    .swiper.fullscreen-swiper {
      width: 100%;
      height: 100%;
    }

    .fullscreen-swiper .swiper-slide {
      position: relative;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
      z-index: 1;
    }

    .slide-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      padding: 0 24px;
      color: white;
      animation: fadeUp 0.8s ease-out;
    }

    .slide-content h2 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .slide-content p {
      font-size: 1.2rem;
      margin-bottom: 32px;
      opacity: 0.95;
      text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    }

    .slide-btn {
      background: white;
      color: #1e293b;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s;
      font-size: 1rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .slide-btn:hover {
      background: #f8fafc;
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    }

    .fullscreen-swiper .swiper-button-next,
    .fullscreen-swiper .swiper-button-prev {
      color: white;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(4px);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      transition: 0.2s;
    }
    .fullscreen-swiper .swiper-button-next:hover,
    .fullscreen-swiper .swiper-button-prev:hover {
      background: rgba(255,255,255,0.4);
    }
    .fullscreen-swiper .swiper-button-next:after,
    .fullscreen-swiper .swiper-button-prev:after {
      font-size: 20px;
      font-weight: bold;
    }
    .fullscreen-swiper .swiper-pagination-bullet {
      background: white;
      opacity: 0.7;
    }
    .fullscreen-swiper .swiper-pagination-bullet-active {
      background: #ffb347;
      opacity: 1;
    }