@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');


* {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
    .table-row {
        padding: 1rem;
        margin-bottom: 1rem;
        background: #fff;
        border-radius: 0.5rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .quantity-btn {
        font-size: 1.25rem;
        line-height: 1.5;
        touch-action: manipulation;
    }

    .quantity-input {
        width: 4rem;
        font-size: 1.125rem;
    }

    .remove-item svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}