/* Smart Reserve Custom Styles */

i[class*='icon-']{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

i.icon-bedrooms{
    background-image: url('../images/icon-bedroom.png');
}
i.icon-bathrooms{
    background-image: url('../images/icon-bathroom.png');
}
i.icon-parking{
    background-image: url('../images/icon-parking.png');
}
i.icon-floor{
    background-image: url('../images/icon-floor.png');
}
.veq-card-name, .veq-card-price, .veq-card-row{
    margin-bottom: 5px;
}
.veq-card-info {
  display: grid;
  grid-template-columns: max-content 1fr; 
  column-gap: 30px;
  row-gap: 12px;
}

.veq-card-row {
  display: contents;
}

.veq-card-row-left, 
.veq-card-row-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.veq-card-row-left i, 
.veq-card-row-right i {
  width: 50px;
  text-align: center;
}

.veq-product-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.6);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}
.veq-card-name,
.veq-card-price,
.veq-product-card strong{
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.veq-card-header h4 {
    font-size: 26px !important;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0;
}
.veq-card-header h4 span {
    font-size: 18px;
    text-transform: lowercase;
}

button.veq-add-to-cart {
    background: #14141b !important;
    border: none;
    color: #f3f3f3 !important;
    padding: 6px 20px;
    border-radius: 31px;
    font-size: 18px;
    margin: 0 auto;
    width: 250px;
}
button.veq-add-to-cart:hover {
    box-shadow: inset 3px 4px 5px #bcbcbc, inset -3px -4px 5px #fff, 0px 0px 3px #14141b !important;
    background: #f3f3f3 !important;
    color: #14141b !important;
}

.veq-products-cards-grid.elementor-grid {
  display: grid !important;
  gap: 45px; 
}

.veq-products-cards-grid.elementor-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .veq-products-cards-grid.elementor-grid-tablet-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .veq-products-cards-grid.elementor-grid-mobile-1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .veq-product-card {
    padding: 15px 10px;
  }
  .veq-card-info {
    column-gap: 10px;
    grid-template-columns: none;
  }
}

@media (max-width: 550px) {
  .veq-products-cards-grid.elementor-grid-mobile-1 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .veq-card-info{
    row-gap: 0px;
  }
}

/* Filters */
.veq-products-filters {
  display: inline-flex;
  align-items: center;
  background: #f2f2f2;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
}

.veq-products-filters::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  background-image: url(../images/icon-filters.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.veq-filter-select {
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 30px 5px 15px;
  appearance: none;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' 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 5px center;
  background-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
  width: auto;
  min-width: max-content;
  padding-right: 35px;
}

.veq-filter-select:not(:first-of-type) {
  border-left: 1px solid #ddd;
}

/* Sort */
.veq-products-sort {
  display: inline-flex;
  align-items: center;
  background: #f2f2f2;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-family: sans-serif;
}

.veq-products-sort::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-image: url(../images/icon-sort-desc.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image 0.5s ease-in;
}
.veq-products-sort.is-asc::before {
    background-image: url(../images/icon-sort-asc.png);
}

.veq-products-sort.is-desc::before {
    background-image: url(../images/icon-sort-desc.png);
}

#veq-sort-select {
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    appearance: none;
    padding-right: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' 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 5px center;
  background-size: 16px;
}

.veq-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 25px;
}


@media (max-width: 768px) {
  .veq-toolbar {
    flex-direction: column;
    gap: 15px;
  }
  
  .veq-products-filters, 
  .veq-products-sort {
    width: fit-content;
  }
}

/* ── Timer Bar ─────────────────────────────────────────────────── */
#vsr-timer-bar {
  position: fixed;
  left: 20px;
  background: #f3f3f3;
  border: solid 1px #14141b;
  color: #14141b !important;
  padding: 12px 20px;
  border-radius: 35px;
  font-size: 18px !important;
  z-index: 9999;
  box-shadow: none !important;
  text-decoration: none;
  bottom: 100px;
  /* animation: vsr-timer-fade-in 0.5s ease-out; */
}

@keyframes vsr-timer-fade-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vsr-timer-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.vsr-timer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

.vsr-timer-icon {
  font-size: 20px;
}

.vsr-timer-countdown {
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  min-width: 60px;
  text-align: center;
}

.vsr-timer-checkout-btn {
  background: #14141b;
  color: #f3f3f3 !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px !important;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.vsr-timer-checkout-btn:hover {
  background: #f3f3f3 !important;
  color: #14141b !important;
  box-shadow: inset 3px 4px 5px #bcbcbc, inset -3px -4px 5px #fff, 0px 0px 3px #14141b !important;
}

#vsr-timer-bar.vsr-timer-warning .vsr-timer-countdown {
  color: #b71c1c;
  animation: vsr-timer-pulse 1s ease-in-out infinite;
}

@keyframes vsr-timer-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

@media (max-width: 550px) {
  .vsr-timer-layout {
      flex-direction: column;
      gap: 10px;
  }
  .vsr-timer-inner {
      flex-direction: column;
      gap: 5px;
  }
  .vsr-timer-label {
      font-size: 13px;
      text-align: center;
  }
  .vsr-timer-checkout-btn {
      width: 100%;
      text-align: center;
  }
}