
.bg-custom-gold-100 {
  background-color: #fcd17b;
}

.text-custom-brown-200 {
  color: #29190a;
}

/* Layout & Spacing */
.p-4 {
  padding: 1rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.-mx-2 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Typography */
.text-white {
  color: rgb(255 255 255);
}

.text-black {
  color: rgb(0 0 0);
}

.text-center {
  text-align: center;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-red-500 {
  color: rgb(239 68 68);
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.25;
}

.leading-snug {
  line-height: 1.375;
}

/* Display & Layout */
.flex {
  display: flex;
}

.grid {
  display: grid;
}

.block {
  display: block;
}

.w-full {
  width: 100%;
}

.w-5-6 {
  width: 83.333333%;
}

.w-3-4 {
  width: 75%;
}

.w-2-3 {
  width: 66.666667%;
}

.w-1-2 {
  width: 50%;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-110 {
  max-width: 110px;
}

.max-w-130 {
  max-width: 130px;
}

.max-w-150 {
  max-width: 150px;
}

.h-auto {
  height: auto;
}

/* Grid System */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

/* Flexbox */
.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

/* Background & Borders */
.bg-white {
  background-color: rgb(255 255 255);
}

.border {
  border-width: 1px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Interactive States */
.appearance-none {
  appearance: none;
}

.focus-outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.hover-box-shadow-inset:hover {
  box-shadow: inset 0 3px 9px rgba(41,25,10,0.50);
}

/* Transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Transforms */
.group:hover .group-hover-scale-98 {
  transform: scale(0.98);
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .sm-max-w-130 {
    max-width: 130px;
  }
  
  .sm-w-5-6 {
    width: 83.333333%;
  }
  
  .sm-p-8 {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .md-w-3-4 {
    width: 75%;
  }
  
  .md-w-1-2 {
    width: 50%;
  }
  
  .md-mb-0 {
    margin-bottom: 0px;
  }
  
  .md-mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .md-max-w-150 {
    max-width: 150px;
  }
}

@media (min-width: 1024px) {
  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg-w-2-3 {
    width: 66.666667%;
  }
}

@media (min-width: 1280px) {
  .xl-w-1-2 {
    width: 50%;
  }
}