* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background-color: rgb(243, 239, 231);
}

/* Tailwind utility classes for custom components */
.badge-text {
  background-color: rgba(243, 239, 231, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  width: max-content;
  display: inline-flex;
  align-items: center;
}

/* Product Card Title Hover Effect */
.product-card .product-title {
  cursor: pointer;
  transition: color 0.2s ease;
}

.product-card .product-title:hover {
  color: #3b82f6;
  text-decoration: underline;
}

/* Search Modal Styles */
#modal-search .modal-content {
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#modal-search .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

#modal-search .modal-body {
  padding-top: 0;
}

#search-input {
  transition: all 0.2s ease-in-out;
  padding: 0.5rem 0.8rem;
}

#search-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

#search-placeholder {
  margin: 0.5rem 0.8rem;
}

#search-results {
  scrollbar-width: thin;
  scrollbar-color: #d1d5db #f9fafb;
}

#search-results::-webkit-scrollbar {
  width: 6px;
}

#search-results::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 3px;
}

#search-results::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

#search-results::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.search-result-item {
  transition: background-color 0.15s ease-in-out;
}

.search-result-item:hover {
  background-color: #f9fafb;
}

.search-result-item:last-child {
  border-bottom: none !important;
}

/* Custom styles for Tailwind compatibility */
.featured-furniture {
  background-color: rgba(243, 239, 231);
  padding: 5rem 13rem;
}

@media (max-width: 1200px) {
  .featured-furniture {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .featured-furniture {
    padding: 2rem 1rem;
  }
}

/* Ensure proper spacing for Tailwind grid */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* Responsive grid classes */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:flex {
    display: flex;
  }
  
  .md\:items-center {
    align-items: center;
  }
  
  .md\:space-x-8 {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:flex-row {
    flex-direction: row;
  }
  
  .lg\:w-1\/2 {
    width: 50%;
  }
  
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Component-specific Tailwind utilities */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.flex {
  display: flex;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.left-0 {
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.w-full {
  width: 100%;
}

.w-16 {
  width: 4rem;
}

.w-48 {
  width: 12rem;
}

.w-6 {
  width: 1.5rem;
}

.w-4 {
  width: 1rem;
}

.h-full {
  height: 100%;
}

.h-16 {
  height: 4rem;
}

.h-6 {
  height: 1.5rem;
}

.h-5 {
  height: 1.25rem;
}

.h-4 {
  height: 1rem;
}

.h-64 {
  height: 16rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-md {
  max-width: 28rem;
}

.min-h-screen {
  min-height: 100vh;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.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;
}

.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;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-gray-200 {
  border-color: rgb(229 231 235);
}

.border-gray-300 {
  border-color: rgb(209 213 219);
}

.border-gray-800 {
  border-color: rgb(31 41 55);
}

.bg-white {
  background-color: rgb(255 255 255);
}

.bg-black {
  background-color: rgb(0 0 0);
}

.bg-gray-50 {
  background-color: rgb(249 250 251);
}

.bg-gray-100 {
  background-color: rgb(243 244 246);
}

.bg-gray-600 {
  background-color: rgb(75 85 99);
}

.bg-gray-700 {
  background-color: rgb(55 65 81);
}

.bg-gray-800 {
  background-color: rgb(31 41 55);
}

.bg-red-500 {
  background-color: rgb(239 68 68);
}

.bg-opacity-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-white {
  color: rgb(255 255 255);
}

.text-gray-500 {
  color: rgb(107 114 128);
}

.text-gray-600 {
  color: rgb(75 85 99);
}

.text-gray-700 {
  color: rgb(55 65 81);
}

.text-gray-800 {
  color: rgb(31 41 55);
}

.text-gray-900 {
  color: rgb(17 24 39);
}

.text-black {
  color: rgb(0 0 0);
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-loose {
  line-height: 2;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-normal {
  letter-spacing: 0em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

.no-underline {
  text-decoration: none;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subpixel-antialiased {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.italic {
  font-style: italic;
}

.not-italic {
  font-style: normal;
}

.ordinal {
  font-variant-numeric: ordinal;
}

.slashed-zero {
  font-variant-numeric: slashed-zero;
}

.lining-nums {
  font-variant-numeric: lining-nums;
}

.oldstyle-nums {
  font-variant-numeric: oldstyle-nums;
}

.proportional-nums {
  font-variant-numeric: proportional-nums;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

.diagonal-fractions {
  font-variant-numeric: diagonal-fractions;
}

.stacked-fractions {
  font-variant-numeric: stacked-fractions;
}

.list-none {
  list-style-type: none;
}

.list-disc {
  list-style-type: disc;
}

.list-decimal {
  list-style-type: decimal;
}

.list-inside {
  list-style-position: inside;
}

.list-outside {
  list-style-position: outside;
}

.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.align-text-top {
  vertical-align: text-top;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

.align-sub {
  vertical-align: sub;
}

.align-super {
  vertical-align: super;
}

.whitespace-normal {
  white-space: normal;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.whitespace-pre {
  white-space: pre;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

.whitespace-break-spaces {
  white-space: break-spaces;
}

.break-normal {
  overflow-wrap: normal;
  word-break: normal;
}

.break-words {
  overflow-wrap: break-word;
}

.break-all {
  word-break: break-all;
}

.break-keep {
  word-break: keep-all;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-ellipsis {
  text-overflow: ellipsis;
}

.text-clip {
  text-overflow: clip;
}

.indent-0 {
  text-indent: 0px;
}

.indent-px {
  text-indent: 1px;
}

.indent-0\.5 {
  text-indent: 0.125rem;
}

.indent-1 {
  text-indent: 0.25rem;
}

.indent-1\.5 {
  text-indent: 0.375rem;
}

.indent-2 {
  text-indent: 0.5rem;
}

.indent-2\.5 {
  text-indent: 0.625rem;
}

.indent-3 {
  text-indent: 0.75rem;
}

.indent-3\.5 {
  text-indent: 0.875rem;
}

.indent-4 {
  text-indent: 1rem;
}

.indent-5 {
  text-indent: 1.25rem;
}

.indent-6 {
  text-indent: 1.5rem;
}

.indent-7 {
  text-indent: 1.75rem;
}

.indent-8 {
  text-indent: 2rem;
}

.indent-9 {
  text-indent: 2.25rem;
}

.indent-10 {
  text-indent: 2.5rem;
}

.indent-11 {
  text-indent: 2.75rem;
}

.indent-12 {
  text-indent: 3rem;
}

.indent-14 {
  text-indent: 3.5rem;
}

.indent-16 {
  text-indent: 4rem;
}

.indent-20 {
  text-indent: 5rem;
}

.indent-24 {
  text-indent: 6rem;
}

.indent-28 {
  text-indent: 7rem;
}

.indent-32 {
  text-indent: 8rem;
}

.indent-36 {
  text-indent: 9rem;
}

.indent-40 {
  text-indent: 10rem;
}

.indent-44 {
  text-indent: 11rem;
}

.indent-48 {
  text-indent: 12rem;
}

.indent-52 {
  text-indent: 13rem;
}

.indent-56 {
  text-indent: 14rem;
}

.indent-60 {
  text-indent: 15rem;
}

.indent-64 {
  text-indent: 16rem;
}

.indent-72 {
  text-indent: 18rem;
}

.indent-80 {
  text-indent: 20rem;
}

.indent-96 {
  text-indent: 24rem;
}

/* Custom component animations */
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.translate-x-full {
  transform: translateX(100%);
}

.translate-x-0 {
  transform: translateX(0);
}

.transform {
  transform: translateX(0);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.left-1\/2 {
  left: 50%;
}

/* Cart Item New Design Styles */
.cart-item-new {
  background-color: #F8F7F2; /* Light beige background */
  border-bottom: 1px solid #e5e5e5;
  transition: background-color 0.2s ease;
}

.cart-item-new:hover {
  background-color: #f5f4f2;
}

.material-label {
  display: flex;
  align-items: center;
  min-width: 60px;
}

.material-label span {
  color: #6b7280;
  font-weight: 500;
  font-size: 0.875rem;
}

.item-info {
  flex-grow: 1;
}

.item-name {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.unit-price {
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1.2px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1px;
  width: fit-content;
}

.qty-btn {
  background: none;
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background-color: #e5e7eb;
  color: #111827;
}

.qty-display {
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
  min-width: 24px;
  text-align: center;
  padding: 0 8px;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-content: space-between;
}

.remove-btn {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 0.875rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
  padding: 0;
}

.remove-btn:hover {
  color: #dc2626;
}

.total-price {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  text-align: right;
}

/* Account dropdown positioning fix */
.dropdown {
  position: relative;
}
#account-dropdown.btn {
  border: 1.2px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#account-menu {
  left: 50% !important;
  transform: translateX(-50%) !important;
  position: absolute !important;
  top: 100% !important;
  margin-top: 0.5rem !important;
  z-index: 1000;
}

/* Login and Signup Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-dialog {
  max-width: 500px;
  width: 40rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.modal-content {
  background-color: #f5f3ed;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.modal-header {
  background-color: #f5f3ed;
  padding: 1.5rem 1.5rem 0rem;
  border-bottom: none;
  border-radius: 15px 15px 0 0;
}

.modal-title {
  font-size: 1.125rem;
	font-weight: 600;
	color: #1a1a1a;
}

.modal-body {
  background-color: #f5f3ed;
  padding: 1.5rem;
  border-radius: 0 0 15px 15px;
}

.btn-close {
  background: none;
  border: none !important;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close:hover {
  color: #333;
}

/* Form Styles */
.form-label {
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.95rem;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.1);
  outline: none;
}

.input-group .btn {
  border: 1px solid #d9d9d9;
  border-left: none;
  background-color: #fff;
  color: #666;
}

.input-group .btn:hover {
  background-color: #f8f9fa;
  color: #333;
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-label {
  color: #555;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: white;
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #333;
  border-color: #333;
}

.btn-primary:disabled {
  background-color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}

/* Preline Strong Password Styles */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-y-0 {
  top: 0;
  bottom: 0;
}

.end-0 {
  right: 0;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.pe-3 {
  padding-right: 0.75rem;
}

.gap-x-2 {
  gap: 0.5rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.bg-gray-200 {
  background-color: rgb(229 231 235);
}

.rounded-full {
  border-radius: 9999px;
}

.h-2 {
  height: 0.5rem;
}

.bg-gray-400 {
  background-color: rgb(156 163 175);
}

.bg-red-500 {
  background-color: rgb(239 68 68);
}

.bg-orange-500 {
  background-color: rgb(249 115 22);
}

.bg-yellow-500 {
  background-color: rgb(234 179 8);
}

.bg-blue-500 {
  background-color: rgb(59 130 246);
}

.bg-green-500 {
  background-color: rgb(34 197 94);
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-gray-500 {
  color: rgb(107 114 128);
}

.text-red-500 {
  color: rgb(239 68 68);
}

.text-orange-500 {
  color: rgb(249 115 22);
}

.text-yellow-500 {
  color: rgb(234 179 8);
}

.text-blue-500 {
  color: rgb(59 130 246);
}

.text-green-500 {
  color: rgb(34 197 94);
}

.text-green-600 {
  color: rgb(22 163 74);
}

.bg-white {
  background-color: rgb(255 255 255);
}

.border {
  border-width: 1px;
}

.border-gray-200 {
  border-color: rgb(229 231 235);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.p-4 {
  padding: 1rem;
}

.font-semibold {
  font-weight: 600;
}

.text-gray-800 {
  color: rgb(31 41 55);
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.25rem;
}

.text-gray-600 {
  color: rgb(75 85 99);
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.opacity-0 {
  opacity: 0;
}

.mt-2 {
  margin-top: 0.5rem;
}

.invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.text-primary {
  color: #1a1a1a !important;
  text-decoration: none;
  font-weight: 500;
}

.text-primary:hover {
  text-decoration: underline;
}

/* Confirm Password Fold Animation */
#confirm-password-group {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: perspective(1000px) rotateX(-90deg);
  transform-origin: top left;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

#confirm-password-group.show {
  max-height: 200px;
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg);
}

/* Form Layout Improvements */
.form-group {
  margin-bottom: 1rem;
}

.form-group.row {
  margin-bottom: 1rem;
}

.form-group.row .col-md-6 {
  padding: 0 0.5rem;
}

.form-group.row .col-md-6:first-child {
  padding-left: 0;
}

.form-group.row .col-md-6:last-child {
  padding-right: 0;
}

/* Checkbox Styling */
.form-check {
  margin-bottom: 1rem;
}

.form-check-input {
  margin-top: 0.1rem;
}

.form-check-label {
  font-size: 0.85rem;
  color: #666;
}

/* Focus states */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.focus\:ring-gray-500:focus {
  box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.5);
}

.focus\:ring-inset:focus {
  box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.focus\:border-transparent:focus {
  border-color: transparent;
}

/* Hover states */
.hover\:bg-gray-50:hover {
  background-color: rgb(249 250 251);
}

.hover\:bg-gray-100:hover {
  background-color: rgb(243 244 246);
}

.hover\:bg-gray-200:hover {
  background-color: rgb(229 231 235);
}

.hover\:bg-gray-700:hover {
  background-color: rgb(55 65 81);
}

.hover\:bg-gray-800:hover {
  background-color: rgb(31 41 55);
}

.hover\:text-gray-600:hover {
  color: rgb(75 85 99);
}

.hover\:text-gray-900:hover {
  color: rgb(17 24 39);
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
  
  .md\:flex {
    display: flex;
  }
  
  .md\:items-center {
    align-items: center;
  }
  
  .md\:space-x-8 {
    gap: 2rem;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Additional Tailwind utilities for product cards */
.object-cover {
  object-fit: cover;
}

.bottom-4 {
  bottom: 1rem;
}

.right-4 {
  right: 1rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.md\:col-span-2 {
  grid-column: span 2 / span 2;
}

/* Product card specific styles */
.product-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background-color: white;
  border: 1px solid #e0e0e0;
  position: relative;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card .stock-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.8rem;
  font-weight: 500;
  width: fit-content;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.stock-badge.low {
  background-color: #fff3cd;
  color: #856404;
}

.stock-badge.in-stock {
  background-color: #d4edda;
  color: #155724;
}

.product-card .rating {
  font-size: 14px;
  color: #f0b26b;
  height: 1.25rem;
  margin-top: 1rem;
}

/* Heart icon toggle styles */
.heart-toggle-icon {
  background-color: #fff;
  border: 0.5px solid #95a5a6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 0.35rem;
  font-size: 1.5rem;
  transition: all 0.2s ease-in-out;
}

.heart-toggle-icon:not(.active) {
  color: #95a5a6;
}

.heart-toggle-icon:not(.active):hover {
  color: #e74c3c; 
  border: 0.5px solid #e74c3c;
  transform: scale(1.1);
}

.heart-toggle-icon.active {
  color: #e74c3c; 
  border: 0.5px solid #e74c3c;
}

.heart-toggle-icon.active:hover {
  color: #c0392b; 
  transform: scale(1.1);
  border: 0.5px solid #e74c3c;
}

.product-card .product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.product-card .product-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.product-card .price {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.25rem;
}

button.btn-quick-view {
  background-color: #f3efe7;
  color: #555;
  font-size: 0.875rem;
  border-radius: 6px;
  flex: 1;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  width: 100px;
}

button.btn-quick-view:hover {
  background: rgba(243, 239, 231, 0.75);
}

button.btn-add-to-cart {
  background-color: #2b3a2a;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 6px;
  flex: 1;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
}

button.btn-add-to-cart:hover {
  background-color: rgba(43, 58, 42, 0.75);
  color: #fff;
  cursor: pointer;
}



/* Button hover state class for animation */
.btn-add-to-cart-hover {
  background-color: rgba(43, 58, 42, 0.75) !important;
  color: #fff !important;
}

/* Sparkle animation */
@keyframes sparkleAnimation {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  20% {
    opacity: 1;
    transform: scale(1) rotate(72deg);
  }
  40% {
    opacity: 1;
    transform: scale(1.2) rotate(144deg);
  }
  60% {
    opacity: 1;
    transform: scale(1) rotate(216deg);
  }
  80% {
    opacity: 0.8;
    transform: scale(0.8) rotate(288deg);
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}

/* Cart offcanvas footer smooth transitions */
.offcanvas-footer {
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-footer.hidden {
  opacity: 0;
  visibility: hidden;
}

.offcanvas-footer:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

/** navbar **/
.navbar {
  background: rgba(243, 239, 231, 0.1);
  backdrop-filter: blur(25px);
  border-bottom: 0.75px solid rgba(54, 53, 50, 0.1);
}

.logo {
  font-family: 'Lexend Peta', sans-serif;
  font-weight: 300;
  letter-spacing: 0.25rem;
}

.navbar .w-full {
  padding: 0 13rem;
}

@media (max-width: 1200px) {
  .navbar .w-full {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .navbar .w-full {
    padding: 0 1rem;
  }
}
/* Base button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
  border-radius: 0.375rem;
}


.navbar button {
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease-out;
}
.navbar button:hover{
  background-color: #000;
  color: rgb(243, 239, 231);
}
.navbar-nav.center-links {
  flex-grow: 1;
  justify-content: center;
}
.navbar-nav.right-icons {
  margin-left: auto;
}
.feather-small {
  width: 17px;
  height: 17px;
}



/** offcanvas **/
.offcanvas {
  background-color: #F8F7F2 !important; /* Light beige matching image */
  border-left: 1px solid #e0e0d9;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Backdrop fade transition */
#offcanvas-wishlist, #offcanvas-cart {
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#offcanvas-cart-panel, #offcanvas-wishlist-panel {
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Let Tailwind handle the transition animations for efficiency */
  /* header styles */
.offcanvas-header {
  border-bottom: 1px solid #e0e0d9;
  margin-bottom: 0;
}
.offcanvas-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0;
}
.btn-close {
  background-color: transparent;
  border: 1px solid #22c55e; /* Green border */
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #333; /* Dark gray for X icon */
}
.btn-close:hover {
  background-color: #f0f9f0; /* Light green background on hover */
  transform: scale(1.05);
}
  /* body content */
#offcanvas-cart .bg-white, #offcanvas-wishlist .bg-white,
#offcanvas-cart.offcanvas, #offcanvas-wishlist.offcanvas {
  background-color: #F8F7F2 !important; /* Light beige background */
}
.offcanvas-body {
  padding: 0 1rem;
  padding-top: 0.75rem;
  min-height: 300px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
  /* empty state message */
.offcanvas-body p {
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.empty-state-text {
  color: #666;
  font-size: 0.95rem;
  margin: 1rem 0 0 0;
  opacity: 0.8;
  text-align: left;
}
#offcanvas-cart .empty-state-text {
  text-align: left;
}
#offcanvas-wishlist .empty-state-text {
  text-align: center;
}
  /* subtotal section */
.offcanvas-footer {
  padding: 1.5rem;
  border-top: 1px solid #e0e0d9;
  background-color: #f5f5f0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.offcanvas-footer .checkout-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #8C9B8C; /* Muted green-gray */
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 0.5rem;
}
.offcanvas-footer .checkout-btn:hover {
  background-color: #7a8b7a; /* Slightly darker on hover */
}
.offcanvas-footer .checkout-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}
.offcanvas-footer .checkout-btn:disabled:hover {
  background-color: #ccc;
}

/* Select All Button Styles */
.select-all-btn {
  background: transparent;
  border: 1px solid #8b7355;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: #8b7355;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  min-width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-all-btn:hover {
  background-color: #8b7355;
  color: white;
  transform: translateY(-1px);
}

.select-all-btn:active {
  transform: translateY(0);
}

/* Item Selection Checkbox Styles */
.item-selection {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  border: 2px solid #8b7355;
  border-radius: 4px;
  background-color: white;
  position: relative;
  transition: all 0.2s ease;
}

.item-checkbox:hover {
  border-color: #6b5b47;
  box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.1);
}

.item-checkbox:checked {
  background-color: #8b7355;
  border-color: #8b7355;
}

.item-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}

.offcanvas-footer .small-text {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}
  /* footer alignment */
.offcanvas-footer .subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #555;
}

/** products **/
.featured-furniture h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
}
.featured-furniture p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
  /* filters */
.filter-group {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
  background: none;
  border-radius: 25px;
  box-shadow: 0 0 2px rgba(0,0,0,0.05);
}
.filter-btn {
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #555555;
  background: none;
  border: 1px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.filter-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #1a1a1a;
}
.filter-btn.active {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  color: #1a1a1a;
}
.sort-group span {
  font-size: 0.9rem;
}
.sort-group select {
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: none;
  box-shadow: 0 0 3px rgba(221, 221, 221, 0.5);
}
.sort-group .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem; 
}
  /* product card */
.product-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background-color: white;
  border: 1px solid #e0e0e0;
  position: relative;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.product-card .product-header {
  position: relative;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.product-card .stock-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.8rem;
  font-weight: 500;
  width: fit-content;
  position: absolute;
}
.stock-badge.low {
  background-color: #fff3cd;
  color: #856404;
}
.stock-badge.in-stock {
  background-color: #d4edda;
  color: #155724;
}
.text-right .rating {
  font-size: 14px;
  color: #f0b26b;
  height: 1.25rem;
}
.lucide-small {
  height: 18px;
  width: 18px;
}
.product-card .card-img {
  background-position: bottom;
}
.card-img-overlay {
  height: 250px;
}
/* Duplicate CSS rules removed - using the ones at line 1697 */
.product-card .product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.product-card .product-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.product-card .price {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.25rem;
}
.product-card .buttons {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
button.btn-quick-view {
  background-color: #f3efe7;
  color: #555;
  font-size: 0.875rem;
  border-radius: 6px;
  flex: 1;
  transition: all 0.2s ease-in-out;
}
button.btn-quick-view:hover {
  background: rgba(243, 239, 231, 0.75);
}
button.btn-add-to-cart {
  background-color: #2b3a2a;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 6px;
  flex: 1;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
button.btn-add-to-cart:hover {
  background-color: rgba(43, 58, 42, 0.75);
  color: #fff;
  cursor: pointer;
}



/* Button hover state class for animation */
.btn-add-to-cart-hover {
  background-color: rgba(43, 58, 42, 0.75) !important;
  color: #fff !important;
}

/* Sparkle animation */
@keyframes sparkleAnimation {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  20% {
    opacity: 1;
    transform: scale(1) rotate(72deg);
  }
  40% {
    opacity: 1;
    transform: scale(1.2) rotate(144deg);
  }
  60% {
    opacity: 1;
    transform: scale(1) rotate(216deg);
  }
  80% {
    opacity: 0.8;
    transform: scale(0.8) rotate(288deg);
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}

 /* quick view modal */
#modal-quick-view .modal-content {
  background-color: #f5f3ed;
  border: none;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 0 5rem;
}
#modal-quick-view .modal-header {
  background-color: #f5f3ed;
  padding: 1.5rem 1.5rem 0.75rem;
  border-bottom: none;
  border-radius: 15px 15px 0 0;
}

#modal-quick-view .modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

#modal-quick-view .modal-body {
  background-color: #f5f3ed;
  padding: 1.5rem;
  border-radius: 0 0 15px 15px;
}

#modal-quick-view .rating {
  color: #ffc107;
  font-size: 0.875rem;
}

#modal-quick-view .btn-outline-secondary {
  border-color: #ddd;
  color: #555;
}

#modal-quick-view .btn-dark {
  background-color: #1a1a1a;
  color: white;
  border: none;
  font-weight: 500;
}

#modal-quick-view .btn-light {
  background-color: #f8f9fa;
  color: #555;
  border: 1px solid #e0e0e0;
}

#modal-quick-view .input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#modal-quick-view .input-group input {
  width: 60px;
  text-align: center;
}
  /* see more button */
#see-more-btn {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
#see-more-btn:hover {
  background-color: rgba(43, 58, 42, 0.75);
}



/** footer **/
.footer {
  background-color: #f3efe7;
  color: #1a1a1a;
  border-top: 1px solid #e0e0e0;
  padding: 5rem 13rem;
}

.footer .grid {
  display: grid;
}

@media (max-width: 1024px) {
  .footer .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer .grid {
    grid-template-columns: 1fr;
  }
}
.footer .w-full {
  width: 100%;
}

/* Column Styles */
.col {
  font-size: 0.875rem;
  line-height: 1.5;
}

.col h2,
.col h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.col h2 {
  font-size: 1.25rem;
}

.col h3 {
  font-size: 1rem;
}

.brand-desc,
.form-desc {
  color: #666666;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

/* Brand Section */
.brand-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-item {
  display: flex;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.info-item .icon {
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
}
.info-item .text-span {
  margin-left: 1.4rem;
}

.social-links {
  display: flex;
  gap: 0.2rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666666;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #1a1a1a;
}
.social-links .icon {
  width: 16px;
  height: 16px;
}

/* Contact Form */
.contact-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

#contact-form .flex-col input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
  outline: none;
}

#contact-form .flex-col input:focusussed {
  border-color: #1a1a1a;
}

.form-group {
  margin-bottom: 0.75rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1a1a1a;
}

.form-group textarea {
  flex: 1;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
  resize: vertical;
  outline: none;
}

.form-group textarea:focususs {
  border-color: #1a1a1a;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disclaimer {
  color: #666666;
  font-size: 0.75rem;
  line-height: 1rem;
  flex: 1;
}

.btn-send,
.btn-subscribe {
  padding: 0.5rem 1rem;
  background-color: #1a1a1a;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-send:hover,
.btn-subscribe:hover {
  background-color: rgba(43, 58, 42, 0.75);
}

.btn-send .icon {
  width: 16px;
  height: 16px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
  outline: none;
}

.newsletter-form input:focususs {
  border-color: #1a1a1a;
}

/* Customer Care */
.customer-care h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.customer-care ul {
  list-style: none;
  padding: 0;
}

.customer-care li {
  margin-bottom: 0.5rem;
}

.customer-care a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.customer-care a:hover {
  color: #1a1a1a;
}

/*Links Column */
.col-links ul {
  list-style: none;
  padding: 0;
}

.col-links li {
  margin-bottom: 0.5rem;
}

.col-links a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.col-links a:hover {
  color: #1a1a1a;
}

/* Divider */
.divider {
  border-top: 1px solid #e0e0e0;
  margin: 1.5rem 0;
}

/* Footer Bottom*/
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #666666;
}

.copyright {
  margin: 0;
}

.bottom-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.sustainability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sustainability .icon {
  width: 8px;
  height: 8px;
  fill: #28a745;
  color: #28a745;
}

.call-us {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.call-us:hover {
  color: #666;
}

.call-us .icon {
  width: 16px;
  height: 16px;
}

.modal-visible {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9999 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
}

/* ===== CHECKOUT STYLES ===== */

/* Checkout Progress Indicator */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

.checkout-progress-step {
  display: flex;
  align-items: center;
  position: relative;
}

.checkout-progress-step:not(:last-child)::after {
  content: '';
  width: 2rem;
  height: 1px;
  background-color: #d1d5db;
  margin: 0 1rem;
}

.checkout-progress-step.completed::after {
  background-color: #8b7355;
}

.checkout-progress-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #6b7280;
  transition: all 0.3s ease;
}

.checkout-progress-step.completed .checkout-progress-icon {
  background-color: #8b7355;
  color: white;
}

.checkout-progress-step.active .checkout-progress-icon {
  background-color: #8b7355;
  color: white;
}

.checkout-progress-label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.3s ease;
}

.checkout-progress-step.completed .checkout-progress-label,
.checkout-progress-step.active .checkout-progress-label {
  color: #8b7355;
}

/* Checkout Form Styles */
.checkout-form {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.checkout-form-section {
  margin-bottom: 2rem;
}

.checkout-form-section:last-child {
  margin-bottom: 0;
}

.checkout-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.checkout-form-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

/* Payment Method Cards */
.payment-method-card {
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method-card:hover {
  border-color: #8b7355;
  background-color: #f9fafb;
}

.payment-method-card.selected {
  border-color: #8b7355;
  background-color: #f3f4f6;
}

.payment-method-card input[type="radio"] {
  margin-right: 0.75rem;
}

.payment-method-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.payment-method-details {
  display: flex;
  align-items: center;
}

.payment-method-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  color: #6b7280;
}

.payment-method-name {
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
}

.payment-method-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.payment-method-badge {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #8b7355;
  color: white;
  border-radius: 0.25rem;
  margin-left: 0.5rem;
}

.payment-method-expired {
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Order Summary Sidebar */
.checkout-order-summary {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
}

.checkout-order-summary-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.checkout-order-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.checkout-order-item-image {
  width: 3rem;
  height: 3rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkout-order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.checkout-order-item-details {
  flex: 1;
  min-width: 0;
}

.checkout-order-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-order-item-meta {
  font-size: 0.875rem;
  color: #6b7280;
}

.checkout-order-item-price {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}

/* Pricing Breakdown */
.checkout-pricing-breakdown {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.checkout-pricing-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.checkout-pricing-row.total {
  font-size: 1.125rem;
  font-weight: 600;
  border-top: 1px solid #e5e7eb;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  color: #8b7355;
}

.checkout-pricing-label {
  color: #6b7280;
}

.checkout-pricing-value {
  color: #111827;
}

.checkout-pricing-value.free {
  color: #059669;
}

/* Free Shipping Banner */
.checkout-free-shipping {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #ecfdf5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
}

.checkout-free-shipping-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #059669;
  margin-right: 0.5rem;
}

.checkout-free-shipping-text {
  font-size: 0.875rem;
  color: #065f46;
  font-weight: 500;
}

/* Form Validation Styles */
.checkout-form .form-error {
  border-color: #dc2626;
}

.checkout-form .error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.checkout-form .form-success {
  border-color: #059669;
}

/* Responsive Design */
@media (max-width: 768px) {
  .checkout-progress {
    padding: 1rem 0;
  }
  
  .checkout-progress-step:not(:last-child)::after {
    width: 1rem;
    margin: 0 0.5rem;
  }
  
  .checkout-progress-label {
    display: none;
  }
  
  .checkout-form {
    padding: 1rem;
  }
  
  .checkout-order-summary {
    position: static;
    margin-top: 1rem;
  }
  
  .payment-method-card {
    padding: 0.75rem;
  }
  
  .payment-method-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Loading States */
.checkout-loading {
  opacity: 0.6;
  pointer-events: none;
}

.checkout-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin: -1rem 0 0 -1rem;
  border: 2px solid #e5e7eb;
  border-top-color: #8b7355;
  border-radius: 50%;
  animation: checkout-spin 1s linear infinite;
}

@keyframes checkout-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success/Error Messages */
.checkout-message {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 50;
  font-weight: 500;
}

.checkout-message.success {
  background-color: #10b981;
  color: white;
}

.checkout-message.error {
  background-color: #ef4444;
  color: white;
}

/* Animation for messages */
.checkout-message {
  animation: checkout-slide-in 0.3s ease-out;
}

@keyframes checkout-slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Custom Dropdown Arrow Styling */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

select.form-input:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b7355' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

select.form-input:disabled {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%9ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* Notification Styles */
.notification-item {
  transition: all 0.2s ease-in-out;
}

.notification-item:hover {
  background-color: #f9fafb;
}

.notification-item.unread {
  background-color: #eff6ff;
  border-left: 3px solid #3b82f6;
}

.notification-item.read {
  opacity: 0.8;
}

.notification-item .notification-icon {
  transition: color 0.2s ease-in-out;
}

.notification-item.unread .notification-icon {
  color: #3b82f6;
}

.notification-item.read .notification-icon {
  color: #9ca3af;
}

/* Notification offcanvas specific styles */
#offcanvas-notification .offcanvas-body {
  padding: 0;
}

#offcanvas-notification .notification-item:last-child {
  border-bottom: none;
}

#offcanvas-notification .empty-state-text {
  color: #6b7280;
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem 1rem;
}

/* Notification status badges */
.notification-status-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
}

.notification-status-badge.pending {
  background-color: #fef3c7;
  color: #92400e;
}

.notification-status-badge.sent {
  background-color: #dbeafe;
  color: #1e40af;
}

.notification-status-badge.read {
  background-color: #d1fae5;
  color: #065f46;
}

.notification-status-badge.failed {
  background-color: #fee2e2;
  color: #991b1b;
}