/** Shopify CDN: Minification failed

Line 42:1 Expected identifier but found "."
Line 978:2 Unexpected "}"
Line 1045:2 Unexpected "}"
Line 1489:0 Unexpected "}"
Line 1591:0 Unexpected "}"
Line 1632:0 Unexpected "}"

**/

  .cover-photo-wrapper.swipe-gallery {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 1;
}
 
.mobile-image-slider {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  width: 100%;
}

.mobile-image-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.mobile-gallery-img {
  width: 100vw;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

..profile-photo-overlap {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  background-color: #f5f5f5;
  z-index: 20; /* HIGHER than anything else */
}


@media (max-width: 768px) {
  .profile-photo-overlap {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===== Base Layout ===== */
  .vendor-btn.message-btn {
  background-color: #a28a68;       /* dark tan */
  color: white;
  font-size: 16px;                 /* bigger text */
  padding: 12px 20px;              /* bigger padding */
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.vendor-btn.message-btn:hover {
  background-color: #8e6f56;       /* slightly darker tan on hover */
}

  .cover-photo-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  z-index: 1;
}

.cover-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-photo-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0; /* gray block */
}

.vendor-profile-wrapper {
  background: white;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin: 3px 0;
  position: relative;
  z-index: 2;
}

.cover-photo-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: visible;
  z-index: 1;
}

.cover-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .vendor-profile-wrapper {
    max-width: 66.66% !important;
  }
}
@media (max-width: 767px) {
  .vendor-profile-wrapper {
    max-width: 100% !important;
  }
}

.profile-photo-overlap {
  position: absolute;
  bottom: -60px;
  left: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  background-color: #f5f5f5;
  z-index: 10;
}

.profile-info {
  padding: 7px 2px 2px 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vendor-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vendor-name {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vendor-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0 20px 20px 20px;
}

.verified-badge {
  font-size: 14px;
  background-color: #e6f7f6;
  padding: 2px 8px;
  border-radius: 12px;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  background: #effaf5;
  color: #007c5c;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  margin-left: 8px;
  border: 1px solid #b2dfdb;
}
.vendor-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  white-space: nowrap;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  background: #f8f5f1;
  color: #aa9873;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  margin-left: 8px;
  border: 1px solid #aa9873;
}

.category-badge .badge-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.verified-badge {
  font-size: 14px;
  color: #aa9873;
  background-color: #f8f5f1;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid #aa9873;
  display: inline-block;
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .vendor-title-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vendor-name {
    font-size: 20px;
    margin-bottom: 6px;
    text-align: center;
    display: block;
  }

  .verified-badge {
    display: block;
    margin-top: 6px;
    margin-bottom: 12px;
  }

  .profile-info {
Margin-top: -90px;    align-items: center;
    text-align: center;
  }

  

  .vendor-btn {
    width: 100%;
  }
.gallery-caption,
.gallery-price {
  color: black !important;
}

  .vendor-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .vendor-category-line {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .profile-photo-overlap {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
.view-more-link {
  display: inline-block;
  background-color: #a68963;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.view-more-link:hover {
  background-color: #8a6f4f;
}

  .vendor-gallery-scroll.image-gallery > .gallery-item:nth-of-type(1) {
    margin-left: 20px;
  }
}

.category-badge .badge-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
.badge-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.vendor-label {
  font-size: 16px;
  color: #777;
  margin-bottom: 10px;
}



.vendor-section-header {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 20px 10px 20px;
  text-align: left;
}

.vendor-bio {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.vendor-divider {
  width: 75%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 20px auto;
}

/* ===== Gallery Styles ===== */
  
.vendor-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding: 0 20px 20px 20px;
}

.vendor-gallery-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 10px 0 20px 0;
  -webkit-overflow-scrolling: touch;
}

/* Add left margin to first item */
.vendor-gallery-scroll.image-gallery > .gallery-item:first-child,
.vendor-gallery-scroll:not(.image-gallery) > .gallery-item:first-child {
  margin-left: 20px;
}

.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 150px;
  display: inline-block;
  text-align: center;
}

.gallery-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
}

.gallery-caption {
  font-size: 14px;
  font-weight: 500;
  padding-top: 5px;
  text-align: center;
  color: #333;
  margin-bottom: 0;
}

.gallery-price {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-top: 2px;
}

.view-more-wrapper {
  text-align: center;
  padding-bottom: 20px;
}

.view-more-link {
  display: inline-block;
  background-color:  #a68963;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}


.view-more-link:hover {
  background-color: #8a6f4f;
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .vendor-title-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vendor-name {
    font-size: 20px;
    margin-bottom: 6px;
    text-align: center;
    display: block;
  }

  .verified-badge {
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .vendor-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .vendor-category-line {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
        margin-top: 20px;

  }

  .profile-photo-overlap {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
.vendor-gallery-scroll.image-gallery > .gallery-item:nth-of-type(1) {
  margin-left: 20px;
}

  .profile-info {
    padding-top: 120px;
    align-items: center;
    text-align: center;
  }

  

  .vendor-btn {
    width: 100%;
  }
}
.vendor-tabs {
  display: flex;
  gap: 10px;
  margin: 0 20px 0;
  padding-bottom: 10px;
}
.tab-button {
  padding: 6px 12px;
  cursor: pointer;
  font-size: 18px; /* matches description title */
  font-weight: bold; /* matches description title */
  text-align: left;
  margin: 0 10px 10px 0;
}

.tab-button.active {
  background-color: #a68963;
  color: white;
  border-color: #a68963;
}
.tab-content {
  padding: 0;
}
  @media (max-width: 768px) {
  .cover-photo-wrapper.swipe-gallery {
    width: 100vw;
    height: 50vh;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: auto;
  }

  .media-gallery-carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    scroll-padding-left: 16px;
    padding-left: 16px;
  }

  .carousel-image {
    flex: 0 0 90vw;
    scroll-snap-align: start;
    position: relative;
  }

  .media-gallery-carousel img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }
}
@media (min-width: 769px) {
  .cover-photo-wrapper.swipe-gallery {
    width: 100%;
    height: 500px;
    overflow: hidden;
  }

  .media-gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-left: 20px;
    scroll-padding-left: 20px;
  }

  .carousel-image {
    flex: 0 0 400px; /* Adjust to show multiple side-by-side */
    scroll-snap-align: start;
  }

  .media-gallery-carousel img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }
}
  .cover-photo-wrapper.swipe-gallery {
    position: relative;
    overflow: hidden;
  }

  .vendor-profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }

  .profile-photo-inline {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
    background-color: #f5f5f5;
  }

  .vendor-name {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
  }

  @media (max-width: 768px) {
    .cover-photo-wrapper.swipe-gallery {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);
      padding: 0 !important;
      height: 50vh;
    }

    .media-gallery-carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-left: 0;
      margin-left: 0;
      gap: 0 !important;
    }

    .carousel-image {
      flex: 0 0 90vw;
      scroll-snap-align: start;
    }

    .carousel-image:first-child {
      margin-left: 0 !important;
    }

    .carousel-image:not(:first-child) {
      margin-left: 12px;
    }

    .media-gallery-carousel img {
      height: 50vh;
      width: 100%;
      object-fit: cover;
      display: block;
      border-radius: 0;
    }

    .vendor-profile-wrapper,
    .vendor-profile-section,
    .profile-container {
      padding: 0 16px;
    }
  }

  @media (min-width: 769px) {
    .cover-photo-wrapper.swipe-gallery {
      height: 400px;
      margin: 0 auto;
    }

    .media-gallery-carousel {
      display: flex;
      height: 100%;
      align-items: center;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 8px;
      padding-left: 20px;
    }

    .carousel-image {
      flex: 0 0 auto;
      height: 100%;
      scroll-snap-align: start;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-image img {
      height: 100%;
      width: auto;
      object-fit: contain;
      display: block;
      border-radius: 8px;
    }
  } .cover-photo-wrapper.swipe-gallery {
    position: relative;
    overflow: hidden;
  }

  .vendor-profile-header {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 24px;
  }

  .profile-photo-column {
    flex-shrink: 0;
  }

  .profile-info-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .profile-photo-inline {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
    background-color: #f5f5f5;
  }

  .vendor-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
  }

  @media (max-width: 768px) {
    .cover-photo-wrapper.swipe-gallery {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);
      padding: 0 !important;
      height: 50vh;
    }

    .media-gallery-carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-left: 0;
      margin-left: 0;
      gap: 0 !important;
    }

    .carousel-image {
      flex: 0 0 90vw;
      scroll-snap-align: start;
    }

    .carousel-image:first-child {
      margin-left: 0 !important;
    }

    .carousel-image:not(:first-child) {
      margin-left: 12px;
    }

    .media-gallery-carousel img {
      height: 50vh;
      width: 100%;
      object-fit: cover;
      display: block;
      border-radius: 0;
    }

    .vendor-profile-wrapper,
    .vendor-profile-section,
    .profile-container {
      padding: 0 16px;
    }
  }

  @media (min-width: 769px) {
    .cover-photo-wrapper.swipe-gallery {
      height: 400px;
      margin: 0 auto;
    }

    .media-gallery-carousel {
      display: flex;
      height: 100%;
      align-items: center;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 8px;
      padding-left: 20px;
    }

    .carousel-image {
      flex: 0 0 auto;
      height: 100%;
      scroll-snap-align: start;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-image img {
      height: 100%;
      width: auto;
      object-fit: contain;
      display: block;
      border-radius: 8px;
    }
  }
 /* Base style: desktop layout stays unchanged */
.vendor-btn.message-btn {
  background-color: #a28a68;
  color: white;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  margin-right: 10px; /* optional spacing between buttons */
}

/* Mobile: make the message button full width and stacked */
@media (max-width: 767px) {
  .vendor-btn.message-btn {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 767px) {
  .vendor-btn.message-btn {
    display: block !important;
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
}
@media (max-width: 767px) {
  .vendor-buttons {
    width: 100% !important;
    display: block !important;
  }

  .vendor-btn.message-btn {
    width: 100% !important;
    display: block !important;
    margin-bottom: 10px !important;
  }
}
@media (max-width: 767px) {
  .vendor-buttons {
    flex-basis: 100%;
    width: 100%;
    margin-top: 16px;
      align-items: center; 

    display: block;
  }

  .vendor-btn.message-btn {
    width: 100% !important;
    display: block !important;
    margin-bottom: 10px !important;
  }
}
/* === DESKTOP: align right === */
.vendor-buttons {
  display: flex;
  justify-content: flex-start; /* pushes buttons to the right */
  align-items: center;
      margin-left:30px;
        margin-right:30px;


  flex-grow: 1;
  gap: 10px;
}@media (max-width: 768px) {
  .cover-photo-wrapper.swipe-gallery {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 0 !important;
    height: 50vh !important; /* 3/4 of screen height */
    position: relative !important;
  }

  .media-gallery-carousel {
    display: flex !important;
    overflow-x: scroll !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-padding-left: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
  }

  .carousel-image {
    flex: 0 0 100% !important;
    scroll-snap-align: start !important;
    position: relative !important;
  }

  .media-gallery-carousel img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .cover-photo-wrapper.swipe-gallery .image-counter-badge,
  .cover-photo-wrapper.swipe-gallery .carousel-arrow.left,
  .cover-photo-wrapper.swipe-gallery .carousel-arrow.right {
    position: absolute !important;
  }

  .cover-photo-wrapper.swipe-gallery .image-counter-badge {
    bottom: 10px !important;
    right: 10px !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    color: white !important;
    padding: 4px 8px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    z-index: 5 !important;
  }

  .cover-photo-wrapper.swipe-gallery .carousel-arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 30px !important;
    height: 30px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    font-size: 18px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    z-index: 5 !important;
  }

  .cover-photo-wrapper.swipe-gallery .carousel-arrow.left {
    left: 10px !important;
  }

  .cover-photo-wrapper.swipe-gallery .carousel-arrow.right {
    right: 10px !important;
  }
}
   .profile-photo-column {
    position: relative !important;
  }

 
  .profile-photo-column {
    position: relative !important;
  }
@media (max-width: 767px) {
  #profile-photo {
    width: 20vw !important;
    height: 20vw !important;
        position: relative !important;
    top: -30px !important;
    left: 0 !important;
    border-radius: 50% !important;
    border: 4px solid white !important;
    object-fit: cover !important;
    background-color: #f5f5f5 !important;
    z-index: 10 !important;
  }
}



  }
}

/* Desktop settings for profile photo */
#profile-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid white;
  object-fit: cover;
  background-color: #f5f5f5;
    position: relative !important;
    top: -50px !important;
    left: 0 !important;
    border-radius: 50% !important;
    border: 4px solid white !important;
    object-fit: cover !important;
    background-color: #f5f5f5 !important;
    z-index: 10 !important;
    top: -50px;
  z-index: 10;
}

/* Add space above vendor category badge on desktop */
@media (min-width: 769px) {
  .vendor-category-line {
    margin-top: 10px !important;
  }
}
 .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}
/* Hide arrows on mobile */
@media (max-width: 767px) {
  .gallery-arrow {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .media-gallery-carousel {
    max-height: 500px;
    overflow-y: hidden !important;
  }
}

  }
@media (min-width: 769px) {
  .cover-photo-wrapper.swipe-gallery {
    overflow: visible !important; /* allow profile photo to rise above */
    position: relative !important;
  }
}
@media (min-width: 769px) {
  #profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    background-color: #f5f5f5;
    position: relative;
    top: -50px; /* raises photo over gallery */
    z-index: 10;
  }
}


/* ===== Base Layout ===== */
.vendor-profile-wrapper {
  background: white;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
margin: 30px 0 50px 0; /* ✅ Adds bottom margin */
  position: relative;
  z-index: 2;
}

.cover-photo-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: visible;
  z-index: 1;
}

.cover-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-photo-overlap {
  position: absolute;
  bottom: -60px;
  left: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  background-color: #f5f5f5;

  z-index: 20; /* ⬅️ Boost above info section */
}

.profile-info {
  padding: 70px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vendor-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vendor-name {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vendor-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 20px 20px 20px;
}

.verified-badge {
  font-size: 14px;
  background-color: #e6f7f6;
  padding: 2px 8px;
  border-radius: 12px;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  background: #effaf5;
  color: #007c5c;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  margin-left: 8px;
  border: 1px solid #b2dfdb;
}
.vendor-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  white-space: nowrap;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  background: #f8f5f1;
  color: #aa9873;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  margin-left: 8px;
  border: 1px solid #aa9873;
}

.category-badge .badge-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.verified-badge {
  font-size: 14px;
  color: #aa9873;
  background-color: #f8f5f1;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid #aa9873;
  display: inline-block;
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .vendor-title-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vendor-name {
    font-size: 20px;
    margin-bottom: 6px;
    text-align: center;
    display: block;
  }

  .verified-badge {
    display: block;
    margin-top: 6px;
    margin-bottom: 12px;
  }

  .profile-info {
    padding-top: 90px;
    align-items: center;
    text-align: center;
  }
.vendor-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px 20px 10px; /* reduce padding to allow images to stretch more */
  }
  .gallery-img {
    height: auto;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }
  .gallery-item {
    width: 100%;
    text-align: center;
  }
.vendor-tabs {
  display: flex;
  gap: 10px;
  margin: 0 20px 10px;
  flex-wrap: wrap;
}

@media (min-width: 769px) {
  .vendor-tabs {
    justify-content: flex-end; /* align right on desktop */
  }
}

  .tab-button {
    font-size: 13px;
    padding: 4px 6px;
    white-space: nowrap;
  }
  .vendor-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .vendor-category-line {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

 
.view-more-link {
  display: inline-block;
  background-color: #a68963;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.view-more-link:hover {
  background-color: #8a6f4f;
}

  .vendor-gallery-scroll.image-gallery > .gallery-item:nth-of-type(1) {
    margin-left: 0px;
  }
}

.category-badge .badge-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.vendor-btn {
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  white-space: nowrap;
}

.vendor-section-header {
  font-size: 18px;
  font-weight: bold;
  margin: 0px 0px 0px 0px;
  text-align: left;
}

.vendor-bio {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.vendor-divider {
  width: 75%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 20px auto;
}

/* ===== Gallery Styles ===== */
.vendor-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding: 0 0px 0px 0px;
}

.vendor-gallery-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 10px 0 0px 0;
  -webkit-overflow-scrolling: touch;
}

/* Add left margin to first item */
.vendor-gallery-scroll.image-gallery > .gallery-item:first-child,
.vendor-gallery-scroll:not(.image-gallery) > .gallery-item:first-child {
  margin-left: 20px;
}

.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 150px;
  display: inline-block;
  text-align: center;
}

.gallery-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
}

.gallery-caption {
  font-size: 14px;
  font-weight: 500;
  padding-top: 5px;
  text-align: center;
  color: #333;
  margin-bottom: 0;
}

.gallery-price {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-top: 2px;
}

.view-more-wrapper {
  text-align: center;
  padding-bottom: 20px;
}

.view-more-link {
  display: inline-block;
  background-color:  #a68963;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}


.view-more-link:hover {
  background-color: #8a6f4f;
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .vendor-title-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vendor-name {
    font-size: 20px;
    margin-bottom: 6px;
    text-align: center;
    display: block;
  }

  .verified-badge {
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .vendor-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .vendor-category-line {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }


  }


@media (max-width: 877px) {
  .vendor-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    padding: 0 00px 0px 0px; /* reduce padding to allow images to stretch more */
  }
  .gallery-img {
    height: auto;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 100%;
    border-radius: 0px;
  }
  .gallery-item {
    width: 100%;
    text-align: center;
  }
}

  .profile-info {
    padding-top: 120px;
    align-items: center;
    text-align: center;
  }

  
  .vendor-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    margin: 0;
  }
  .tab-button {
    font-size: 18px;
    padding: 6px 8px;
    white-space: nowrap;
    flex: 1;
    text-align: center;
  }
  
}
  @media (max-width: 768px) {
  .vendor-profile-wrapper,
  .vendor-profile-section,
  .profile-info,
  .vendor-bio,
  .vendor-tabs,
  .vendor-gallery-grid,
  .vendor-buttons,
  .vendor-section-header,
  .tab-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
     position: relative;
  z-index: 1;
  }

  .vendor-profile-wrapper {
    max-width: 100%;
margin: 30px 0 50px 0; /* ✅ Adds bottom margin */
  }

  .vendor-divider {
    margin-left: 16px;
    margin-right: 16px;
  }

  .vendor-gallery-scroll {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  /* Ensure the cover photo gallery goes edge-to-edge */
  .cover-photo-wrapper.swipe-gallery {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 0 !important;
  }

  .media-gallery-carousel img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    display: block;
  }

  /* Now restore margins for the rest of the profile content */
  .vendor-profile-section,
  .profile-info,
  .vendor-bio,
  .vendor-tabs,
  .vendor-gallery-grid,
  .vendor-buttons,
  .vendor-section-header,
  .tab-content,
  .vendor-gallery-scroll {
    padding-left: 16px !important;
    padding-right: 16px !important;
     position: relative;
  z-index: 1;  }

  .vendor-divider {
    margin-left: 16px;
    margin-right: 16px;
  }
}


  .media-gallery-carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    scroll-padding-left: 16px;
    padding-left: 16px;
  }

  .carousel-image {
    scroll-snap-align: start;
        padding-left: 0 !important;
    scroll-padding-left: 0 !important;

    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
        margin-left: 0 !important;

  }

  .media-gallery-carousel img {
    width: 100%;
    height: 50vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
  }
}
  @media (min-width: 769px) {
  .cover-photo-wrapper.swipe-gallery {
    width: 100%;
    height: 400px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
  }

  .media-gallery-carousel {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8px;
    padding-left: 20px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-image {
    scroll-snap-align: start;
    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    background-color: #f8f8f8; /* Optional: neutral bg fill */
    border-radius: 8px;
  }
}


}

