/* Global */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
}

/* Page wrapper */
.bristay-page {
  padding-bottom: 80px;
}

/* 🔍 Search Bar */
.bristay-search-container {
  padding: 15px;
  display: flex;
  justify-content: center;
}

.bristay-search-box {
  background: #fff;
  width: 95%;
  padding: 12px 15px;
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
}

.bristay-search-box i {
  font-size: 18px;
  margin-right: 10px;
  color: #444;
}

.bristay-search-box input {
  border: none;
  width: 100%;
  font-size: 16px;
  outline: none;
}

/* Categories */
.bristay-categories {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  overflow-x: auto;
}

.bristay-category {
  text-align: center;
  padding: 5px 10px;
  opacity: 0.6;
}

.bristay-category.active {
  opacity: 1;
}

.bristay-category img {
  width: 32px;
  height: 32px;
}

.bristay-category span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 600;
}

/* Sections */
.bristay-section {
  padding: 10px 15px;
}

.bristay-section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Horizontal Scroll */
.bristay-list-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px;
}

/* Cards */
.bristay-card {
  min-width: 230px;
  border-radius: 14px;
  position: relative;
}

.bristay-card-img {
  width: 230px;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
}

.bristay-card-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffffffcc;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.bristay-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: #ffffffcc;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
}

.bristay-card-title {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
}

.bristay-card-sub {
  font-size: 13px;
  color: #555;
}

/* 📱 Bottom Navigation */
.bristay-bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 65px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center; /* vertically center items */
  border-top: 1px solid #ddd;
}

.bristay-nav-item {
  display: flex;
  flex-direction: column; /* icon on top, text below */
  align-items: center;    /* center horizontally */
  justify-content: center;
  text-align: center;
  font-size: 13px;
  color: #777;
  text-decoration: none;  /* remove underline */
  padding-top: 6px;
}

.bristay-nav-item i {
  font-size: 18px;
  margin-bottom: 4px; /* space between icon and text */
}

.bristay-nav-item.active {
  color: #E11D48;
}
/* 🌐 Tablet */
@media (min-width: 768px) {
  .bristay-list-scroll {
    flex-wrap: wrap;
    overflow: visible;
  }

  .bristay-card {
    min-width: 280px;
  }

  .bristay-card-img {
    width: 100%;
  }
}

/* 💻 Laptop */
@media (min-width: 1024px) {
  .bristay-page {
    width: 80%;
    margin: auto;
  }

  .bristay-bottom-nav {
    display: none;
  }

  .bristay-categories {
    justify-content: center;
    gap: 40px;
  }
}


/* ———————— MAIN CONTAINER ———————— */
.bristay_login {
    font-family: 'Inter', sans-serif;
    max-width: 420px;
    margin: 0 auto;
    padding: 25px 20px;
    color: #222;
}

/* ———————— TITLE ———————— */
.bristay_login .title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* ———————— INPUT GROUP ———————— */
.bristay_login .input_group {
    margin-bottom: 18px;
}

.bristay_login select,
.bristay_login input {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.bristay_login select:focus,
.bristay_login input:focus {
    border-color: #ff385c;
}

/* ———————— PRIMARY BUTTON ———————— */
.bristay_login .btn_primary {
    width: 100%;
    background: linear-gradient(90deg, #ff385c, #e61e4d);
    color: #fff;
    padding: 15px;
    font-size: 17px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.bristay_login .btn_primary:hover {
    background: linear-gradient(90deg, #e61e4d, #ff385c);
}

/* ———————— DIVIDER ———————— */
.bristay_login .divider {
    text-align: center;
    margin: 20px 0;
    color: #888;
    font-size: 14px;
    position: relative;
}

.bristay_login .divider:before,
.bristay_login .divider:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.bristay_login .divider:before {
    left: 0;
}

.bristay_login .divider:after {
    right: 0;
}

/* ———————— SOCIAL BUTTONS ———————— */
.bristay_login .social_btn {
    width: 100%;
    padding: 13px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
}

.bristay_login .social_btn:hover {
    background: #f7f7f7;
}

/* ———————— HELP LINK ———————— */
.bristay_login .help_link {
    text-align: center;
    margin-top: 25px;
}

.bristay_login .help_link a {
    color: #222;
    font-weight: 500;
    text-decoration: underline;
}

/*Wishlist*/

.bristay_wishlists-container {
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

.bristay_wishlists-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bristay_wishlists-header h2 {
    font-size: 28px;
    font-weight: 700;
}

.bristay_wishlists-edit {
    background: #f3f3f3;
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.bristay_wishlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.bristay_wishlists-item h3 {
    font-size: 17px;
    margin-top: 10px;
}

.bristay_wishlists-label span {
    color: #696969;
    font-size: 14px;
}

/* Recently viewed 4-grid */
.bristay_wishlists-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    background: #eee;
    border-radius: 18px;
    overflow: hidden;
}

.bristay_wishlists-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bristay_wishlists-image-grid .empty {
    background: #c7c7c7;
}

/* Single wishlist image */
.bristay_wishlists-single-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 18px;
}


.bristay_preview {
    width: 100%;
    max-width: 900px;
    margin: auto;
    background: #fff;
    font-family: 'Inter', sans-serif;
    padding-bottom: 120px;
}

.bristay_preview-topnav {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.bristay_preview-topnav button {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    border: none;
    padding: 10px 12px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.bristay_preview-slider {
    width: 100%;
    height: 340px;
    overflow: hidden;
    position: relative;
}

.bristay_preview-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bristay_preview-count {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.bristay_preview-title {
    padding: 20px;
}

.bristay_preview-title h2 {
    font-size: 26px;
    font-weight: 700;
}

.bristay_preview-title p {
    color: #555;
    margin-top: 5px;
}

.bristay_preview-rating {
    padding: 0 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
}

.bristay_preview-rating-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bristay_preview-rating-item i {
    color: #e63946;
}

.bristay_preview-host {
    margin: 30px 20px 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.bristay_preview-host img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.bristay_preview-line {
    border: none;
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.bristay_preview-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.bristay_preview-price-old {
    text-decoration: line-through;
    color: #999;
}

.bristay_preview-price-now {
    font-size: 28px;
    font-weight: 700;
    color: #e63946;
}

.bristay_preview-free {
    margin-top: 10px;
    font-size: 14px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bristay_preview-reserve {
    background: linear-gradient(45deg, #ff385c, #e61e4d);
    border: none;
    padding: 14px 30px;
    color: white;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}

@media (min-width: 700px) {
    .bristay_preview-slider {
        height: 450px;
    }

    .bristay_preview-title h2 {
        font-size: 32px;
    }

    .bristay_preview-price-now {
        font-size: 34px;
    }
}


/* GLOBAL */
.bristay_profile {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 15px;
    font-family: "Helvetica", sans-serif;
}

/* HEADER */
.bristay_profile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.bristay_profile_header h2 {
    font-size: 26px;
    font-weight: 700;
}

.bristay_profile_notify {
    width: 42px;
    height: 42px;
    background: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* USER CARD */
.bristay_profile_userBox {
    text-align: center;
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    margin-bottom: 25px;
}

.bristay_profile_avatar {
    width: 90px;
    height: 90px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    font-weight: bold;
    margin: auto;
}

.bristay_profile_name {
    margin-top: 15px;
    font-size: 23px;
    font-weight: 700;
}

.bristay_profile_role {
    color: gray;
    font-size: 15px;
}

/* GRID OPTIONS */
.bristay_profile_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    margin-bottom: 25px;
}

.bristay_profile_card {
    position: relative;
    background: white;
    padding: 18px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bristay_profile_card img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.bristay_profile_card h4 {
    font-size: 16px;
    font-weight: 600;
}

/* NEW BADGE */
.bristay_badge_new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #1a73e8;
    color: white;
    padding: 5px 9px;
    border-radius: 12px;
    font-size: 11px;
}

/* BECOME HOST */
.bristay_profile_bigCard {
    background: white;
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    margin-bottom: 25px;
}

.bristay_profile_bigCard_content {
    display: flex;
    gap: 15px;
}

.bristay_profile_bigCard_content img {
    width: 70px;
    height: 70px;
}

.bristay_profile_bigCard_content h3 {
    font-size: 18px;
    font-weight: 700;
}

.bristay_profile_bigCard_content p {
    font-size: 14px;
    color: gray;
}

/* SETTINGS */
.bristay_profile_settings {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    padding: 10px 5px;
}

.bristay_profile_settings i {
    font-size: 20px;
}

.bristay_profile_arrow {
    margin-left: auto;
    font-size: 16px;
    color: gray;
}

/* RESPONSIVE FIXES */
@media (max-width: 600px) {
    .bristay_profile_bigCard_content {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 900px) {
    .bristay_profile_userBox {
        padding: 50px;
    }
    .bristay_profile_avatar {
        width: 110px;
        height: 110px;
        font-size: 42px;
    }
}




/*Classes display*/
.bristay_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 5px;
}

/* Anchor Card */
.bristay_card {
    text-decoration: none;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: block;
}

.bristay_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.bristay_image {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.bristay_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bristay_card:hover img {
    transform: scale(1.08);
}

.bristay_title {
    padding: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.3px;
}




/*Becoem a Host*/
.bristay_modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.bristay_modal_content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border-radius: 16px;
    animation: pop .3s ease;
}

@keyframes pop {
    from { transform: scale(.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.bristay_modal_close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.bristay_modal h2 {
    margin-bottom: 5px;
}

.subtitle {
    color: #666;
    margin-bottom: 20px;
}

.bristay_form_group {
    margin-bottom: 15px;
}

.bristay_form_group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.bristay_form_group input,
.bristay_form_group select,
.bristay_form_group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.bristay_btn_primary {
    width: 100%;
    padding: 14px;
    background: #ff385c;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.bristay_btn_primary:hover {
    background: #e02d50;
}

