@tailwind base;
@tailwind components;

@layer components {
  .btn-add-to-cart {
    @apply bg-[rgb(59,180,74)]
           mt-0 ml-[1px] mb-[1px]
           text-white
           rounded-[5px]
           py-[10px] px-[30px]
           w-full
           text-[28px] font-medium;
  }

  .size-button {
    @apply mr-[12px]
           border border-solid border-[1px]
           rounded-[5px]
           px-[11px] py-[6px];
  }
}

@tailwind utilities;
