@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 0 0% 3.9%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 3.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 3.9%;
    --primary: #112A46;
    --primary-foreground: 0 0% 98%;
    --secondary: 0 0% 96.1%;
    --secondary-foreground: 0 0% 9%;
    --muted: 0 0% 96.1%;
    --muted-foreground: 0 0% 45.1%;
    --accent: 0 0% 96.1%;
    --accent-foreground: 0 0% 9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 89.8%;
    --input: 0 0% 89.8%;
    --ring: 0 0% 3.9%;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
  }
  .dark {
    --background: 0 0% 3.9%;
    --foreground: 0 0% 98%;
    --card: 0 0% 3.9%;
    --card-foreground: 0 0% 98%;
    --popover: 0 0% 3.9%;
    --popover-foreground: 0 0% 98%;
    --primary: 0 0% 98%;
    --primary-foreground: 0 0% 9%;
    --secondary: 0 0% 14.9%;
    --secondary-foreground: 0 0% 98%;
    --muted: 0 0% 14.9%;
    --muted-foreground: 0 0% 63.9%;
    --accent: 0 0% 14.9%;
    --accent-foreground: 0 0% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 14.9%;
    --input: 0 0% 14.9%;
    --ring: 0 0% 83.1%;
    --chart-1: 220 70% 50%;
    --chart-2: 160 60% 45%;
    --chart-3: 30 80% 55%;
    --chart-4: 280 65% 60%;
    --chart-5: 340 75% 55%;
  }
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }
  body {
    @apply bg-background text-foreground;
  }
}
/* font start */

@font-face {
  font-family: 'GlacialIndifference';
  src: url('/fonts/GlacialIndifference-Regular.otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'palr45w';
  src: url('/fonts/palr45w.ttf') format('truetype');
  font-style: normal;
}


/* font end */
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  -webkit-line-clamp: 1 !important;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2 !important;
}

body {
  @apply font-inter font-normal;
}
.page_content ul {
    list-style: disc;
    margin-left: 50px;
    padding-top: 20px;
}
table{
  width: 100% !important;
}
.page_content img {
    height: auto !important;
}
.page_content ul li {
    margin-bottom: 10px;
}
@media (max-width: 768px) {
  .page_content ul {
    margin-left: 20px;
  }
}input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
span.swiper-pagination-bullet {
    background: #14674D80;
}

.product_details .swiper-wrapper {
    padding-bottom: 0px;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -2px;
}
.video_slider .swiper-wrapper {
    padding-bottom: 20px;
}
.scrollbar-hidden {
  -ms-overflow-style: none; /* Hide scrollbar in IE and Edge */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Webkit browsers like Chrome and Safari */
}

.home_slider  .swiper-wrapper {
    padding-bottom: 0;
}
/* responsive  */
@media (min-width: 774px) {
  .md1\:grid-cols-3 {
    @apply grid grid-cols-3;
  }
}
.font_Glacial{
  font-family: 'GlacialIndifference' ;
}
/* .font_palr45w{
  font-family: 'palr45w' ;
} */
.product-table {
  width: 100%;
  border-collapse: collapse;
}
.product-table table {
  margin-top: 10px;
}
.product-table h1 {
  @apply text-lg font-bold mb-1 text-gray-900 uppercase  ;
}
.product-table h2 {
  @apply text-lg font-bold mb-1 text-gray-900 font_Glacial ;
}
.product-table > p  {
  @apply text-sm text-gray-800 mb-1 leading-relaxed font_Glacial ;
}
.product-table td {
  @apply text-sm text-black px-3 py-2
}

/* Odd rows */
.product-table tr:nth-child(odd) {
  background-color: #fbf9fa;
}

/* Even rows */
.product-table tr:nth-child(even) {
  background-color: #ffffff;
}


/* Optional: hover effect */
.product-table tr:hover {
  background-color: #fee2e2;
}
.store-list {
    max-height: 600px;
    overflow-y: auto;
}
.map-container {
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}
.store-item.active {
    border-left: 4px solid #ef4444;
    background-color: #fef2f2;
}
.store-item {
    cursor: pointer;
    transition: all 0.3s;
}