    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    html, body {
      height: 100%;
      width: 100%;
    }

    .main-wrapper {
      min-height: 100%;
      width: 100%;
      overflow-y: auto;
      overflow-x: hidden;
    }

    /* Loading State */
    .loading-indicator {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255,255,255,.3);
      border-radius: 50%;
      border-top-color: #fff;
      animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      backdrop-filter: blur(20px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar.scrolled {
      padding: 1rem 5%;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .logo-icon {
      font-size: 2rem;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.5rem;
      letter-spacing: -0.02em;
    }

    .nav-center {
      display: flex;
      gap: 3rem;
      list-style: none;
    }

    .nav-center a {
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      position: relative;
      text-transform: uppercase;
    }

    .nav-center a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 0;
      height: 2px;
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-center a:hover::after {
      width: 100%;
    }

    .nav-right {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .nav-icon {
      font-size: 1.3rem;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-icon:hover {
      transform: scale(1.1);
    }

    .cart-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      font-size: 0.7rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }

    .user-menu {
      position: relative;
    }

    .user-greeting {
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .user-greeting:hover {
      opacity: 0.7;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 8rem 5% 4rem;
      overflow: hidden;
    }

    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      text-align: center;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-subtitle {
      font-size: 0.95rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      opacity: 0.9;
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-weight: 800;
      font-size: 4.5rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -0.03em;
      animation: fadeInUp 1s ease-out 0.4s both;
    }

    .hero-tagline {
      font-size: 1.2rem;
      font-weight: 300;
      margin-bottom: 3rem;
      opacity: 0.9;
      animation: fadeInUp 1s ease-out 0.6s both;
    }

    .btn {
      padding: 1.2rem 3rem;
      border: none;
      border-radius: 0;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
      display: inline-block;
      letter-spacing: 2px;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      transition: all 0.4s ease;
    }

    .btn:hover::before {
      left: 0;
    }

    .btn span {
      position: relative;
      z-index: 1;
    }

    .btn-primary {
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      animation: fadeInUp 1s ease-out 0.8s both;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }

    /* Featured Products */
    .featured-section {
      padding: 8rem 5%;
    }

    .section-header {
      text-align: center;
      margin-bottom: 5rem;
    }

    .section-subtitle {
      font-size: 0.9rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 1rem;
      opacity: 0.7;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 3.5rem;
      margin-bottom: 1rem;
    }

    .section-description {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
      opacity: 0.8;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .product-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
      border-radius: 2px;
    }

    .product-card:hover {
      transform: translateY(-10px);
    }

    .product-image-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 125%;
      overflow: hidden;
    }

    .product-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-card:hover .product-image {
      transform: scale(1.1);
    }

    .product-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      opacity: 0;
      transition: all 0.4s ease;
    }

    .product-card:hover .product-overlay {
      opacity: 1;
    }

    .quick-view-btn {
      padding: 0.8rem 1.5rem;
      border: 2px solid;
      background: rgba(255, 255, 255, 0.95);
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 2px;
    }

    .product-info {
      padding: 1.5rem 0;
      text-align: center;
    }

    .product-category {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
      opacity: 0.7;
    }

    .product-name {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }

    .product-price {
      font-weight: 600;
      font-size: 1.1rem;
    }

    .product-rating {
      margin-top: 0.5rem;
      font-size: 0.9rem;
    }

    /* Filter Section */
    .filter-section {
      padding: 4rem 5%;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .filter-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .filter-group {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .filter-label {
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1px;
    }

    .filter-select {
      padding: 0.8rem 2rem 0.8rem 1rem;
      border: 2px solid;
      border-radius: 0;
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.8rem center;
    }

    .filter-select:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    }

    /* Portfolio Section */
    .portfolio-section {
      padding: 8rem 5%;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 4rem auto 0;
    }

    .portfolio-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .portfolio-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .portfolio-image-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 100%;
      overflow: hidden;
    }

    .portfolio-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.6s ease;
    }

    .portfolio-card:hover .portfolio-image {
      transform: scale(1.08);
    }

    .portfolio-content {
      padding: 2rem;
    }

    .portfolio-category {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
      opacity: 0.7;
    }

    .portfolio-title {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .portfolio-description {
      font-size: 1rem;
      line-height: 1.8;
      opacity: 0.8;
      margin-bottom: 1.5rem;
    }

    .portfolio-stats {
      display: flex;
      gap: 2rem;
      margin-top: 1.5rem;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
    }

    .stat-value {
      font-weight: 700;
      font-size: 1.5rem;
    }

    .stat-label {
      font-size: 0.85rem;
      opacity: 0.7;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow-y: auto;
      background: rgba(0, 0, 0, 0.9);
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal.active {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .modal-content {
      position: relative;
      max-width: 1000px;
      width: 100%;
      padding: 3rem;
      border-radius: 2px;
      animation: slideUp 0.4s ease;
      max-height: 90vh;
      overflow-y: auto;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .modal-close:hover {
      transform: rotate(90deg);
    }

    .modal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .modal-image {
      width: 100%;
      border-radius: 2px;
    }

    .modal-details h2 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .modal-category {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
      opacity: 0.7;
    }

    .modal-price {
      font-weight: 700;
      font-size: 2rem;
      margin: 1.5rem 0;
    }

    .modal-description {
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      opacity: 0.8;
    }

    .modal-features {
      list-style: none;
      margin-bottom: 2rem;
    }

    .modal-features li {
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
    }

    .modal-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      font-weight: 700;
    }

    .quantity-selector {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .quantity-btn {
      width: 40px;
      height: 40px;
      border: 2px solid;
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .quantity-value {
      min-width: 50px;
      text-align: center;
      font-weight: 600;
      font-size: 1.2rem;
    }

    .add-to-cart-btn {
      width: 100%;
      padding: 1.2rem;
      border: none;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 1rem;
      border-radius: 2px;
    }

    .add-to-cart-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    /* Auth Modal */
    .auth-modal-content {
      max-width: 500px;
      padding: 3rem;
    }

    .auth-tabs {
      display: flex;
      gap: 2rem;
      margin-bottom: 2rem;
      border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    }

    .auth-tab {
      padding: 1rem 0;
      cursor: pointer;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      position: relative;
    }

    .auth-tab.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
    }

    .auth-form {
      display: none;
    }

    .auth-form.active {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .form-input {
      width: 100%;
      padding: 1rem;
      border: 2px solid;
      border-radius: 2px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-input:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    }

    .auth-submit {
      width: 100%;
      padding: 1.2rem;
      border: none;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 2px;
      border-radius: 2px;
    }

    .auth-submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    /* About Section */
    .about-section {
      padding: 8rem 5%;
    }

    .about-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      margin-bottom: 6rem;
      align-items: center;
    }

    .about-text {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .about-description {
      font-size: 1.1rem;
      line-height: 1.9;
      opacity: 0.85;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }

    .about-stat {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .about-stat-value {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 3rem;
      line-height: 1;
    }

    .about-stat-label {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      opacity: 0.7;
    }

    .about-image-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .about-image-item {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .about-image-item img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: all 0.6s ease;
    }

    .about-image-item:hover img {
      transform: scale(1.05);
    }

    .values-section {
      text-align: center;
    }

    .values-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 3rem;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 3rem;
    }

    .value-card {
      padding: 3rem 2rem;
      border-radius: 8px;
      transition: all 0.4s ease;
      text-align: center;
    }

    .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .value-icon {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
    }

    .value-name {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .value-description {
      font-size: 1rem;
      line-height: 1.8;
      opacity: 0.8;
    }

    /* Contact Section */
    .contact-section {
      padding: 8rem 5%;
    }

    .contact-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .contact-description {
      font-size: 1.1rem;
      line-height: 1.9;
      opacity: 0.85;
      margin-bottom: 2rem;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .contact-detail-item {
      display: flex;
      gap: 1.5rem;
      align-items: start;
    }

    .contact-icon {
      font-size: 2rem;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .contact-detail-text h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }

    .contact-detail-text p {
      font-size: 1rem;
      line-height: 1.8;
      opacity: 0.8;
    }

    .contact-form {
      padding: 3rem;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .contact-form .form-group {
      margin-bottom: 1.5rem;
    }

    .contact-form textarea.form-input {
      resize: vertical;
      min-height: 120px;
    }

    /* Footer */
    .footer {
      padding: 6rem 5% 2rem;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    .footer-description {
      font-size: 0.95rem;
      line-height: 1.8;
      opacity: 0.8;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
    }

    .social-icon {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      cursor: pointer;
      font-size: 1.2rem;
    }

    .social-icon:hover {
      transform: translateY(-5px);
    }

    .footer-section h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-links a {
      text-decoration: none;
      opacity: 0.8;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .footer-links a:hover {
      opacity: 1;
      padding-left: 10px;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 3rem;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      font-size: 0.9rem;
      opacity: 0.7;
    }

    .newsletter-form {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .newsletter-input {
      flex: 1;
      padding: 1rem;
      border: 2px solid;
      border-radius: 2px;
      font-size: 0.95rem;
    }

    .newsletter-btn {
      padding: 1rem 1.5rem;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 2px;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .nav-center {
        display: none;
      }

      .hero-headline {
        font-size: 2.5rem;
      }

      .section-title {
        font-size: 2.5rem;
      }

      .products-grid,
      .portfolio-grid {
        grid-template-columns: 1fr;
      }

      .modal-grid {
        grid-template-columns: 1fr;
      }

      .filter-container {
        flex-direction: column;
        align-items: stretch;
      }

      .filter-group {
        flex-direction: column;
        align-items: stretch;
      }

      .filter-select {
        width: 100%;
      }

      .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .about-stats {
        grid-template-columns: 1fr;
      }

      .values-grid {
        grid-template-columns: 1fr;
      }

      .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
      }

      .cart-sidebar {
        width: 100%;
        right: -100%;
      }
    }

    /* Cart Sidebar */
    .cart-sidebar {
      position: fixed;
      top: 0;
      right: -500px;
      width: 500px;
      height: 100%;
      z-index: 2500;
      box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
    }

    .cart-sidebar.active {
      right: 0;
    }

    .cart-header {
      padding: 2rem;
      border-bottom: 2px solid rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cart-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.8rem;
    }

    .cart-close {
      font-size: 2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .cart-close:hover {
      transform: rotate(90deg);
    }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 2rem;
    }

    .cart-item {
      display: flex;
      gap: 1.5rem;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .cart-item:hover {
      transform: translateX(-5px);
    }

    .cart-item-image {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 4px;
    }

    .cart-item-details {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .cart-item-name {
      font-weight: 600;
      font-size: 1.1rem;
    }

    .cart-item-price {
      font-weight: 700;
      font-size: 1rem;
    }

    .cart-item-quantity {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-top: 0.5rem;
    }

    .cart-qty-btn {
      width: 30px;
      height: 30px;
      border: 2px solid;
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 700;
      border-radius: 4px;
    }

    .cart-qty-btn:hover {
      transform: scale(1.1);
    }

    .cart-item-remove {
      cursor: pointer;
      font-size: 1.5rem;
      transition: all 0.3s ease;
      padding: 0.5rem;
    }

    .cart-item-remove:hover {
      transform: scale(1.2);
    }

    .cart-empty {
      text-align: center;
      padding: 4rem 2rem;
    }

    .cart-empty-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
      opacity: 0.3;
    }

    .cart-empty-text {
      font-size: 1.2rem;
      opacity: 0.6;
    }

    .cart-footer {
      padding: 2rem;
      border-top: 2px solid rgba(0, 0, 0, 0.1);
    }

    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      margin-bottom: 2rem;
      font-size: 1.5rem;
      font-weight: 700;
      padding-top: 1rem;
      border-top: 2px solid rgba(0, 0, 0, 0.1);
    }

    .cart-checkout-btn {
      width: 100%;
      padding: 1.2rem;
      border: none;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 2px;
      border-radius: 4px;
    }

    .cart-checkout-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    /* Search Overlay */
    .search-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2000;
      background: rgba(0, 0, 0, 0.95);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .search-overlay.active {
      display: flex;
      animation: fadeIn 0.3s ease;
    }

    .search-container {
      max-width: 800px;
      width: 100%;
      animation: slideUp 0.4s ease;
    }

    .search-box {
      position: relative;
      margin-bottom: 3rem;
    }

    .search-input {
      width: 100%;
      padding: 1.5rem 4rem 1.5rem 2rem;
      border: 3px solid;
      border-radius: 50px;
      font-size: 1.5rem;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.3s ease;
    }

    .search-input:focus {
      outline: none;
      transform: scale(1.02);
    }

    .search-icon-input {
      position: absolute;
      right: 2rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.8rem;
    }

    .search-close {
      position: absolute;
      top: -60px;
      right: 0;
      font-size: 3rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .search-close:hover {
      transform: rotate(90deg);
    }

    .search-results {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 2rem;
      max-height: 60vh;
      overflow-y: auto;
    }

    .search-result-item {
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 8px;
      overflow: hidden;
    }

    .search-result-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }

    .search-result-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .search-result-info {
      padding: 1rem;
    }

    .search-result-name {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .search-result-price {
      font-weight: 700;
    }

    .search-no-results {
      text-align: center;
      padding: 3rem;
      font-size: 1.2rem;
      opacity: 0.7;
    }

    /* Success Message */
    .success-message {
      position: fixed;
      top: 100px;
      right: 2rem;
      padding: 1.5rem 2rem;
      border-radius: 2px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      z-index: 3000;
      animation: slideInRight 0.4s ease;
      max-width: 400px;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
  