    * {
      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;
    }

    .top-banner .shoppa-nu {
      font-size: 15px;
      color: black;
      text-decoration: underline;
      font-weight: 500;
    }

    .top-banner .shoppa-nu i {
      font-size: 13px;
      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;
    }

    .product-detail-container {
      display: flex;
      width: 100%;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .product-image-container {
      width: 50%;
      height: 500px;
      overflow-y: scroll;
      box-sizing: border-box;
      margin-left: 0;
      padding-left: 0;
    }

    .product-image-container img {
      width: 100%;
      display: block;
      border-radius: 4px;
    }

    .product-main-info {
      width: 45%;
      margin-left: 30px;
      margin-top: 30px;
      padding-left: 60px;
      padding-right: 10px;
      font-family: sans-serif;
      box-sizing: border-box;
    }

    .product-size {
      font-size: 14px;
    }

    .product-title {
      font-weight: lighter;
      font-size: medium;
      margin: 0;
    }

    .product-price {
      font-weight: bold;
    }

    .product-option {
      margin-top: 10px;
    }

    .option-title {
      font-size: 14px;
    }

    .color-name {
      font-weight: lighter;
      margin-bottom: 10px;
    }

    .color-box {
      width: 80px;
      height: 80px;
      border: 1px solid #aaa;
      cursor: pointer;
      transition: all 0.2s ease-in-out;
    }

    .color-box:hover {
      border: 2px solid black;
      box-shadow: 0 0 5px rgba(0,0,0,0.4);
    }

    .size-guide {
      font-size: 14px;
      text-decoration: underline;
      color: black;
    }

    .primary-button {
      width: 100%;
      background-color: black;
      color: white;
      padding: 15px;
      border: none;
      font-size: 14px;
      cursor: pointer;
    }

    .reviews {
      margin-top: 20px;
    }

    .review-count {
      font-size: 14px;
    }

    .stars {
      font-size: 14px;
    }

    .rating {
      font-size: 14px;
      font-weight: bold;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      cursor: pointer;
    }

    .section-title {
      font-size: 14px;
    }

    .plus-icon {
      font-weight: bold;
    }

    .section-content {
      padding: 5px 0;
    }

    .section-content p, .section-content h4, .section-content h5 {
      font-size: small;
      margin: 5px 0;
    }

    .section-content ul {
      font-size: medium;
      margin-top: 5px;
      padding-left: 20px;
    }

    #product-reco-swg {
      padding: 0;
      margin: 0;
    }

    #styla-med-id {
      margin: 0;
      padding: 10px;
      font-size: 20px;
    }

    .product-reco-list {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 0;
      margin: 0;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .product-reco-list::-webkit-scrollbar {
      display: none;
    }

    .product-reco-card {
      flex: 0 0 25%;
      margin: 0;
      padding: 0;
      position: relative;
      scroll-snap-align: start;
    }

    .product-reco-card img {
      width: 100%;
      display: block;
      border: none;
    }

    .favorite-button {
      position: absolute;
      top: 8px;
      right: 8px;
      background: white;
      border: none;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      cursor: pointer;
    }

    .product-reco-info {
      padding: 10px;
    }

    .product-reco-info h3 {
      margin: 0;
      font-size: 14px;
    }

    .product-reco-info p {
      margin: 5px 0;
      font-weight: bold;
    }

    .swatch {
      display: inline-block;
      width: 14px;
      height: 14px;
      border: 1px solid #888;
      margin-right: 4px;
      cursor: pointer;
    }

    .hide-scroll {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .hide-scroll::-webkit-scrollbar {
      display: none;
    }

    .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 ul {
      list-style: none;
      padding: 0;
    }

    .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;
      }

      .product-detail-container {
        flex-direction: column;
      }

      .product-image-container {
        width: 100%;
        height: 300px;
      }

      .product-main-info {
        width: 100%;
        margin-left: 15px;
        margin-top: 15px;
        padding-left: 15px;
        padding-right: 15px;
      }

      .product-size, .product-title, .product-price {
        font-size: 13px;
      }

      .option-title, .color-name, .size-guide {
        font-size: 13px;
      }

      .color-box {
        width: 60px;
        height: 60px;
      }

      .primary-button {
        padding: 10px;
        font-size: 13px;
      }

      .reviews, .review-count, .stars, .rating {
        font-size: 13px;
      }

      .section-title {
        font-size: 13px;
      }

      .section-content p, .section-content h4, .section-content h5 {
        font-size: 12px;
      }

      .section-content ul {
        font-size: 13px;
      }

      #styla-med-id {
        font-size: 16px;
        padding: 10px 15px;
      }

      .product-reco-list {
        flex-wrap: wrap;
        overflow-x: visible;
        white-space: normal;
        padding-left: 15px;
      }

      .product-reco-card {
        flex: 0 0 calc(50% - 10px);
        margin: 0 5px 10px;
        min-width: 150px;
      }

      .product-reco-info h3 {
        font-size: 13px;
      }

      .product-reco-info p {
        font-size: 13px;
      }

      .swatch {
        width: 12px;
        height: 12px;
      }

      .hm-footer {
        padding: 20px 15px;
      }

      .footer-columns {
        flex-wrap: wrap;
        gap: 20px;
      }

      .footer-col {
        min-width: 120px;
        flex: 0 0 calc(50% - 10px);
      }

      .footer-col:nth-child(3) {
        flex: 0 0 100%;
      }

      .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;
      }
    }
