    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      background: #fff;
      line-height: 1.6;
      font-size: 16px;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .sticky-header {
      position: sticky;
      top: 0;
      background-color: #fff;
      z-index: 1000;
      width: 100%;
      margin: 0 auto;
    }

    .top-banner {
      background: white;
      border-top: 5px solid #6e29c7;
      text-align: left;
      padding: 8px 25px;
      font-size: 15px;
      color: #c00;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .shoppa-nu {
      font-size: 15px;
      color: black;
      font-weight: 500;
      text-decoration: underline;
    }

    .shoppa-nu i {
      font-size: 12px;
      margin-left: 4px;
    }

    header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 15px 60px 10px;
      background-color: #fff;
      width: 100%;
      margin: 0 auto;
    }

    .left-nav {
      display: flex;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .hamburger {
      background: none;
      border: none;
      font-size: 26px;
      cursor: pointer;
      color: #000;
      padding: 10px;
      display: none;
    }

    .logo {
      height: 40px;
      width: auto;
      max-width: 100%;
    }

    nav#main-nav {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    nav#main-nav a {
      font-size: 17px;
      color: #555;
      font-weight: 500;
      letter-spacing: 0.5px;
      padding-bottom: 4px;
    }

    nav#main-nav a.active {
      font-weight: bold;
      color: black;
    }

    nav#main-nav a:hover {
      text-decoration: underline;
    }

    .right-nav {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 5px;
    }

    .right-nav i {
      font-size: 17px;
      color: black;
      cursor: pointer;
    }

    .main-content {
      width: 100%;
      margin: 0 auto;
      padding: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      font-family: Arial, sans-serif;
      font-size: 14px;
    }

    .main-heading {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 40px;
      padding-left: 20px;
      padding-top: 40px;
    }

    .sub-heading {
      font-size: 16px;
      margin-bottom: 10px;
      padding-left: 20px;
      padding-top: 40px;
    }

    .description {
      font-size: 16px;
      line-height: 1.5;
      margin-bottom: 20px;
      padding-left: 20px;
      margin-top: 10px;
    }

    .checkout-container {
      width: 35%;
      padding: 20px;
      font-size: 14px;
      box-sizing: border-box;
      margin-top: -30px;
    }

    .discount-row,
    .sum-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .discount-row span:first-child {
      font-weight: 500;
    }

    .add-discount {
      font-weight: 500;
      text-decoration: none;
      color: black;
    }

    .sum-row span:first-child {
      font-weight: 600;
    }

    .sum-row span:last-child {
      font-weight: 700;
    }

    .checkout-button {
      width: 100%;
      padding: 12px;
      background-color: #e5e5e5;
      border: none;
      color: #888;
      font-weight: 600;
      margin-bottom: 12px;
      cursor: not-allowed;
      font-size: 14px;
    }

    .checkout-button:not(:disabled) {
      background-color: #000;
      color: #fff;
      cursor: pointer;
    }

    .login-button {
      width: 100%;
      padding: 12px;
      background-color: white;
      border: 1px solid black;
      font-weight: 600;
      margin-bottom: 20px;
      cursor: pointer;
      font-size: 14px;
    }

    .login-button:hover {
      background-color: #f5f5f5;
    }

    .payment-icons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 20px;
    }

    .payment-icons img {
      height: 24px;
      max-width: 100%;
    }

    .info-text {
      color: #111;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 14px;
    }

    .info-text a {
      color: #0000EE;
    }

    .delivery-link {
      font-weight: 600;
      text-decoration: underline;
      color: black;
    }

    /* Product Recommendation Sections */
    .product-reco {
      width: 100%;
      margin: 40px 0;
      padding: 0 10px;
    }

    .reco-header h2 {
      font-size: 20px;
      font-weight: bold;
      margin: 20px 10px;
    }

    .product-list {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      white-space: nowrap;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .product-list::-webkit-scrollbar {
      display: none;
    }

    .product-card {
      display: inline-block;
      width: 25vw;
      min-width: 200px;
      position: relative;
      margin: 0 5px;
    }

    .product-image img {
      width: 100%;
      border-radius: 6px;
      display: block;
    }

    .favorite-button {
      position: absolute;
      top: 10px;
      right: 10px;
      background: white;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
    }

    .product-info {
      padding: 10px 0;
    }

    .product-info h3 {
      font-size: 14px;
      margin: 5px 0;
      font-weight: normal;
      color: black;
    }

    .product-info .price {
      font-size: 14px;
      margin: 5px 0;
      font-weight: bold;
      color: black;
    }

    .product-info .unit-price {
      font-size: 12px;
      color: #666;
      margin: 5px 0;
    }

    /* Footer */
    .hm-footer {
      font-family: Arial, sans-serif;
      max-width: 1200px;
      margin: 0 auto;
      padding: 30px 20px;
      background: white;
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 30px;
    }

    .footer-col {
      flex: 1;
      min-width: 150px;
    }

    .footer-col h3 {
      font-size: 16px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .footer-col li {
      margin-bottom: 10px;
      font-size: 15px;
    }

    .footer-col a {
      color: #333;
    }

    .region-footer {
      width: 100%;
      padding: 25px 30px;
      background-color: white;
      border-top: 1px solid #e5e5e5;
    }

    .logo-container {
      margin-bottom: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .hm-logo {
      height: 32px;
      width: auto;
    }

    .current-region {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .region-name {
      font-size: 16px;
      font-weight: bold;
      margin-right: 15px;
    }

    .change-region {
      font-size: 15px;
      text-decoration: underline;
      color: #333;
    }

    .change-region:hover {
      color: #000;
    }

    .copyright-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .copyright {
      font-size: 13px;
      color: #666;
      margin-top: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .social-icon {
      font-size: 20px;
      color: #333;
    }

    /* Responsive Styles for Small Devices */
    @media (max-width: 767px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
      }

      .hamburger {
        display: block;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      nav#main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        background: #fff;
        padding: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        margin: 0;
        box-sizing: border-box;
      }

      nav#main-nav.show {
        display: flex;
      }

      nav#main-nav a {
        font-size: 16px;
        padding: 8px 0;
      }

      header {
        padding: 10px 15px;
      }

      .top-banner {
        font-size: 14px;
        padding: 8px 15px;
        text-align: left;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
      }

      .top-banner .shoppa-nu {
        font-size: 14px;
      }

      .top-banner .shoppa-nu i {
        font-size: 12px;
      }

      .logo {
        height: 30px;
      }

      .right-nav {
        gap: 15px;
      }

      .right-nav i {
        font-size: 16px;
      }


      .main-content {
        padding: 20px 15px;
        justify-content: center;
      }

      .main-heading {
        font-size: 32px;
        padding-left: 15px;
        padding-top: 20px;
      }

      .sub-heading {
        font-size: 14px;
        padding-left: 15px;
        padding-top: 20px;
      }

      .description {
        font-size: 14px;
        padding-left: 15px;
        margin-top: 10px;
      }

      .checkout-container {
        width: 100%;
        padding: 15px;
        margin-top: 0;
      }

      .checkout-button,
      .login-button {
        font-size: 13px;
        padding: 10px;
      }

      .payment-icons img {
        height: 20px;
      }

      .info-text {
        font-size: 13px;
      }

      .product-reco {
        padding: 0 15px;
        margin: 20px 0;
      }

      .reco-header h2 {
        font-size: 18px;
        margin: 15px 10px;
      }

      .product-list {
        flex-wrap: wrap;
        overflow-x: visible;
        white-space: normal;
      }

      .product-card {
        width: calc(50% - 10px);
        min-width: 150px;
        margin: 0;
      }

      .product-info h3,
      .product-info .price {
        font-size: 13px;
      }

      .product-info .unit-price {
        font-size: 11px;
      }

      .favorite-button {
        width: 28px;
        height: 28px;
        font-size: 14px;
      }

      .hm-footer {
        padding: 20px 15px;
      }

      .footer-columns {
        flex-wrap: wrap;
        gap: 20px;
      }

      .footer-col {
        min-width: 120px;
        flex: 0 0 calc(50% - 10px); /* Two columns in a row */
      }

      .footer-col:nth-child(3) {
        flex: 0 0 100%; /* Third column takes full width below */
      }

      .footer-col h3 {
        font-size: 15px;
      }

      .footer-col li {
        font-size: 14px;
      }

      .region-footer {
        padding: 20px 15px;
      }

      .hm-logo {
        height: 28px;
      }

      .current-region {
        font-size: 14px;
      }

      .region-name {
        margin-right: 10px;
      }

      .change-region {
        font-size: 14px;
      }

      .copyright {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 10px;
      }
    }
