/* ===============================
   XO DISCOVERY GRID SECTION
================================ */

.xo-discovery-section{
  padding: 60px 0;
  font-family: "Montserrat", sans-serif;
}

.xo-discovery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Cards */
.xo-discovery-card{
  background: #fff1e2;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Large first card */
.xo-card-large{
  grid-column: span 2;
}

.xo-discovery-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Images */
.xo-discovery-img img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Content */
.xo-discovery-content{
  padding: 22px 22px 26px;
}

.xo-discovery-content h3{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}

.xo-discovery-content p{
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 18px;
}

/* Button */
.xo-discovery-btn{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e91e63;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.xo-discovery-btn.outline{
  background: transparent;
  border: 2px solid #e91e63;
  color: #e91e63;
}

.xo-discovery-card:hover .xo-discovery-btn{
  background: #c2185b;
  color: #fff;
  border-color: #c2185b;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px){
  .xo-discovery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .xo-card-large{
    grid-column: span 2;
  }
}

@media (max-width: 576px){
  .xo-discovery-grid{
    grid-template-columns: 1fr;
  }
  .xo-card-large{
    grid-column: span 1;
  }
  .xo-discovery-img img{
    height: 200px;
  }
}
/* ==============================
   XO GOOGLE REVIEWS (ISOLATED)
================================ */

.xo-google-reviews{
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 16px;
  font-family: "Montserrat", sans-serif;
}

.xo-reviews-header{
  text-align: center;
  margin-bottom: 30px;
}

.xo-reviews-title{
  font-size: 18px;
  font-weight: 700;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.xo-stars{
  color: #fbbc04;
  font-size: 18px;
}

.xo-review-count{
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

/* GRID */
.xo-reviews-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.xo-review-card{
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.xo-review-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.10);
}

/* TOP */
.xo-review-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.xo-review-user{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* AVATAR */
.xo-avatar{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* NAME + TIME */
.xo-user-name{
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.xo-review-time{
  font-size: 12px;
  color: #777;
}

/* STARS */
.xo-review-stars{
  color: #fbbc04;
  font-size: 15px;
  margin-bottom: 6px;
}

/* TEXT */
.xo-review-text{
  font-size: 13.5px;
  line-height: 1.6;
  color: #333;
}

/* FOOTER */
.xo-verified{
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 1100px){
  .xo-reviews-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px){
  .xo-reviews-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px){
  .xo-reviews-grid{
    grid-template-columns: 1fr;
  }

  .xo-reviews-title{
    font-size: 16px;
  }
}

    /* ===== EXCLUSIVE ALL PHOTOS VIEW GALLERY ===== */

.view-gallery {
    padding: 100px 0;
    background: #ffffff;
}

.view-gallery-heading {
    text-align: center;
    font-size: 72px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.view-gallery-divider {
    width: 80px;
    height: 1px;
    background: #111;
    margin: 0 auto 40px;
}

.view-gallery-tagline {
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 70px;
    line-height: 1.8;
}

/* GRID */
.view-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* ITEM */
.view-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.view-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover Effect */
.view-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(85%);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .view-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .view-gallery-heading {
        font-size: 54px;
    }
}

@media (max-width: 575px) {
    .view-gallery-grid {
        grid-template-columns: 1fr;
    }
    .view-gallery-heading {
        font-size: 40px;
    }
    .view-gallery-tagline {
        font-size: 13px;
        padding: 0 15px;
    }
}

/* ===== LIGHTBOX ===== */

.view-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.view-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.view-lightbox img {
    max-width: 90%;
    max-height: 90%;
}

/* Controls */
.view-lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.view-lightbox .prev { left: 20px; }
.view-lightbox .next { right: 20px; }

.view-lightbox .close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
}

    /* ===== EXCLUSIVE ALL PHOTOS VIEW GALLERY ends ===== */
    
/*elfsight container*/ .reviews-widget-shell { min-height: 600px; /* adjust after testing */ width: 100%; }

/* SECTION */
.xo-blog-section {
    background: #f7f7f7;
}

/* TITLE */
.xo-section-title {
    font-weight: 700;
    font-size: 34px;
    letter-spacing: 0.5px;
}

.xo-underline {
    width: 60px;
    height: 3px;
    background: #e31e24;
    margin: 10px auto 0;
}

/* CARD */
.xo-blog-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.xo-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.xo-blog-img {
    overflow: hidden;
}

.xo-blog-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.xo-blog-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.xo-blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.xo-blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.xo-blog-title a {
    text-decoration: none;
    color: #222;
}

.xo-blog-title a:hover {
    color: #e31e24;
}

.xo-blog-excerpt {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
    margin-bottom: 15px;
}

/* READ MORE */
.xo-read-more {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e31e24;
    text-decoration: none;
}

.xo-read-more:hover {
    text-decoration: underline;
}

/* timeless */
/* SECTION BACKGROUND */
.xo-experience-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
                url('images/hearts-bg.jpg') center/cover no-repeat;
}

/* HEADING */
.xo-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
}

.xo-subheading {
    color: #ffffff;
    opacity: 0.9;
    font-size: 16px;
}

/* CARD */
.xo-card {
    background: #1a0f1f;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.xo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.xo-card-content {
    padding: 22px 18px;
    text-align: center;
}

.xo-card h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

/* BUTTON */
.xo-btn {
    display: inline-block;
    padding: 7px 20px;
    font-size: 14px;
    border-radius: 30px;
    background: #ff4d6d;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.xo-btn:hover {
    background: #ff2e55;
    transform: translateY(-3px);
}

/* HOVER EFFECT */
.xo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.4);
}
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}