/* merged static CSS */

/* index.html 0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

    :root {
      --primary: #006679;
      --secondary: #7fb2bc;
      --accent: #d80034;
      --sand: #F9F8F6;
      --white: #ffffff;
      --stone-50: #f9f8f7;
      --stone-100: #f5f5f4;
      --stone-200: #e7e5e4;
      --stone-400: #a8a29e;
      --stone-500: #78716c;
      --stone-600: #57534e;
      --stone-900: #1c1917;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.5;
      color: var(--stone-900);
      background-color: var(--white);
    }

    .font-display {
      font-family: 'General Sans', sans-serif;
    }

    .font-body {
      font-family: 'Satoshi', sans-serif;
    }

    .min-h-screen {
      min-height: 100vh;
    }

    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 640px) {
      .container {
        padding: 0 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

    ::selection {
      background-color: rgba(0, 102, 121, 0.2);
    }

    /* Section Hero */
    .hero {
      position: relative;
      height: 85vh;
      overflow: hidden;
      background-color: #F9F8F6;
      display: flex;
      align-items: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      opacity: 0.4;
      pointer-events: none;
    }

    .blob-1 {
      position: absolute;
      top: -10%;
      left: -10%;
      width: 40%;
      height: 60%;
      border-radius: 50%;
      background: rgba(127, 178, 188, 0.1);
      filter: blur(120px);
    }

    .blob-2 {
      position: absolute;
      bottom: -10%;
      right: -10%;
      width: 40%;
      height: 60%;
      border-radius: 50%;
      background: rgba(0, 102, 121, 0.05);
      filter: blur(120px);
    }

    .hero-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2rem;
      width: 100%;
    }

    @media (min-width: 768px) {
      .hero-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
      }
    }

    .hero-text {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .hero-text {
        width: 50%;
      }
    }

    .badge {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 9999px;
      border: 1px solid rgba(127, 178, 188, 0.2);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--secondary);
      width: fit-content;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .badge {
        margin: 0;
      }
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: var(--stone-900);
    }

    @media (min-width: 1024px) {
      .hero-title {
        font-size: 4.5rem;
      }
    }

    .text-primary-color {
      color: var(--primary);
    }

    .hero-description {
      font-size: 1.125rem;
      color: var(--stone-600);
      max-width: 32rem;
      line-height: 1.625;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    @media (min-width: 640px) {
      .hero-actions {
        flex-direction: row;
        justify-content: center;
      }
    }

    @media (min-width: 768px) {
      .hero-actions {
        justify-content: flex-start;
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.25rem 2.5rem;
      border-radius: 9999px;
      font-weight: 500;
      font-size: 1.125rem;
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
    }

    .btn-primary {
      background-color: var(--primary);
      color: var(--white);
      box-shadow: 0 10px 15px -3px rgba(0, 102, 121, 0.1);
    }

    .btn-primary:hover {
      background-color: var(--stone-900);
    }

    .btn-outline {
      background-color: var(--white);
      border: 1px solid var(--stone-200);
      color: var(--stone-700);
    }

    .btn-outline:hover {
      border-color: var(--secondary);
      color: var(--primary);
    }

    .hero-visual {
      display: none;
    }

    @media (min-width: 768px) {
      .hero-visual {
        display: block;
        width: 50%;
        height: 100%;
        position: relative;
      }
    }

    .visual-container {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .img-large {
      width: 80%;
      height: 80%;
      object-fit: cover;
      border-radius: 40px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      transform: rotate(-3deg);
    }

    .img-accent {
      position: absolute;
      width: 45%;
      height: 50%;
      object-fit: cover;
      border-radius: 30px;
      border: 8px solid var(--white);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      z-index: 10;
      right: 0;
      bottom: 5rem;
      transform: rotate(6deg);
    }

    /* Featured Collection */
    .section-padding {
      padding: 6rem 0;
    }

    .flex-between {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
      .flex-between {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
      }
    }

    .section-subtitle {
      color: var(--secondary);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.875rem;
    }

    .section-title {
      font-size: 2.25rem;
      font-weight: 500;
      color: var(--stone-900);
    }

    .view-all-link {
      display: inline-flex;
      align-items: center;
      color: var(--stone-900);
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
    }

    .view-all-link:hover {
      color: var(--primary);
    }

    .view-all-link iconify-icon {
      margin-left: 0.5rem;
      transition: transform 0.3s ease;
    }

    .view-all-link:hover iconify-icon {
      transform: translateX(4px);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 2rem;
    }

    @media (min-width: 640px) {
      .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 1024px) {
      .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .card {
      cursor: pointer;
    }

    .card-img-wrapper {
      aspect-ratio: 3/4;
      overflow: hidden;
      border-radius: 1rem;
      background-color: #F5F5F5;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .card:hover .card-img {
      transform: scale(1.05);
    }

    .quick-add-overlay {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
      opacity: 0;
      transform: translateY(1rem);
      transition: var(--transition);
    }

    .card:hover .quick-add-overlay {
      opacity: 1;
      transform: translateY(0);
    }

    .btn-quick-add {
      width: 100%;
      padding: 0.75rem;
      background-color: var(--white);
      color: var(--stone-900);
      border-radius: 0.75rem;
      font-weight: 500;
      border: none;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .btn-quick-add:hover {
      color: var(--primary);
    }

    .card-info {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .card-name {
      font-weight: 500;
      color: var(--stone-900);
      transition: var(--transition);
    }

    .card:hover .card-name {
      color: var(--primary);
    }

    .card-tagline {
      font-size: 0.875rem;
      color: var(--stone-400);
      margin-top: 0.25rem;
    }

    .card-price {
      font-weight: 600;
      color: var(--stone-900);
    }

    /* Value Props */
    .bg-stone-50-color {
      background-color: var(--stone-50);
    }

    .value-props-grid {
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 4rem;
    }

    @media (min-width: 768px) {
      .value-props-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .value-item {
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .icon-wrapper {
      margin: 0 auto;
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background-color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      border: 1px solid var(--stone-100);
    }

    .value-title {
      font-size: 1.25rem;
      font-weight: 500;
    }

    .value-desc {
      color: var(--stone-500);
      line-height: 1.625;
    }

/* about.html 0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

    :root {
      --primary: #006679;
      --secondary: #7fb2bc;
      --accent: #d80034;
      --sand: #F9F8F6;
      --white: #ffffff;
      --stone-50: #fafaf9;
      --stone-100: #f5f5f4;
      --stone-200: #e7e5e4;
      --stone-300: #d6d3d1;
      --stone-400: #a8a29e;
      --stone-500: #78716c;
      --stone-600: #57534e;
      --stone-900: #1c1917;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      color: var(--stone-900);
      background-color: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    ::selection {
      background-color: rgba(0, 102, 121, 0.2);
    }

    .font-display {
      font-family: 'General Sans', sans-serif;
    }

    .font-body {
      font-family: 'Satoshi', sans-serif;
    }

    .container {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;
      padding-right: 1rem;
    }

    @media (min-width: 640px) {
      .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

    .hero {
      position: relative;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: var(--stone-900);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      transform: scale(1.05);
      animation: pulse-slow 10s ease-in-out infinite;
    }

    @keyframes pulse-slow {

      0%,
      100% {
        transform: scale(1.05);
      }

      50% {
        transform: scale(1.1);
      }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 1rem;
      max-width: 1024px;
      margin: 0 auto;
    }

    .badge-accent {
      display: inline-block;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background-color: var(--accent);
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 1rem;
    }

    .hero-title {
      font-size: 3.75rem;
      font-weight: 500;
      color: var(--white);
      letter-spacing: -0.025em;
      line-height: 0.9;
      margin: 0;
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: 6rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-title {
        font-size: 8rem;
      }
    }

    .hero-desc {
      font-size: 1.125rem;
      color: var(--stone-200);
      max-width: 42rem;
      margin: 1.5rem auto 0;
      line-height: 1.625;
    }

    @media (min-width: 768px) {
      .hero-desc {
        font-size: 1.25rem;
      }
    }

    .scroll-indicator {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 1s infinite;
      color: var(--white);
      font-size: 1.5rem;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translate(-50%, 0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
      }

      50% {
        transform: translate(-50%, -25%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
      }
    }

    .section-mission {
      padding: 6rem 0;
      background-color: var(--white);
    }

    @media (min-width: 768px) {
      .section-mission {
        padding: 8rem 0;
      }
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
    }

    @media (min-width: 768px) {
      .mission-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .mission-item {
      text-align: center;
    }

    .mission-icon-box {
      width: 5rem;
      height: 5rem;
      margin: 0 auto 1.5rem;
      border-radius: 1.5rem;
      background-color: rgba(0, 102, 121, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mission-item:hover .mission-icon-box {
      background-color: var(--primary);
      color: var(--white);
    }

    .mission-icon-box iconify-icon {
      font-size: 1.875rem;
    }

    .mission-item h3 {
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0 0 1rem;
    }

    .mission-item p {
      color: var(--stone-500);
      max-width: 20rem;
      margin: 0 auto;
      line-height: 1.625;
    }

    .section-story {
      padding: 6rem 0;
      background-color: var(--stone-50);
      overflow: hidden;
    }

    .story-container {
      display: flex;
      flex-direction: column;
      gap: 4rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .story-container {
        flex-direction: row;
        gap: 6rem;
      }
    }

    .story-image-wrap {
      width: 100%;
      position: relative;
    }

    @media (min-width: 1024px) {
      .story-image-wrap {
        width: 50%;
      }
    }

    .story-image-glow {
      position: absolute;
      inset: -1rem;
      background-color: rgba(0, 102, 121, 0.1);
      border-radius: 3rem;
      filter: blur(24px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .story-image-wrap:hover .story-image-glow {
      background-color: rgba(0, 102, 121, 0.2);
    }

    .story-image {
      position: relative;
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 2.5rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .story-image-wrap:hover .story-image {
      transform: scale(1.02);
    }

    .quote-box {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 8rem;
      height: 8rem;
      background-color: var(--white);
      border-radius: 1.5rem;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .quote-box {
        display: flex;
      }
    }

    .quote-box img {
      width: 100%;
      opacity: 0.2;
    }

    .story-content {
      width: 100%;
    }

    @media (min-width: 1024px) {
      .story-content {
        width: 50%;
      }
    }

    .story-content h2 {
      font-size: 2.5rem;
      font-weight: 500;
      margin-bottom: 2rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .story-content h2 {
        font-size: 3rem;
      }
    }

    .story-text-group p {
      font-size: 1.25rem;
      color: var(--stone-600);
      line-height: 1.625;
      margin-bottom: 1.5rem;
    }

    .story-link {
      display: inline-flex;
      align-items: center;
      color: var(--primary);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.875rem;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .story-link:hover {
      transform: translateX(0.5rem);
    }

    .story-link iconify-icon {
      margin-left: 0.5rem;
    }

    .section-dna {
      padding: 6rem 0;
    }

    @media (min-width: 768px) {
      .section-dna {
        padding: 8rem 0;
      }
    }

    .dna-header {
      text-align: center;
      margin-bottom: 5rem;
    }

    .dna-header h2 {
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--secondary);
      margin-bottom: 1rem;
    }

    .dna-header p {
      font-size: 2.5rem;
      font-weight: 500;
      margin: 0;
    }

    @media (min-width: 768px) {
      .dna-header p {
        font-size: 3rem;
      }
    }

    .values-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    @media (min-width: 640px) {
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .values-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .value-item {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .value-icon {
      font-size: 2.25rem;
      color: var(--primary);
    }

    .value-item h4 {
      font-size: 1.25rem;
      font-weight: 500;
      margin: 0;
    }

    .value-item p {
      font-size: 0.875rem;
      color: var(--stone-500);
      line-height: 1.625;
      margin: 0;
    }

    .section-stats {
      padding: 6rem 0;
      background-color: var(--stone-50);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      border-top: 1px solid var(--stone-200);
      border-bottom: 1px solid var(--stone-200);
      padding: 4rem 0;
    }

    @media (min-width: 768px) {
      .stats-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: -0.025em;
      margin: 0 0 0.5rem;
    }

    .stat-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--stone-400);
      margin: 0;
    }

    .section-team {
      padding: 6rem 0;
    }

    @media (min-width: 768px) {
      .section-team {
        padding: 8rem 0;
      }
    }

    .team-header {
      text-align: center;
      margin-bottom: 5rem;
    }

    .team-header h2 {
      font-size: 2.5rem;
      font-weight: 500;
      margin: 0;
    }

    @media (min-width: 768px) {
      .team-header h2 {
        font-size: 3rem;
      }
    }

    .team-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    @media (min-width: 768px) {
      .team-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .team-card {
      text-align: center;
    }

    .team-image-box {
      aspect-ratio: 1/1;
      overflow: hidden;
      border-radius: 2rem;
      background-color: var(--stone-100);
      margin-bottom: 1.5rem;
    }

    .team-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-card:hover .team-image {
      filter: grayscale(0);
    }

    .team-card h3 {
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0 0 0.25rem;
    }

    .team-role {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--primary);
      margin: 0 0 1rem;
    }

    .team-quote {
      font-style: italic;
      color: var(--stone-500);
      font-size: 0.875rem;
      margin: 0;
    }

    .section-cta {
      position: relative;
      padding: 8rem 0;
      background-color: var(--primary);
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .section-cta {
        padding: 12rem 0;
      }
    }

    .cta-bg {
      position: absolute;
      inset: 0;
    }

    .cta-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
    }

    .cta-content {
      position: relative;
      z-index: 10;
      max-width: 56rem;
      margin: 0 auto;
      padding: 0 1rem;
      text-align: center;
    }

    .cta-title {
      font-size: 2.25rem;
      font-weight: 500;
      color: var(--white);
      line-height: 1.2;
      letter-spacing: -0.025em;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .cta-title {
        font-size: 4.5rem;
      }
    }

    .cta-btns {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      align-items: center;
    }

    @media (min-width: 640px) {
      .cta-btns {
        flex-direction: row;
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.25rem 3rem;
      border-radius: 9999px;
      font-weight: 700;
      font-size: 1.125rem;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
    }

    .btn-white {
      background-color: var(--white);
      color: var(--primary);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .btn-white:hover {
      background-color: var(--stone-100);
    }

    .btn-outline {
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: var(--white);
      background: transparent;
    }

    .btn-outline:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s ease-out;
    }

    .reveal-on-scroll.active {
      opacity: 1;
      transform: translateY(0);
    }

/* contact.html 0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

    :root {
      --primary: #006679;
      --primary-dark: #1c1917;
      --secondary: #7fb2bc;
      --accent: #d80034;
      --stone-50: #fafaf9;
      --stone-100: #f5f5f4;
      --stone-200: #e7e5e4;
      --stone-300: #d6d3d1;
      --stone-400: #a8a29e;
      --stone-500: #78716c;
      --stone-900: #1c1917;
      --white: #ffffff;
      --radius-xl: 0.75rem;
      --radius-2xl: 1rem;
      --radius-3xl: 1.5rem;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.5;
      color: var(--stone-900);
      background-color: var(--white);
    }

    .font-display {
      font-family: 'General Sans', sans-serif;
    }

    .font-body {
      font-family: 'Satoshi', sans-serif;
    }

    .layout-container {
      min-height: 100vh;
    }

    .container {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 640px) {
      .container {
        padding: 0 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 45vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 1rem;
      overflow: hidden;
      background-color: var(--stone-50);
    }

    .hero-bg-circle {
      position: absolute;
      width: 24rem;
      height: 24rem;
      border-radius: 50%;
      filter: blur(100px);
      z-index: 0;
    }

    .hero-circle-top {
      top: 0;
      right: 0;
      background-color: rgba(127, 178, 188, 0.1);
      transform: translate(50%, -50%);
    }

    .hero-circle-bottom {
      bottom: 0;
      left: 0;
      background-color: rgba(0, 102, 121, 0.05);
      transform: translate(-50%, 50%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 48rem;
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 500;
      letter-spacing: -0.025em;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: 4.5rem;
      }
    }

    .text-primary {
      color: var(--primary);
    }

    .hero-subtitle {
      font-size: 1.125rem;
      color: var(--stone-500);
      max-width: 42rem;
      margin: 0 auto;
    }

    /* Main Content Layout */
    .contact-main {
      padding-top: 5rem;
      padding-bottom: 5rem;
    }

    .split-layout {
      display: flex;
      flex-direction: column;
      gap: 4rem;
    }

    @media (min-width: 1024px) {
      .split-layout {
        flex-direction: row;
        gap: 4rem;
      }

      .form-side {
        width: 55%;
      }

      .info-side {
        width: 45%;
      }
    }

    @media (min-width: 1280px) {
      .split-layout {
        gap: 6rem;
      }
    }

    /* Forms */
    .section-title {
      font-size: 1.875rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .response-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--stone-400);
      font-weight: 500;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 2.5rem;
    }

    .form-grid {
      display: grid;
      grid-template-cols: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .form-grid {
        grid-template-cols: repeat(2, 1fr);
      }

      .col-span-2 {
        grid-column: span 2 / span 2;
      }
    }

    .input-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .label-text {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--stone-400);
      margin-left: 0.25rem;
    }

    .contact-input {
      width: 100%;
      background-color: #f9f8f6;
      border: 1px solid transparent;
      border-radius: var(--radius-xl);
      padding: 1rem 1.25rem;
      color: var(--stone-900);
      font-weight: 500;
      transition: var(--transition);
    }

    .contact-input::placeholder {
      color: var(--stone-300);
    }

    .contact-input:focus {
      background-color: var(--white);
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(0, 102, 121, 0.1);
      outline: none;
      transform: translateY(-1px);
    }

    select.contact-input {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23a8a29e%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22%2F%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-position: right 1.25rem center;
      background-size: 1.25rem auto;
      cursor: pointer;
    }

    .textarea-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-left: 0.25rem;
    }

    .char-limit {
      font-size: 0.625rem;
      color: var(--stone-300);
    }

    .btn-submit {
      width: 100%;
      background-color: var(--primary);
      color: var(--white);
      padding: 1.25rem;
      border: none;
      border-radius: var(--radius-2xl);
      font-weight: 600;
      font-size: 1.125rem;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 10px 15px -3px rgba(0, 102, 121, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    .btn-submit:hover {
      background-color: var(--stone-900);
    }

    .btn-submit iconify-icon {
      transition: transform 0.3s ease;
    }

    .btn-submit:hover iconify-icon {
      transform: translate(4px, -4px);
    }

    /* Info Sidebar */
    .info-side {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .info-intro-text {
      color: var(--stone-500);
      line-height: 1.625;
    }

    .info-blocks {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .info-card {
      display: flex;
      align-items: flex-start;
      padding: 1.5rem;
      border-radius: var(--radius-2xl);
      border: 1px solid var(--stone-100);
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    .info-card:hover {
      border-color: rgba(0, 102, 121, 0.2);
      background-color: var(--stone-50);
    }

    .icon-wrapper {
      width: 3rem;
      height: 3rem;
      border-radius: var(--radius-xl);
      background-color: rgba(0, 102, 121, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
      transition: var(--transition);
    }

    .info-card:hover .icon-wrapper {
      background-color: var(--primary);
      color: var(--white);
    }

    .info-card-content {
      margin-left: 1.5rem;
    }

    .info-card-label {
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--stone-400);
      margin-bottom: 0.25rem;
    }

    .info-card-value {
      font-weight: 500;
      color: var(--stone-900);
      transition: color 0.3s ease;
    }

    .info-card:hover .info-card-value {
      color: var(--primary);
    }

    .hours-card {
      background-color: var(--stone-50);
      border-radius: var(--radius-3xl);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .hours-title {
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--stone-900);
    }

    .hours-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.875rem;
    }

    .hours-day {
      color: var(--stone-500);
      font-weight: 500;
    }

    .hours-time {
      color: var(--stone-900);
      font-weight: 600;
    }

    .hours-closed {
      color: var(--accent);
      font-weight: 700;
    }

    .social-section {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding-top: 1rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-btn {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      border: 1px solid var(--stone-200);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--stone-400);
      text-decoration: none;
      transition: var(--transition);
    }

    .social-btn:hover {
      color: var(--primary);
      border-color: var(--primary);
      transform: scale(1.1);
    }

    /* Map Section */
    .map-wrapper {
      margin-top: 6rem;
      border-radius: var(--radius-3xl);
      overflow: hidden;
    }

    .map-placeholder {
      height: 400px;
      width: 100%;
      background-color: var(--stone-100);
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      border: 1px solid var(--stone-200);
    }

    .map-icon-container {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background-color: var(--white);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 102, 121, 0.4);
      }

      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 102, 121, 0);
      }

      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 102, 121, 0);
      }
    }

    .map-title {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--stone-900);
    }

    .map-subtitle {
      font-size: 0.875rem;
      color: var(--stone-400);
    }

    .map-texture {
      position: absolute;
      inset: 0;
      opacity: 0.03;
      pointer-events: none;
      background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    }

    /* FAQ Section */
    .faq-section {
      padding: 6rem 0;
      background-color: var(--stone-50);
    }

    .faq-container {
      max-width: 48rem;
      margin: 0 auto;
      padding: 0 1rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-align: left;
    }

    .faq-item {
      background-color: var(--white);
      padding: 1.5rem;
      border-radius: var(--radius-2xl);
      border: 1px solid var(--stone-200);
    }

    .faq-question {
      font-weight: 700;
      color: var(--stone-900);
    }

    .faq-answer {
      margin-top: 0.5rem;
      color: var(--stone-500);
      font-size: 0.875rem;
    }

/* cart.html 0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

    :root {
      --primary: #006679;
      --secondary: #7fb2bc;
      --accent: #d80034;
      --sand: #F9F8F6;
      --stone-50: #fafaf9;
      --stone-100: #f5f5f4;
      --stone-200: #e7e5e4;
      --stone-300: #d6d3d1;
      --stone-400: #a8a29e;
      --stone-500: #78716c;
      --stone-600: #57534e;
      --stone-800: #292524;
      --stone-900: #1c1917;
      --transition-main: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #fff;
      color: var(--stone-900);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    ::selection {
      background-color: rgba(0, 102, 121, 0.2);
    }

    .font-display {
      font-family: 'General Sans', sans-serif;
    }

    .font-body {
      font-family: 'Satoshi', sans-serif;
    }

    .app-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container-max {
      max-width: 80rem;
      margin: 0 auto;
      width: 100%;
      padding: 0 1rem;
    }

    @media (min-width: 640px) {
      .container-max {
        padding: 0 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .container-max {
        padding: 0 2rem;
      }
    }

    .main-content {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }

    @media (min-width: 1024px) {
      .main-content {
        padding-top: 5rem;
        padding-bottom: 5rem;
      }
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      list-style: none;
      margin-bottom: 2rem;
      font-size: 0.875rem;
      color: var(--stone-400);
      font-weight: 500;
    }

    .breadcrumb a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-main);
    }

    .breadcrumb a:hover {
      color: var(--primary);
    }

    .cart-header {
      margin-bottom: 3rem;
    }

    .cart-header h1 {
      font-size: 2.25rem;
      font-weight: 500;
      letter-spacing: -0.025em;
    }

    .cart-header .count {
      color: var(--stone-300);
      font-weight: 400;
      font-size: 1.875rem;
      margin-left: 0.5rem;
    }

    @media (min-width: 768px) {
      .cart-header h1 {
        font-size: 3rem;
      }
    }

    .cart-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    @media (min-width: 1024px) {
      .cart-layout {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5rem;
      }

      .cart-items-section {
        grid-column: span 2 / span 2;
      }
    }

    .cart-table-wrapper {
      overflow-x: auto;
      width: 100%;
    }

    .cart-table {
      width: 100%;
      text-align: left;
      border-collapse: collapse;
      min-width: 600px;
    }

    .cart-table th {
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--stone-100);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--stone-400);
    }

    .cart-table td {
      padding: 2rem 0;
      border-bottom: 1px solid var(--stone-50);
    }

    .product-cell {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .product-img {
      width: 6rem;
      height: 8rem;
      border-radius: 0.75rem;
      overflow: hidden;
      background-color: var(--stone-50);
      flex-shrink: 0;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-info h3 {
      font-weight: 500;
      color: var(--stone-900);
      margin-bottom: 0.25rem;
    }

    .product-info p {
      font-size: 0.875rem;
      color: var(--stone-400);
    }

    .product-info span {
      color: var(--stone-600);
    }

    .quantity-control {
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--stone-200);
      border-radius: 0.5rem;
      padding: 0.25rem;
    }

    .quantity-btn {
      width: 2rem;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: transparent;
      color: var(--stone-500);
      cursor: pointer;
      border-radius: 0.25rem;
      transition: var(--transition-main);
    }

    .quantity-btn:hover {
      background-color: var(--stone-50);
    }

    .quantity-val {
      width: 2.5rem;
      text-align: center;
      font-weight: 500;
      font-size: 0.875rem;
    }

    .price-cell {
      text-align: right;
      font-weight: 500;
      color: var(--stone-900);
    }

    .remove-btn {
      color: var(--stone-300);
      border: none;
      background: transparent;
      cursor: pointer;
      padding: 0.5rem;
      transition: var(--transition-main);
    }

    .remove-btn:hover {
      color: var(--accent);
    }

    .cart-footer-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--stone-100);
    }

    @media (min-width: 640px) {
      .cart-footer-actions {
        flex-direction: row;
      }
    }

    .continue-shopping {
      display: inline-flex;
      align-items: center;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--stone-500);
      text-decoration: none;
      transition: var(--transition-main);
    }

    .continue-shopping:hover {
      color: var(--primary);
    }

    .shipping-info-banner {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--stone-400);
    }

    .summary-card {
      position: sticky;
      top: 7rem;
      background-color: var(--stone-50);
      border-radius: 1.5rem;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .summary-card h2 {
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--stone-900);
    }

    .summary-rows {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.875rem;
      color: var(--stone-500);
    }

    .summary-row .val {
      font-weight: 500;
      color: var(--stone-900);
    }

    .summary-total {
      border-top: 1px solid var(--stone-200);
      padding-top: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }

    .total-label {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--stone-900);
    }

    .total-label p {
      font-size: 0.75rem;
      color: var(--stone-400);
    }

    .total-amount {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
    }

    @media (min-width: 768px) {
      .total-amount {
        font-size: 1.875rem;
      }
    }

    .checkout-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.25rem 0;
      background-color: var(--primary);
      color: #fff;
      border-radius: 1rem;
      font-weight: 500;
      font-size: 1.125rem;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: var(--transition-main);
      box-shadow: 0 10px 15px -3px rgba(0, 102, 121, 0.1);
    }

    .checkout-btn:hover {
      background-color: var(--stone-800);
    }

    .trust-badges {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding-top: 1rem;
      font-size: 0.75rem;
      color: var(--stone-400);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .trust-item iconify-icon {
      font-size: 1rem;
      color: var(--primary);
    }

    .promo-section {
      padding-top: 2rem;
      border-top: 1px solid var(--stone-200);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .promo-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--stone-400);
    }

    .promo-form {
      display: flex;
      gap: 0.5rem;
    }

    .promo-input {
      flex: 1;
      border: 1px solid var(--stone-200);
      border-radius: 0.75rem;
      padding: 0.75rem 1rem;
      font-size: 0.875rem;
      outline: none;
      transition: var(--transition-main);
    }

    .promo-input:focus {
      border-color: var(--primary);
    }

    .promo-btn {
      padding: 0.75rem 1.5rem;
      background-color: var(--stone-200);
      color: var(--stone-600);
      border-radius: 0.75rem;
      font-size: 0.875rem;
      font-weight: 500;
      border: none;
      cursor: pointer;
      transition: var(--transition-main);
    }

    .promo-btn:hover {
      background-color: var(--stone-300);
    }

    .recom-section {
      padding-top: 6rem;
      padding-bottom: 6rem;
      background-color: #fff;
      border-top: 1px solid var(--stone-100);
    }

    .recom-header {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .recom-header {
        flex-direction: row;
      }
    }

    .recom-header span {
      color: var(--secondary);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.875rem;
    }

    .recom-header h2 {
      font-size: 1.875rem;
      font-weight: 500;
      color: var(--stone-900);
    }

    .recom-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .recom-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }
    }

    .recom-card {
      cursor: pointer;
      text-decoration: none;
      display: block;
    }

    .recom-img {
      aspect-ratio: 3 / 4;
      overflow: hidden;
      border-radius: 1rem;
      background-color: var(--stone-50);
      margin-bottom: 1rem;
      position: relative;
    }

    .recom-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .recom-card:hover .recom-img img {
      transform: scale(1.05);
    }

    .recom-card h3 {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--stone-900);
      margin-bottom: 0.25rem;
      transition: color 0.3s;
    }

    .recom-card:hover h3 {
      color: var(--primary);
    }

    .recom-card p {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--stone-900);
    }

/* order.html 0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

    :root {
      --primary: #006679;
      --secondary: #7fb2bc;
      --accent: #d80034;
      --sand: #F9F8F6;
      --white: #ffffff;
      --stone-50: #fafaf9;
      --stone-100: #f5f5f4;
      --stone-200: #e7e5e4;
      --stone-300: #d6d3d1;
      --stone-400: #a8a29e;
      --stone-500: #78716c;
      --stone-600: #57534e;
      --stone-700: #44403c;
      --stone-800: #292524;
      --stone-900: #1c1917;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--white);
      color: var(--stone-900);
      line-height: 1.5;
      min-height: 100vh;
    }

    ::selection {
      background-color: rgba(0, 102, 121, 0.2);
    }

    .font-display {
      font-family: 'General Sans', sans-serif;
    }

    .font-body {
      font-family: 'Satoshi', sans-serif;
    }

    .page-wrapper {
      min-height: 100vh;
    }

    .container {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 640px) {
      .container {
        padding: 0 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

    .main-content {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }

    @media (min-width: 1024px) {
      .main-content {
        padding-top: 5rem;
        padding-bottom: 5rem;
      }
    }

    .checkout-layout {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    @media (min-width: 1024px) {
      .checkout-layout {
        flex-direction: row;
        gap: 5rem;
      }
    }

    .checkout-flow {
      flex: 1;
    }

    @media (min-width: 1024px) {
      .checkout-flow {
        flex: 0 0 66.666667%;
      }
    }

    .order-summary-sidebar {
      flex: 1;
    }

    @media (min-width: 1024px) {
      .order-summary-sidebar {
        flex: 0 0 33.333333%;
      }
    }

    /* Spacing Helpers */
    .space-y-12>*+* {
      margin-top: 3rem;
    }

    .space-y-8>*+* {
      margin-top: 2rem;
    }

    .space-y-6>*+* {
      margin-top: 1.5rem;
    }

    .space-y-4>*+* {
      margin-top: 1rem;
    }

    /* Progress Indicator */
    .progress-nav {
      margin-bottom: 3rem;
    }

    .progress-list {
      display: flex;
      align-items: center;
      gap: 1rem;
      list-style: none;
    }

    .progress-item {
      display: flex;
      align-items: center;
      font-size: 0.875rem;
      font-weight: 500;
    }

    .progress-item.active {
      color: var(--primary);
    }

    .progress-item.inactive {
      color: var(--stone-500);
    }

    .progress-step {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 2rem;
      width: 2rem;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .progress-step.active {
      background-color: var(--primary);
      color: var(--white);
    }

    .progress-step.inactive {
      border: 2px solid var(--stone-200);
      color: var(--stone-400);
    }

    .progress-label {
      margin-left: 0.75rem;
    }

    .progress-chevron {
      color: var(--stone-300);
      font-size: 1.25rem;
      margin: 0 0.5rem;
    }

    /* Form Sections */
    .section-header {
      border-bottom: 1px solid var(--stone-100);
      padding-bottom: 1rem;
      margin-bottom: 2rem;
    }

    .flex-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--stone-900);
      margin: 0;
      letter-spacing: -0.025em;
    }

    .card-logos {
      display: flex;
      gap: 0.5rem;
    }

    .logo-icon {
      font-size: 1.875rem;
    }

    .grid-form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .grid-form {
        grid-template-columns: repeat(2, 1fr);
      }

      .col-span-full {
        grid-column: span 2 / span 2;
      }
    }

    .inner-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--stone-700);
      margin-bottom: 0.5rem;
    }

    .input-wrapper {
      position: relative;
    }

    .input {
      width: 100%;
      padding: 0.75rem 1rem;
      border-radius: 0.75rem;
      border: 1px solid var(--stone-200);
      background-color: var(--stone-50);
      transition: var(--transition);
      font-family: inherit;
      font-size: 1rem;
    }

    .input:focus {
      outline: none;
      border-color: var(--primary);
      background-color: var(--white);
      box-shadow: 0 0 0 1px var(--primary);
    }

    .input-with-icon {
      padding-left: 3rem;
    }

    .input-icon {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--stone-400);
      font-size: 1.25rem;
      pointer-events: none;
    }

    .select {
      width: 100%;
      padding: 0.75rem 1rem;
      border-radius: 0.75rem;
      border: 1px solid var(--stone-200);
      background-color: var(--stone-50);
      font-family: inherit;
      font-size: 1rem;
      cursor: pointer;
      appearance: none;
      background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23a8a29e%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22%2F%3E%3C%2Fsvg%3E');
      background-position: right 1rem center;
      background-repeat: no-repeat;
      background-size: 1.25rem auto;
    }

    /* Shipping Methods */
    .method-card {
      position: relative;
      display: flex;
      align-items: center;
      padding: 1.5rem;
      border: 1px solid var(--stone-200);
      border-radius: 1rem;
      cursor: pointer;
      transition: var(--transition);
    }

    .method-card:hover {
      border-color: var(--primary);
    }

    .method-card.checked {
      background-color: var(--stone-50);
    }

    .radio {
      width: 1.25rem;
      height: 1.25rem;
      accent-color: var(--primary);
      cursor: pointer;
    }

    .method-content {
      margin-left: 1rem;
      flex: 1;
    }

    .method-name {
      display: block;
      font-weight: 500;
      color: var(--stone-900);
    }

    .method-time {
      display: block;
      font-size: 0.875rem;
      color: var(--stone-500);
    }

    .method-price {
      font-weight: 600;
      color: var(--stone-900);
    }

    .checkbox-row {
      display: flex;
      align-items: center;
    }

    .checkbox {
      width: 1.25rem;
      height: 1.25rem;
      accent-color: var(--primary);
      border-radius: 0.25rem;
      cursor: pointer;
    }

    .checkbox-label {
      margin-left: 0.75rem;
      font-size: 0.875rem;
      color: var(--stone-600);
      cursor: pointer;
    }

    /* Order Summary */
    .summary-card {
      position: sticky;
      top: 8rem;
      background-color: var(--stone-50);
      border: 1px solid var(--stone-100);
      border-radius: 32px;
      padding: 2rem;
    }

    .summary-heading {
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--stone-900);
      margin-bottom: 2rem;
    }

    .item-list {
      overflow-y: auto;
      max-height: 400px;
      padding-right: 0.5rem;
    }

    .cart-item {
      display: flex;
      gap: 1rem;
    }

    .item-img-container {
      width: 5rem;
      height: 6rem;
      background-color: var(--white);
      border-radius: 0.75rem;
      overflow: hidden;
      flex-shrink: 0;
    }

    .item-img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .item-info {
      flex: 1;
      min-width: 0;
    }

    .item-title {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--stone-900);
      margin: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .item-meta {
      font-size: 0.75rem;
      color: var(--stone-500);
      margin-top: 0.25rem;
    }

    .item-pricing {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0.5rem;
    }

    .item-qty {
      font-size: 0.75rem;
      color: var(--stone-400);
    }

    .item-price {
      font-size: 0.875rem;
      font-weight: 600;
    }

    .totals-box {
      border-top: 1px solid var(--stone-200);
      padding-top: 1.5rem;
    }

    .line-item {
      display: flex;
      justify-content: space-between;
      font-size: 0.875rem;
      color: var(--stone-600);
      margin-bottom: 1rem;
    }

    .line-item .val {
      font-weight: 500;
      color: var(--stone-900);
    }

    .grand-total-row {
      border-top: 1px solid var(--stone-200);
      padding-top: 1rem;
      margin-top: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }

    .total-title {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--stone-900);
      margin: 0;
    }

    .tax-hint {
      font-size: 0.75rem;
      color: var(--stone-400);
      margin-top: 0.25rem;
    }

    .total-val {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
      letter-spacing: -0.025em;
    }

    /* Action Button */
    .place-order-btn {
      width: 100%;
      padding: 1.25rem;
      background-color: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 9999px;
      font-size: 1.125rem;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      box-shadow: 0 10px 15px -3px rgba(0, 102, 121, 0.1);
      font-family: inherit;
    }

    .place-order-btn:hover {
      background-color: var(--accent);
    }

    .place-order-btn iconify-icon {
      margin-left: 0.5rem;
      font-size: 1.25rem;
      transition: transform 0.3s;
    }

    .place-order-btn:hover iconify-icon {
      transform: scale(1.1);
    }

    .security-footer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      color: var(--stone-400);
      margin-top: 2rem;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }

/* product.html 0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

    :root {
      --primary: #006679;
      --secondary: #7fb2bc;
      --accent: #d80034;
      --sand: #F9F8F6;
      --white: #ffffff;
      --stone-50: #f9f8f6;
      --stone-100: #f5f5f4;
      --stone-200: #e7e5e4;
      --stone-300: #d6d3d1;
      --stone-400: #a8a29e;
      --stone-500: #78716c;
      --stone-600: #57534e;
      --stone-900: #1c1917;
      --amber-400: #fbbf24;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --shadow-lg: 0 10px 15px -3px rgba(0, 102, 121, 0.1), 0 4px 6px -2px rgba(0, 102, 121, 0.05);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--white);
      color: var(--stone-900);
      -webkit-font-smoothing: antialiased;
    }

    .font-display {
      font-family: 'General Sans', sans-serif;
    }

    .font-body {
      font-family: 'Satoshi', sans-serif;
    }

    .site-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .main-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 1rem;
      width: 100%;
    }

    @media (min-width: 768px) {
      .main-content {
        padding: 3rem 1.5rem;
      }
    }

    /* Breadcrumb */
    .breadcrumb {
      display: flex;
      margin-bottom: 2rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--stone-400);
    }

    .breadcrumb ol {
      display: inline-flex;
      align-items: center;
      list-style: none;
    }

    .breadcrumb li {
      display: inline-flex;
      align-items: center;
    }

    .breadcrumb a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    .breadcrumb a:hover {
      color: var(--primary);
    }

    .breadcrumb .current {
      color: var(--stone-900);
      margin-left: 0.5rem;
    }

    .breadcrumb iconify-icon {
      margin: 0 0.5rem;
      font-size: 0.75rem;
      color: var(--stone-300);
    }

    /* Product Grid */
    .product-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    @media (min-width: 1024px) {
      .product-layout {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 4rem;
      }
    }

    /* Gallery */
    .gallery-column {
      grid-column: span 1 / span 1;
      display: flex;
      flex-direction: column-reverse;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .gallery-column {
        flex-direction: row;
      }
    }

    @media (min-width: 1024px) {
      .gallery-column {
        grid-column: span 7 / span 7;
      }
    }

    .thumbnails {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      width: 100%;
    }

    @media (min-width: 768px) {
      .thumbnails {
        flex-direction: column;
        width: 6rem;
        flex-shrink: 0;
        overflow-y: auto;
      }
    }

    .thumbnails::-webkit-scrollbar {
      display: none;
    }

    .thumb-btn {
      width: 5rem;
      aspect-ratio: 3/4;
      border-radius: 0.75rem;
      overflow: hidden;
      border: 1px solid var(--stone-200);
      background: none;
      cursor: pointer;
      flex-shrink: 0;
      padding: 0;
      transition: var(--transition);
    }

    @media (min-width: 768px) {
      .thumb-btn {
        width: 100%;
      }
    }

    .thumb-btn.active {
      border: 2px solid var(--primary);
      outline: 2px solid transparent;
      outline-offset: 2px;
    }

    .thumb-btn:hover {
      border-color: var(--primary);
    }

    .thumb-btn img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .main-image {
      flex: 1;
      background-color: var(--stone-50);
      border-radius: 2rem;
      overflow: hidden;
      aspect-ratio: 3/4;
    }

    .main-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Info Column */
    .info-column {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .info-column {
        grid-column: span 5 / span 5;
      }
    }

    .rating-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .stars {
      display: flex;
      color: var(--amber-400);
    }

    .review-count {
      font-size: 0.875rem;
      color: var(--stone-400);
      font-weight: 500;
    }

    .product-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.025em;
      line-height: 1.1;
    }

    @media (min-width: 768px) {
      .product-title {
        font-size: 3rem;
      }
    }

    .product-price {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
    }

    .product-description {
      color: var(--stone-500);
      line-height: 1.625;
      max-width: 28rem;
    }

    .options-section {
      padding-top: 1.5rem;
      border-top: 1px solid var(--stone-100);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .option-label-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .option-label {
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .option-value {
      font-size: 0.875rem;
      color: var(--stone-400);
      font-weight: 500;
    }

    .color-swatches {
      display: flex;
      gap: 0.75rem;
    }

    .color-btn {
      width: 2rem;
      height: 2rem;
      border-radius: 9999px;
      border: 1px solid var(--stone-200);
      cursor: pointer;
      transition: var(--transition);
    }

    .color-btn.active {
      box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary);
    }

    .size-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0.75rem;
    }

    .size-btn {
      padding: 0.75rem 0;
      border: 1px solid var(--stone-200);
      border-radius: 0.75rem;
      font-weight: 500;
      background: none;
      cursor: pointer;
      transition: var(--transition);
    }

    .size-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .size-btn.active {
      border: 2px solid var(--primary);
      background-color: rgba(0, 102, 121, 0.05);
      color: var(--primary);
      font-weight: 600;
    }

    .quantity-control {
      display: flex;
      align-items: center;
      border: 1px solid var(--stone-200);
      border-radius: 0.75rem;
      overflow: hidden;
      width: fit-content;
    }

    .qty-btn {
      padding: 0.75rem 1rem;
      color: var(--stone-400);
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      transition: var(--transition);
    }

    .qty-btn:hover {
      color: var(--primary);
      background-color: var(--stone-50);
    }

    .qty-value {
      padding: 0 1rem;
      font-weight: 600;
    }

    .add-btn {
      width: 100%;
      padding: 1.25rem 0;
      background-color: var(--primary);
      color: var(--white);
      border-radius: 9999px;
      font-weight: 600;
      font-size: 1.125rem;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      transition: var(--transition);
      box-shadow: var(--shadow-lg);
    }

    .add-btn:hover {
      background-color: var(--stone-900);
    }

    .service-info {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding-top: 1rem;
      font-size: 0.875rem;
      color: var(--stone-500);
      font-weight: 500;
    }

    .service-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .service-item iconify-icon {
      color: var(--primary);
      font-size: 1.125rem;
    }

    /* Tabs */
    .tabs-wrapper {
      margin-top: 6rem;
    }

    .tabs-nav {
      border-bottom: 1px solid var(--stone-100);
      display: flex;
      gap: 2rem;
      overflow-x: auto;
    }

    @media (min-width: 768px) {
      .tabs-nav {
        gap: 3rem;
      }
    }

    .tabs-nav::-webkit-scrollbar {
      display: none;
    }

    .tab-btn {
      padding-bottom: 1rem;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      color: var(--stone-400);
      font-weight: 500;
      letter-spacing: 0.025em;
      white-space: nowrap;
      cursor: pointer;
      transition: var(--transition);
    }

    .tab-btn:hover {
      color: var(--stone-600);
    }

    .tab-btn.active {
      border-bottom-color: var(--primary);
      color: var(--stone-900);
      font-weight: 600;
    }

    .tab-content {
      padding: 3rem 0;
      max-width: 48rem;
    }

    .tab-pane {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .pane-title {
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--stone-900);
    }

    .pane-text {
      color: var(--stone-500);
      line-height: 1.625;
      font-size: 1.125rem;
    }

    .feature-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      padding-top: 1rem;
      list-style: none;
    }

    @media (min-width: 768px) {
      .feature-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--stone-600);
    }

    .feature-item iconify-icon {
      color: var(--primary);
    }

    .review-card {
      margin-top: 3rem;
      background-color: var(--stone-50);
      border-radius: 1.5rem;
      padding: 2rem;
      border: 1px solid var(--stone-100);
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .avatar {
      width: 3rem;
      height: 3rem;
      border-radius: 9999px;
      background-color: rgba(127, 178, 188, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-weight: 700;
    }

    .review-author-info p {
      font-weight: 600;
      color: var(--stone-900);
    }

    .review-stars {
      font-size: 0.75rem;
      color: var(--amber-400);
      display: flex;
    }

    .review-text {
      color: var(--stone-600);
      font-style: italic;
      line-height: 1.625;
    }

    /* Related Products */
    .related-section {
      margin-top: 6rem;
      padding-top: 6rem;
      border-top: 1px solid var(--stone-100);
    }

    .related-title {
      font-size: 1.875rem;
      font-weight: 500;
      color: var(--stone-900);
      margin-bottom: 3rem;
    }

    .related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 640px) {
      .related-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 768px) {
      .related-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .product-card {
      cursor: pointer;
    }

    .card-image-wrap {
      aspect-ratio: 3/4;
      overflow: hidden;
      border-radius: 1rem;
      background-color: #f5f5f5;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .card-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover img {
      transform: scale(1.05);
    }

    .card-title {
      font-weight: 500;
      color: var(--stone-900);
      transition: var(--transition);
    }

    .product-card:hover .card-title {
      color: var(--primary);
    }

    .card-price {
      font-weight: 600;
      color: var(--primary);
      margin-top: 0.25rem;
    }