
.top-ui {
  width: 100%;
  max-width: 1200px;     /* ✅ looks good on large screens */
  margin: 0 auto;        /* ✅ center whole block */
  padding: 10px 16px;
  background: transparent;
}

/* DELIVERY ROW */
.delivery-row {
  display: flex;
  align-items: center;
  justify-content: center;   /* ✅ centers content */
  gap: 10px;
  cursor: pointer;
  margin-bottom: 12px;
  width: 100%;               /* ✅ full width */
}

.location-dot {
  width: 10px;
  height: 10px;
  background: #12CCA7;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(18,204,167,0.6);
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.deliver-label {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

.deliver-pin {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.change-link {
  margin-left: 6px;
  font-size: 13px;
  color: #12CCA7;
  font-weight: 500;
}

/* SEARCH BAR */
.search-bar-modern {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  transition: all 0.25s ease;
  width: 100%; 
}

.search-bar-modern:focus-within {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.search-bar-modern input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 15px;
  padding: 5px 8px;
}

.search-icon {
  font-size: 15px;
  color: #999;
}

.clear-btn {
  font-size: 14px;
  color: #aaa;
  cursor: pointer;
  display: none;
}

.search-bar-modern input:not(:placeholder-shown) ~ .clear-btn {
  display: block;
}

.epouch-footer-area {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.epouch-footer-area.loaded {
    opacity: 1;
}
/* =================== PRODUCT CARD =================== */
.card {
    width: 18rem;
    margin: 15px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Card hover lift */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
/* Image hover */
.card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.4s ease;
}
.card img:hover {
    transform: scale(1.03);
}
/* =================== BUTTONS =================== */
.card .btn {
    background-color: #12CCA7; /* brand color */
    color: #000000;             /* text color */
    border: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* Button hover */
.card .btn:hover {
    background-color: #12CCA7; /* slightly darker shade */
    transform: scale(1.05);
    color: #000000;
}
/* =================== MOBILE TOUCH DEVICES =================== */
@media (hover: none) and (pointer: coarse) {
    .card:hover {
        transform: none !important;
        box-shadow: 0 44px 100px rgba(0,0,0,0.1) !important;
    }
}
/* =================== BUTTON ANIMATION (ADD TO CART/WISHLIST) =================== */
.btn-animate {
    transform: scale(0.95);      
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
/* =================== PRODUCT PRICE =================== */
.card .fw-bold {
    font-size: 17px;
    color: #12CCA7; /* brand color */
}
/* =================== TOAST MESSAGES =================== */
.card {
  cursor: pointer;
}
.pagination {
  margin-top: 20px;
}
.pagination .page-item .page-link {
  color: #12CCA7;
  border: none;
  font-weight: 600;
  margin: 3px;
  border-radius: 10px;
  min-width: 40px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.pagination .page-item.active .page-link {
  background-color: #12CCA7;
  color: #000;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
.pagination .page-item .page-link:hover {
  background-color: #0fc39c;
  color: #000;
  transform: scale(1.05);
}
.pagination .page-item.disabled .page-link {
  opacity: 0.4;
  pointer-events: none;
}
.banner-container {
    width: 100%;
    margin: 0px;
    padding: 0px;
    
}
.banner-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 0px;
    padding: 0px;
}
.banner-fix {
    width: 100%;
    overflow: hidden;
    padding: 0px;
}
.banner-fix img {
    width: 120%;              /* zoom in */
    margin-top: -20px;         /* center crop */
    display: block;
    background:red;
    color: red;
    padding: 0px;
}
.location-icon svg {
  fill: #12CCA7; /* your brand color */
  filter: drop-shadow(0 0 6px rgba(18,204,167,0.6)); /* same glow */
}
