/* Base styles */
:root {
  --red-950: #541717;
  --red-900: #8a1e1e;
  --red-800: #b91c1c;
  --red-600: #eb1f1f;
  --red-500: #eb1f1f;
  --purple-600: #9333ea;
  --yellow-600: #ca8a04;
  --yellow-400: #facc15;
  --red-900: #7f1d1d;
  --red-700: #b91c1c;
  --orange-500: #f97316;
  --gray-950: #202731;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

.min-h-screen {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Spacing utilities */
.space-x-8 > * + * {
  margin-left: 2rem;
}

.space-x-2 > * + * {
  margin-left: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-6 {
  padding: 1.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Typography */
.text-center {
  text-align: center;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-bold {
  font-weight: 700;
}

.text-white {
  color: white;
}

.text-black {
  color: black;
}

.text-blue-600 {
  color: var(--blue-600);
}

.text-blue-800 {
  color: var(--blue-800);
}

.text-purple-600 {
  color: var(--purple-600);
}

.text-orange-500 {
  color: var(--orange-500);
}

.text-gray-500 {
  color: var(--gray-500);
}

.text-gray-600 {
  color: var(--gray-600);
}

.text-gray-700 {
  color: var(--gray-700);
}

.text-yellow-400 {
  color: var(--yellow-400);
}

.line-through {
  text-decoration: line-through;
}

/* Backgrounds */
.bg-white {
  background-color: white;
}

.bg-red-950 {
  background-color: var(--red-950);
}

.bg-red-500 {
  background-color: var(--red-500);
}

.bg-gradient-to-r {
  background: linear-gradient(to right, var(--from-color), var(--to-color));
}

.from-yellow-400 {
  --from-color: var(--yellow-400);
}

.to-yellow-600 {
  --to-color: var(--yellow-600);
}

.from-red-700 {
  --from-color: var(--red-700);
}

.to-red-900 {
  --to-color: var(--red-900);
}

/* Borders */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-l {
  border-left-width: 1px;
  border-left-style: solid;
}

.border-r {
  border-right-width: 1px;
  border-right-style: solid;
}

.border-gray-200 {
  border-color: var(--gray-200);
}

.border-gray-300 {
  border-color: var(--gray-300);
}

.border-blue-900 {
  border-color: var(--blue-900);
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Sizing */
.w-full {
  width: 100%;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-12 {
  width: 3rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-5xl {
  max-width: 64rem;
}

/* Interactive */
.hover\:bg-blue-600:hover {
  background-color: var(--blue-600);
}

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:w-2\/3 {
    width: 66.666667%;
  }

  .md\:text-sm {
    font-size: 0.875rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:h-16 {
    height: 4rem;
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }

  .md\:ml-2 {
    margin-left: 0.5rem;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:pl-8 {
    padding-left: 2rem;
  }

  .md\:space-x-8 > * + * {
    margin-left: 2rem;
  }

  .md\:block {
    display: block;
  }
}

.hidden {
  display: none;
}

/* Input styling */
input.text-center {
  text-align: center;
}

.thunder-register {
  position: relative;
    padding: 15px 40px 15px 60px;
    font-size: 18px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 0 0 var(--red-900);
}

.thunder-register:hover {
  cursor: pointer;
  background-color: #eb1f1f;
}
.thunder-register:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 0 var(--red-900);
}


.footer-item {
  display: flex;
  flex: 1 1 25%;
}

.bottom-navigation {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-color: #202731;
  background: linear-gradient(to bottom, var(--gray-950), var(--gray-700));
}

.increment-input button {
  width: 27px;
  border: none;
}

.increment-input input {
  border: none;
}

.spacer {
  height:100px
}

.pdp-block__main-information {
  display: flex;
}

.n-columns-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-weight: 700;
  width: 350px;
}

.n-columns-2 a {
  text-align: center;
}

.login {
  background: linear-gradient(to right, #144890, #0a264d);
}
.register {
  background: linear-gradient(to right, var(--red-700), var(--red-900));
}
.login,
.register {
  padding: 13px 10px;
}

.pdp-block__product-detail {
  width: 100%;
}

#container {
  margin-top: 50px;
  background-color: var(--red-950);
}
.lzd-logo-bar {
  background-color: var(--red-950);
}
.lzd-header-banner {
  background-image: url(https://placehold.co/180x40/EEE/31343C) !important;
  background-size: contain !important;
  background-repeat: no-repeat;
}
#root.pdp-block {
  background-color: white;
}
.pdp-block__delivery-seller {
  position: relative;
  width: 100%;
}
#module_seller_info {
  width: 330px;
}
#module_dmca {
  position: absolute;
  right: 16px;
  top: 16px;
}