
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
  --primary-color: #54001B; /* Bootstrap Blue, for example */
  --secondary-color: #F4D793;
  --secondary-color-light: rgba(244, 215, 147, 0.587);
}
*{
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}

.gold-bar{
    background: #AE8625;
    background: linear-gradient(90deg, rgba(174, 134, 37, 1) 0%, rgba(247, 239, 138, 1) 36%, rgba(210, 172, 71, 1) 68%, rgba(237, 201, 103, 1) 100%);
}

.brand_name , .text-primary{
    color: var(--primary-color);
}

input::placeholder {
  color: var(--primary-color); /* Replace with your desired color */
  opacity: 1;     /* Ensure full visibility */
}
.search_input::placeholder{
    color: var(--primary-color);
}
.search_input{
    color: var(--primary-color);
    border:none;
}

.border-primary{
    border:1px solid var(--primary-color);
}
.btn-primary{
    background-color: var(--primary-color);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: white;
    border-radius: 25px;
    width: 200px;
}

.scrollable {
  overflow: auto;
  white-space: nowrap;
  cursor: grab;
  scrollbar-width: none;
}
.scrollable::-webkit-scrollbar {
  display: none;
}
.scrollable.dragging {
  cursor: grabbing;
  user-select: none;
}

.scrollable{
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  pointer-events: auto; /* Optional: keeps images clickable */
}

.title_circle{
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.title_line{
    display: block;
    width: 100px;
    height: 2px;
    border-radius: 50px;
    background-color: var(--secondary-color);
}
.bg-light-secondary{
    background-color: var(--secondary-color-light);
}
.bg-light-primary{
    background-color: var(--primay-light-color);
}
.values_card{
    width: 100px;
    height: 100px;
    background: var(--secondary-color-light);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 50px;
    color: var(--primary-color);
}

.values_card_text{
    font-size: 12px;
    text-align: center;
    line-height: 14px;
}

.sticky-header{
    position: sticky;
    top: 0px;
    z-index: 8888;
}

.sticky-footer{
    position: sticky;
    bottom:0;
    z-index: 8888;
}

.side-bar{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    top: 0;
    backdrop-filter: brightness(0.5);
}

.side-bar-content{
    background-color: white;
    height: 100vh;
    overflow: scroll;
}

.sub-title{
    padding: 10px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    margin: 10px 0;
}

.product-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px; /* adjust as needed */
}

@media only screen and (max-width: 600px) {
  .cart-product-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px; /* adjust as needed */
   }
}


.cartBadge{
    background: var(--primary-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    color: white;
    right: -5px;
}

.suggestion-item{
    padding: 5px;
    cursor: pointer;
    color: var(--primary-color);
}

.suggestion-item:not(:last-child){
    border-bottom: 0.3px solid lightgray;
}
