.footer-middle {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
}
.text-right{
    text-align: right;
}
.pt-90 {
    padding-top: 90px !important;
}
.my-account__address-list {
    display: flex;
    gap: 1.625rem;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: 48px;
}

  /* Reset & base styles */
  *, *::before, *::after {
    box-sizing: border-box;
  }

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0f4ff 0%, #dbe6ff 100%);
    color: #1e293b;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    }
  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
  }
  a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  .section {
    padding: 64px 0;
  }
  h1, h2, h3 {
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e293b;
    user-select: none;
  }
  h1 {
    font-size: 3.5rem;
    text-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
  }
  h2 {
    font-size: 2.4rem;
    color: #334155;
  }
  h3 {
    font-size: 1.4rem;
    color: #475569;
  }
  p {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 24px;
  }

  /* NAVBAR */
  nav.navbar {
    position: sticky;
    top: 0;
    z-index: 10001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 36px;
    height: 76px;
    background: rgba(255 255 255 / 0.38);
    backdrop-filter: saturate(180%) blur(18px);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 14px 35px rgb(99 102 241 / 0.24);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
  }
  nav.navbar:hover,
  nav.navbar:focus-within {
    background: rgba(255 255 255 / 0.88);
    box-shadow: 0 20px 48px rgb(99 102 241 / 0.35);
  }
  .navbar-logo {
    font-weight: 900;
    font-size: 2rem;
    background: linear-gradient(135deg, #6366f1, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .navbar-logo:hover,
  .navbar-logo:focus-visible {
    transform: scale(1.1);
    outline: none;
    filter: drop-shadow(0 0 8px #10b981aa);
  }
  .navbar-menu {
    display: flex;
    gap: 48px;
    align-items: center;
    font-size: 1.05rem;
    user-select: none;
  }
  .navbar-menu a {
    position: relative;
    padding: 10px 0;
    font-weight: 600;
    color: #334155;
    border-radius: 20px;
    transition: color 0.3s ease;
  }
  /* Underline effect */
  .navbar-menu a::after {
    content: "";
    position: absolute;
    height: 4px;
    width: 0;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #6366f1, #10b981);
    border-radius: 16px;
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  /* .navbar-menu a:hover,
  .navbar-menu a:focus-visible {
    outline-offset: 4px;
    outline-style: solid;
    outline-width: 3px;
    background: rgba(16, 185, 129, 0.12);
  } */
  .navbar-menu a:hover::after,
  .navbar-menu a:focus-visible::after {
    width: 80%;
  }

  /* Shop Now button */
  .nav-cta-button {
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 38px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #6366f1, #10b981);
    color: white;
    border-radius: 50px;
    box-shadow: 0 14px 42px rgb(16 185 129 / 0.62);
    border: none;
    cursor: pointer;
    transition:
      background 0.4s ease,
      box-shadow 0.4s ease,
      transform 0.3s ease;
    white-space: nowrap;
  }
  .nav-cta-button:hover,
  .nav-cta-button:focus-visible {
    background: linear-gradient(135deg, #5145cd, #059669);
    box-shadow: 0 20px 58px rgb(5 118 110 / 1);
    outline: none;
    transform: translateY(-4px) scale(1.1);
    outline-offset: 5px;
    outline-color: #059669;
    outline-style: solid;
    outline-width: 4px;
  }
  .nav-cta-button .material-icons {
    font-size: 22px;
    transition: transform 0.3s ease;
  }
  .nav-cta-button:hover .material-icons {
    transform: translateX(8px);
  }

  /* Hamburger toggler */
  .navbar-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 6px;
    border: none;
    background: none;
    cursor: pointer;
    display: none;
    user-select: none;
  }
  .navbar-toggle span,
  .navbar-toggle span::before,
  .navbar-toggle span::after {
    content: "";
    display: block;
    position: absolute;
    width: 28px;
    height: 3.5px;
    background: #6366f1;
    border-radius: 9999px;
    transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
    left: 6px;
  }
  .navbar-toggle span {
    top: 50%;
    margin-top: -1.75px;
  }
  .navbar-toggle span::before {
    top: -10px;
  }
  .navbar-toggle span::after {
    top: 10px;
  }
  /* toggled open - morph hamburger to X */
  .navbar-toggle.open span {
    background: transparent;
  }
  .navbar-toggle.open span::before {
    top: 0;
    transform: rotate(45deg);
    background: #10b981;
    filter: drop-shadow(0 0 6px #10b981aa);
  }
  .navbar-toggle.open span::after {
    top: 0;
    transform: rotate(-45deg);
    background: #10b981;
    filter: drop-shadow(0 0 6px #10b981aa);
  }

  /* MOBILE MENU OVERLAY */
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.54);
    backdrop-filter: blur(10px);
    z-index: 11000;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    user-select: none;
  }
  .mobile-overlay.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  /* MOBILE SIDE MENU */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255 255 255 / 0.97) 75%, rgba(212 250 214 / 0.8));
    backdrop-filter: saturate(180%) blur(22px);
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    box-shadow: 6px 0 30px rgb(16 185 129 / 0.45);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.4;
    user-select: none;
    transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 11001;
  }
  .mobile-menu.open {
    left: 0;
  }
  .mobile-menu a {
    color: #064e3b;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 3px solid transparent;
    padding-bottom: 10px;
    border-radius: 10px;
    transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), color 0.3s ease;
    user-select: none;
  }
  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: #10b981;
    border-bottom-color: #10b981;
    outline-color: #10b981;
    outline-style: solid;
    outline-width: 4px;
    outline-offset: 6px;
  }
  .mobile-menu-close {
    position: absolute;
    top: 22px;
    right: 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 34px;
    color: #10b981;
    transition: color 0.3s ease;
    user-select: none;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-close:hover,
  .mobile-menu-close:focus-visible {
    color: #047857;
    outline: none;
  }
  .mobile-menu .nav-cta-button {
    padding: 18px 0;
    font-size: 1.25rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 18px 52px rgb(16 185 129 / 0.85);
    min-width: 0;
    border-radius: 64px;
    letter-spacing: 0.1em;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
    user-select: none;
  }
  .mobile-menu .nav-cta-button:hover,
  .mobile-menu .nav-cta-button:focus-visible {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 24px 65px rgb(5 118 110 / 1);
    outline-offset: 8px;
    outline-color: #047857;
    outline-style: solid;
    outline-width: 5px;
    transform: translateY(-4px) scale(1.07);
    color: #d9f99d;
    user-select: none;
  }
  .mobile-menu .nav-cta-button .material-icons {
    font-size: 26px;
  }

  /* HERO SECTION */
  .hero {
    position: relative;
    background: linear-gradient(135deg, #6366f1 0%, #10b981 100%);
    color: white;
    padding: 120px 0 80px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  .hero-content {
    z-index: 2;
    max-width: 600px;
    padding-right: 40px;
    flex: 1 1 400px;
    min-width: 280px;
  }
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  }
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 32px;
    font-weight: 600;
    letter-spacing: 0.012em;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  }
  .btn-primary {
    background: #10b981;
    border: none;
    padding: 18px 44px;
    border-radius: 56px;
    font-weight: 700;
    font-size: 1.15rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 10px 30px rgb(16 185 129 / 0.55);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 12px 35px rgb(15 118 110 / 0.8);
    will-change: transform;
  }
  .btn-primary:hover,
  .btn-primary:focus-visible {
    background: #047857;
    box-shadow: 0 18px 50px rgb(5 118 110 / 1);
    outline: none;
    transform: translateY(-4px) scale(1.05);
    letter-spacing: 0.1em;
  }
  .btn-primary .material-icons {
    font-size: 26px;
    transition: transform 0.35s ease;
  }
  .btn-primary:hover .material-icons {
    transform: translateX(10px);
  }
  .hero-image {
    max-width: 550px;
    flex-shrink: 0;
    border-radius: 36px;
    box-shadow: 0 40px 70px rgb(0 0 0 / 0.3);
    animation: floatUpDown 6s ease-in-out infinite;
    flex: 1 1 480px;
    min-width: 280px;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    overflow: hidden;
    user-select: none;
    filter: saturate(110%) contrast(1.1);
    transition: filter 0.4s ease;
    cursor: default;
  }
  .hero-image:hover,
  .hero-image:focus-visible {
    filter: saturate(140%) contrast(1.2) brightness(1.05);
    outline: none;
  }
  @keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
  }

  /* PRODUCTS */
  .products {
    background: white;
    border-radius: 20px;
    padding: 56px 32px;
    box-shadow: 0 24px 44px rgb(99 102 241 / 0.14);
    user-select: none;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 36px;
  }
  .product-card {
    background: #f9fafb;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .product-card:hover,
  .product-card:focus-visible {
    transform: translateY(-10px);
    box-shadow: 0 24px 44px rgb(99 102 241 / 0.3);
    outline: none;
    background: #ffffff;
    border: 1px solid #10b981;
    box-shadow: 0 20px 60px rgb(16 185 129 / 0.45);
  }
  .product-image {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    flex-grow: 1;
    aspect-ratio: 4 / 3;
  }
  .product-card:hover .product-image,
  .product-card:focus-visible .product-image {
    box-shadow: 0 30px 60px rgb(16 185 129 / 0.35);
  }
  .product-title {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: #1e293b;
    user-select: none;
    letter-spacing: 0.02em;
  }
  .product-desc {
    flex-grow: 1;
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 22px;
    letter-spacing: 0.015em;
    font-weight: 500;
  }
  .btn-shop {
    background: #6366f1;
    color: white;
    font-weight: 700;
    border-radius: 48px;
    padding: 14px 34px;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 8px 26px rgb(99 102 241 / 0.5);
    transition: background 0.35s ease, box-shadow 0.35s ease;
    user-select: none;
    border: none;
    letter-spacing: 0.04em;
  }
  .btn-shop:hover,
  .btn-shop:focus-visible {
    background: #5145cd;
    box-shadow: 0 16px 45px rgb(81 69 205 / 0.75);
    outline: none;
    letter-spacing: 0.06em;
    transform: translateY(-4px);
  }

  /* FEATURES */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    user-select: none;
  }
  .feature-item {
    padding: 20px 16px;
    background: white;
    border-radius: 36px;
    box-shadow: 0 16px 40px rgb(0 0 0 / 0.08);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: default;
  }
  .feature-item:hover {
    transform: translateY(-10px);
  }
  .feature-icon {
    font-size: 52px;
    color: #6366f1;
    margin-bottom: 16px;
    user-select: none;
    text-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
  }
  .feature-title {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e293b;
    letter-spacing: 0.02em;
  }
  .feature-desc {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  /* FOOTER */
  footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 56px 24px 56px;
    font-size: 0.93rem;
    user-select: none;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 36px;
    align-items: flex-start;
  }
  .footer-section {
    min-width: 220px;
    flex: 1 1 220px;
  }
  .footer-section h4 {
    margin-bottom: 18px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
    user-select: none;
  }
  .footer-links a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    user-select: none;
    cursor: pointer;
    letter-spacing: 0.02em;
  }
  .footer-links a:hover,
  .footer-links a:focus-visible {
    color: #6366f1;
    outline: none;
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 22px;
    margin-top: 10px;
  }
  .footer-social a {
    color: #cbd5e1;
    font-size: 26px;
    transition: color 0.3s ease;
    user-select: none;
    cursor: pointer;
  }
  .footer-social a:hover,
  .footer-social a:focus-visible {
    color: #10b981;
    outline: none;
    text-shadow: 0 0 8px #10b981aa;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav.navbar {
      padding: 0 24px;
      height: 64px;
    }
    .navbar-logo {
      font-size: 1.75rem;
      font-weight: 800;
    }
    .navbar-menu {
      display: none;
    }
    .navbar-toggle {
      display: block;
    }
    .hero {
      flex-direction: column;
      padding: 72px 20px 56px;
      clip-path: none;
      text-align: center;
      gap: 36px;
    }
    .hero-content {
      max-width: 100%;
      padding: 0;
    }
    .hero h1 {
      font-size: 2.8rem;
    }
    .hero p {
      font-size: 1.2rem;
    }
    .btn-primary {
      padding: 16px 32px;
      font-size: 1rem;
    }
    .hero-image {
      max-width: 95vw;
      border-radius: 28px;
      aspect-ratio: 4 / 3;
    }
    .products-grid {
      grid-template-columns: 1fr;
    }
    .products {
      padding: 40px 20px 56px;
    }
    .features {
      grid-template-columns: 1fr 1fr;
      max-width: 100%;
    }
    footer .footer-container {
      flex-direction: column;
      gap: 24px;
      align-items: flex-start;
    }
    .nav-cta-button {
      min-width: 100px;
      font-size: 0.95rem;
      padding: 10px 24px;
      justify-content: center;
    }
    .mobile-menu {
      width: 280px;
      padding: 80px 24px 40px;
    }
    .mobile-menu a {
      font-size: 1.15rem;
      letter-spacing: 0.065em;
    }
    .mobile-menu .nav-cta-button {
      font-size: 1.1rem;
      padding: 16px 0;
    }
  }

  @media (min-width: 769px) {
    .mobile-menu {
      display: none !important;
    }
  }


/* About Section */
  .hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    padding: 16px 0 0 0;
  }
  .hero-text {
    flex: 1 1 440px;
  }
  .hero-text p {
    margin-bottom: 1.5rem;
  }
  .hero-image-container {
    flex: 1 1 440px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 35px 75px rgb(16 185 129 / 0.28);
    transition: box-shadow 0.35s ease;
  }
  .hero-image-container:hover,
  .hero-image-container:focus-within {
    box-shadow: 0 55px 100px rgb(16 185 129 / 0.45);
  }

  /* Highlights grid */
  .highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 40px;
    padding: 40px 0 60px;
  }
  .highlight-card {
    background: rgba(255 255 255 / 0.1);
    border-radius: 36px;
    padding: 40px 36px;
    box-shadow: 0 24px 44px rgb(16 185 129 / 0.22);
    color: #10b981;
    text-align: center;
    user-select: none;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
  }
  .highlight-card:hover,
  .highlight-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgb(16 185 129 / 0.46);
  }
  .highlight-icon {
    font-size: 56px;
    margin-bottom: 24px;
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.7));
  }
  .highlight-title {
    font-size: 1.5rem;
    margin-bottom: 14px;
    font-weight: 800;
    color: #134e4a;
  }
  .highlight-desc {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    color: #1e293bdd;
  }



  /* Responsive */
  @media (max-width: 950px) {
    .hero-section {
      flex-direction: column;
      max-width: 90vw;
      margin: 0 auto;
      padding-bottom: 48px;
    }
    .hero-image-container, .hero-text {
      max-width: 100%;
      flex: initial;
    }
    .highlights {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 32px 0 48px;
    }
  }


  /* Contract page styles */

 #contract-page-frontend form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255 255 255 / 0.2);
    border-radius: 18px;
    padding: 32px 28px 44px;
    box-shadow: 0 10px 40px rgb(16 185 129 / 0.2);
    backdrop-filter: saturate(220%) blur(36px);
  }
  #contract-page-frontend label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #134e4a;
    user-select: none;
  }
  #contract-page-frontend input[type="text"],
  #contract-page-frontend input[type="email"],
  #contract-page-frontend textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 24px;
    border-radius: 12px;
    border: 2px solid #10b981;
    font-size: 1rem;
    font-family: inherit;
    color: #1e293b;
    transition: border-color 0.3s ease;
  }
  #contract-page-frontend input[type="text"]:focus,
  #contract-page-frontend input[type="email"]:focus,
   #contract-page-frontend textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 10px rgb(99 102 241 / 0.4);
  }
  #contract-page-frontend textarea {
    resize: vertical;
    min-height: 120px;
  }
  #contract-page-frontend button[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6366f1, #10b981);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 14px 40px rgb(16 185 129 / 0.6);
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
    user-select: none;
  }
  #contract-page-frontend button[type="submit"]:hover,
  #contract-page-frontend button[type="submit"]:focus-visible {
    background: linear-gradient(135deg, #5145cd, #059669);
    box-shadow: 0 20px 58px rgb(5 118 110 / 1);
    outline: none;
    transform: translateY(-4px) scale(1.05);
    outline-offset: 5px;
    outline-color: #059669;
    outline-style: solid;
    outline-width: 3px;
  }
  #contract-page-frontend button[type="submit"] .material-icons {
    font-size: 22px;
    transition: transform 0.3s ease;
  }
  #contract-page-frontend button[type="submit"]:hover .material-icons {
    transform: translateX(6px);
  }

  /* Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  /* Responsive */
  @media (max-width: 900px) {
    #contract-page-fronten main {
      margin: 40px 16px 64px;
      padding: 24px 16px 48px;
      border-radius: 24px;
      box-shadow: 0 20px 40px rgb(16 185 129 / 0.18);
      backdrop-filter: saturate(200%) blur(36px);
    }
   #contract-page-fronten h1 {
      font-size: 2.75rem;
      margin-bottom: 40px;
    }
   #contract-page-fronten h2 {
      font-size: 2rem;
      margin-bottom: 16px;
    }
   #contract-page-fronten p {
      max-width: 100%;
      margin-bottom: 24px;
      font-size: 1.1rem;
      line-height: 1.5;
    }
  }


  /* Shop page */

    #shop-page a {
      text-decoration: none;
      color: inherit;
    }

    #shop-page .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px;
    }

    /* Header */
    #shop-page h1 {
      font-size: 2.8rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 40px;
      color: #10b981;
      background: linear-gradient(135deg, #6366f1, #10b981);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      user-select: none;
    }

    /* Layout */
    #shop-page .page-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 32px;
    }

    /* Filter Sidebar */
    #shop-page aside.filters {
      background: rgba(255 255 255 / 0.1);
      backdrop-filter: saturate(180%) blur(16px);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 25px 50px rgb(16 185 129 / 0.2);
      user-select: none;
      height: fit-content;
      position: sticky;
      top: 24px;
      align-self: start;
    }
    #shop-page aside h2 {
      margin-top: 0;
      font-weight: 700;
      font-size: 1.5rem;
      color: #1e293b;
      margin-bottom: 1rem;
    }
    #shop-page .filter-group {
      margin-bottom: 24px;
    }
    #shop-page .filter-group label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 1rem;
      color: #334155;
      cursor: pointer;
    }
    #shop-page .filter-group input[type="checkbox"] {
      accent-color: #10b981;
    }
    #shop-page .filter-group input[type="checkbox"]:focus-visible {
      outline: 3px solid #10b981;
      outline-offset: 2px;
    }

    /* Search bar */
    #shop-page .search-container {
      margin-bottom: 32px;
    }

    #shop-page .search-container label {
      position: relative;
      display: block;
      width: 100%;
    }

    #shop-page .search-container input[type="search"] {
      width: 100%;
      padding: 12px 44px 12px 16px;
      font-size: 1rem;
      border-radius: 16px;
      border: 2px solid #10b981;
      outline-offset: 3px;
      transition: border-color 0.3s ease;
      font-family: inherit;
      color: #1e293b;
    }

    #shop-page .search-container input[type="search"]::placeholder {
      color: #94a3b8;
    }

    #shop-page .search-container input[type="search"]:focus {
      border-color: #6366f1;
      box-shadow: 0 0 8px rgb(99 102 241 / 0.5);
      outline: none;
    }

    #shop-page .search-container .material-icons {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #10b981cc;
      pointer-events: none;
      font-size: 24px;
    }

    /* Main content grid */
    #shop-page main.products {
      display: grid;
      grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
      gap: 28px;
    }

    /* Product card */
    #shop-page article.product-card {
      background: rgba(255 255 255 / 0.1);
      backdrop-filter: saturate(180%) blur(12px);
      border-radius: 20px;
      box-shadow: 0 15px 40px rgb(16 185 129 / 0.2);
      padding: 20px 20px 28px;
      user-select: none;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    #shop-page article.product-card:hover,
    #shop-page article.product-card:focus-within {
      transform: translateY(-8px);
      box-shadow: 0 28px 60px rgb(16 185 129 / 0.35);
      outline: none;
    }
    #shop-page .product-image {
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 16px;
      aspect-ratio: 4 / 3;
      flex-shrink: 0;
      user-select: none;
    }
    #shop-page .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    #shop-page .product-name {
      font-weight: 700;
      font-size: 1.15rem;
      margin-bottom: 8px;
      color: #134e4a;
    }
    #shop-page .product-desc {
      flex-grow: 1;
      font-size: 0.95rem;
      color: #475569;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    #shop-page .product-price {
      font-weight: 700;
      font-size: 1rem;
      color: #10b981;
      margin-bottom: 18px;
      user-select: none;
    }
    #shop-page .btn-add-to-cart {
      background: linear-gradient(135deg, #6366f1, #10b981);
      padding: 12px 28px;
      font-weight: 700;
      border: none;
      border-radius: 40px;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 10px 30px rgb(16 185 129 / 0.4);
      transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
      user-select: none;
      display: flex;
      gap: 8px;
      align-items: center;
      justify-content: center;
      user-select: none;
    }
    #shop-page .btn-add-to-cart:hover,
    #shop-page .btn-add-to-cart:focus-visible {
      background: linear-gradient(135deg, #5145cd, #059669);
      box-shadow: 0 18px 52px rgb(5 118 110 / 0.9);
      outline: none;
      transform: translateY(-3px);
    }
    #shop-page .btn-add-to-cart .material-icons {
      font-size: 20px;
      transition: transform 0.3s ease;
    }
    #shop-page .btn-add-to-cart:hover .material-icons {
      transform: translateX(6px);
    }

    /* Responsive */
    @media (max-width: 992px) {
      #shop-page .page-layout {
        grid-template-columns: 1fr;
      }
      #shop-page aside.filters {
        position: static;
        height: auto;
        box-shadow: none;
        padding-bottom: 20px;
        margin-bottom: 24px;
      }
      #shop-page main.products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 24px;
      }
      #shop-page h1 {
        font-size: 2.6rem;
        margin-bottom: 32px;
      }
      #shop-page .product-name {
        font-size: 1.05rem;
      }
      #shop-page .product-price {
        font-size: 0.95rem;
      }
    }
    @media (max-width: 480px) {
      #shop-page main.products {
        grid-template-columns: 1fr;
      }
      #shop-page .btn-add-to-cart {
        font-size: 0.95rem;
        padding: 11px 20px;
      }
    }
