/**
 * home-designs-designer.css — /home-designs/designer/:slug/ page styles
 *
 * Compiled from React SCSS sources:
 *   frontend-nextjs/src/views/pages/OwnerProfilePage/_owner-profile.scss
 *
 * Depends on (enqueued before this file):
 *   blog.css       → .social-link, .social-share-title, .share ul, .collection-box
 *   homepage.css   → .collection-box--sm/md, .subscribe-banner, .subscribe-form
 *   new-home-design.css → .masonry-grid, .masonry-item, .featured-designs-wrap
 *
 * SCSS variables resolved:
 *   $primary       → #e78125
 *   $secondary     → #19263a
 *   $color_raven   → #6c757d
 *   $color_shark   → #232528
 */

/* ============================================================
   OWNER PROFILE INFO WRAP
   Source: _owner-profile.scss — .owner-profile-info-wrap
   ============================================================ */
.owner-profile-info-wrap .owner-profile-box {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 0 56px;
  border-bottom: 1px solid rgba(108, 117, 125, 0.2);
}

@media (max-width: 767px) {
  .owner-profile-info-wrap .owner-profile-box {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

/* Left: avatar column (45%) */
.owner-profile-info-wrap .owner-profile-box .left {
  width: 45%;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .owner-profile-info-wrap .owner-profile-box .left {
    width: 100%;
    padding-right: 0;
    padding-bottom: 20px;
    display: block;
  }
}

.owner-profile-info-wrap .owner-profile-box .left img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .owner-profile-info-wrap .owner-profile-box .left img {
    margin-left: 0;
  }
}

/* Mobile title info inside .left */
.owner-profile-info-wrap .mobile-title-info {
  padding-bottom: 20px;
}

.owner-profile-info-wrap .mobile-title-info .h1 {
  padding-bottom: 20px;
  font-size: 22px;
}

.owner-profile-info-wrap .mobile-title-info .location {
  flex-shrink: 0;
  padding-bottom: 0;
}

/* Right: text column (55%) */
.owner-profile-info-wrap .owner-profile-box .right {
  width: 55%;
  padding-left: 15px;
}

@media (max-width: 767px) {
  .owner-profile-info-wrap .owner-profile-box .right {
    width: 100%;
    padding-left: 0;
    padding-bottom: 20px;
  }
}

/* Heading */
.owner-profile-info-wrap .owner-profile-box .h1 {
  color: #19263a;
  padding-bottom: 15px;
}

/* Location */
.owner-profile-info-wrap .owner-profile-box .location {
  font-size: 22px;
  line-height: 145%;
  color: #e78125;
  display: flex;
  align-items: center;
  padding-bottom: 26px;
}

@media (max-width: 767px) {
  .owner-profile-info-wrap .owner-profile-box .location {
    font-size: 16px;
    font-weight: 500;
  }
}

.owner-profile-info-wrap .owner-profile-box .location svg {
  font-size: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Description */
.owner-profile-info-wrap .desc {
  font-size: 18px;
  line-height: 160%;
  max-width: 580px;
  padding-bottom: 26px;
}

@media (max-width: 767px) {
  .owner-profile-info-wrap .desc {
    font-size: 14px;
  }
}

.owner-profile-info-wrap .desc h5 {
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  color: #6c757d;
  padding-bottom: 12px;
}

.owner-profile-info-wrap .desc a {
  font-weight: 500;
  color: #e78125;
}

.owner-profile-info-wrap .desc p {
  margin-bottom: 0;
}

.owner-profile-info-wrap .desc p a {
  color: #e78125;
  font-weight: 500;
}

/* Show More / Less button */
.btn-show-more {
  background: none;
  border: none;
  padding: 6px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: #e78125;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-show-more:hover {
  color: #19263a;
  text-decoration: underline;
}

/* Share */
.owner-profile-info-wrap .share {
  padding-bottom: 38px;
}

.owner-profile-info-wrap .share ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.owner-profile-info-wrap .share ul li.social-share-title {
  font-size: 14px;
  color: #6c757d;
  margin-right: 4px;
}

/* ============================================================
   PROFILE INFO LIST (action buttons)
   Source: OwnerProfileInfo.js — .profile-info-list / .info-item
   ============================================================ */
.profile-info-list {
  padding-top: 4px;
}

.profile-info-list ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 12px;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid #e78125;
  border-radius: 40px;
  background: transparent;
  color: #232528;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.info-item:hover {
  background: #e78125;
  color: #fff;
}

.info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e78125;
  flex-shrink: 0;
  font-size: 16px;
  transition: color 0.2s;
}

.info-item:hover .icon {
  color: #fff;
}

.info-item .txt {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .profile-info-list ul {
    gap: 8px;
  }

  .info-item {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ============================================================
   ALL DESIGNS SECTION HEADER
   Source: AllDesigns.js — .d-md-flex.justify-content-between
   ============================================================ */
.designer-designs-header {
  align-items: center;
  padding-bottom: 8px;
}

.designer-designs-header .block-title {
  padding-bottom: 0;
}

/* Category select — native <select> styled to match react-select look */
.gp-designer-cat-select {
  display: block;
  width: 200px;
  padding: 8px 36px 8px 14px;
  font-size: 14px;
  font-weight: 400;
  color: #232528;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c757d' 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 10px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.gp-designer-cat-select:focus {
  border-color: #e78125;
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 129, 37, 0.15);
}

/* ============================================================
   MODAL
   Source: professional-detail.css modal styles (reused structure)
   ============================================================ */
.gp-designer-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.gp-designer-modal.show {
  display: flex;
}

/* gp-modal-inner, form-group, form-footer reuse professional-detail.css / main.css */

/* ============================================================
   POPULAR DESIGNS PAGE WRAP
   Needed when new-home-design.css is not loaded
   ============================================================ */
.popular-designs-page-wrap .featured-designs-wrap {
  padding-bottom: 60px;
}
