body {
  font-family: "Segoe UI", sans-serif;
}

/* Hero */
.hero-section {
  background: linear-gradient(to right, #fdf0f5, #eef6ff);
}

/* Categories */
.category-box {
  background: #fff;
  padding: 20px 10px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.hero-section {
    min-height: 520px;       /* increase height */
    display: flex;           /* center content vertically */
    align-items: center;
    position: relative;
    color: white;
    background-size: cover;
    background-position: center;
}

.category-box:hover {
  background: #EBA7AA;
  color: #fff;
}

@media (max-width: 768px) {
    .product-img {
        height: 150px;
    }
}

/* Product Cards */
.product-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product-card img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.product-img {
    height: 200px;          /* fixed height */
    object-fit: cover;      /* crop/scale image to fit */
    width: 100%;            /* full width of card */
}

.price {
  color: #FFA500;
  font-weight: bold;
}

.rounded-end {
  background: #EBA7AA;
  color: #FFFFFF;
  font-weight: bold;
}

.navbar-brand {
  color: #EBA7AA;
  font-weight: bold;
}

.hero-title {
    font-family: 'Lobster', cursive;
    font-weight: 700; /* bold */
}

.order-btn {
    color: #FFFFFF;           /* text color */
    border-color: #EBA7AA; 
    background-color: #EBA7AA;   /* border color */
}

.order-btn:hover {
    background-color: #ff6600; /* background on hover */
    color: white;              /* text color on hover */
    border-color: #ff6600;     /* border stays same */
}

.categories-scroll-wrapper {
    overflow-x: auto;      /* enable horizontal scroll */
    -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
    padding-bottom: 10px;  /* optional spacing below */
}

.category-box {
    min-width: 120px;      /* ensures each box has minimum width */
    flex: 0 0 auto;        /* prevent shrinking */
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ddd;
    white-space: nowrap;   /* prevent text wrap */
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.category-box:hover {
    transform: scale(1.05);
    background-color: #ff6600;
}


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/
