
.virtual-call-section {
  display: flex;
  align-items: justify-content;
  justify-content: center;
  min-height: 480px;
  background: #fff;
  padding: 40px 0;
  gap: 48px;
}
.virtual-call-content {
  flex: 1 1 0;
  max-width: 44vw;
  padding-left: 5vw;
}
.virtual-call-title {
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 18px;
  font-weight: bold;
}
.virtual-call-desc {
  font-size: 16px;
  color: #222;
  margin-bottom: 36px;
  line-height: 1.6;
  text-align: justify;
}
.virtual-call-btn {
  display: inline-block;
  padding: 16px 38px;
  background: #0a1311;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  transition: background 0.2s;
}
.virtual-call-image {
  flex: 1 1 0;
  max-width: 40vw;
}
.virtual-call-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .virtual-call-section {
    flex-direction: column;
    gap: 30px;
    min-height: unset;
    padding: 32px 0 24px 0;
  }
  .virtual-call-content, .virtual-call-image {
    max-width: 92vw;
    padding-left: 0;
  }
  .virtual-call-title {
    font-size: 18px;
    font-weight: bold;
  }
  .virtual-call-desc {
    font-size: 14px;
    margin-bottom: 28px;
    text-align: justify;
  }
  .virtual-call-btn {
    padding: 14px 30px;
    font-size: 16px;
  }
  .virtual-call-image img {
    max-width: 100vw;
    border-radius: 16px;
  }
}
@media (max-width: 520px) {
  .virtual-call-title {
    font-size: 18px;
    font-weight: bold;
  }
  .virtual-call-desc {
    font-size: 14px;
    text-align: justify;
  text-align: justify;
  }
  .virtual-call-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}
.customize-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background: #fff;
  gap: 40px;
  padding: 40px 0;
}
.customize-image {
  flex: 1 1 0;
  min-width: 280px;
  max-width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customize-image img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
  background: #222;
}
.customize-content {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 50%;
  padding: 60px;
}
.customize-title {
  font-size: 22px;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}
.customize-desc {
  font-size: 16px;
  margin-bottom: 32px;
  color: #333;
  text-align: justify;
}
.customize-btn {
  display: inline-block;
  padding: 16px 38px;
  background: #0a1311;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .customize-section {
    flex-direction: column;
    gap: 28px;
    min-height: unset;
    padding: 32px 0 24px 0;
  }
  .customize-image,
  .customize-content {
    max-width: 94vw;
    min-width: unset;
    padding: 0;
  }
  .customize-content {
    padding: 32px 0 0 0;
  }
  .customize-title {
    font-size: 20px;
    font-weight: bold;
  }
  .customize-desc {
    font-size: 16px;
    margin-bottom: 22px;
  }
  .customize-btn {
    padding: 13px 25px;
    font-size: 16px;
  }
  .customize-image img {
    border-radius: 8px;
  }
}
@media (max-width: 540px) {
  .customize-title {
    font-size: 18px;
    font-weight: bold;
  }
  .customize-desc {
    font-size: 14px;
  }
  .customize-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}
.shop-shape-section {
  background: #fdf9f7;
  border-radius: 24px 24px 0 0;
  padding: 48px 0 64px 0;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.shop-shape-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 22px;
  margin-bottom: 38px;
  color: #191919;
  font-weight: bold;
}
.shape-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}
.shape-grid img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.18s;
  cursor: pointer;
 
  padding: 10px;
}
.shape-grid img:hover {
  transform: scale(1.12);
  background: #fae8dd;
}
@media (max-width: 900px) {
  .shop-shape-section {
    padding: 32px 0 36px 0;
  }
  .shape-grid {
    gap: 24px;
    max-width: 95vw;
  }
  .shop-shape-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .shape-grid img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .shop-shape-section {
    padding: 20px 0 18px 0;
    border-radius: 14px 14px 0 0;
  }
  .shape-grid {
    gap: 14px;
  }
  .shape-grid img {
    width: 45px;
    height: 45px;
    padding: 4px;
  }
}

.shop-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.shop-feed-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 22px;
  color: #222;
  margin-left: 2vw;
  font-weight: bold;
}
.shop-feed-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 2vw;
}
.shop-feed-profile img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}
.shop-feed-follow {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #222;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  color: #222;
  background: #fff;
  text-decoration: none;
  transition: background .2s;
}
.shop-feed-follow:hover {
  background: #eee;
}
.shop-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  padding: 0 2vw 32px 2vw;
}
.shop-feed-card {
  background: #5e514b; /* Default color, override with inline style if needed */
  border-radius: 18px;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 0 14px 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}
.shop-feed-card .insta-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  z-index: 2;
  opacity: 0.84;
}
.shop-feed-thumb {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 7px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}
@media (max-width: 900px) {
  .shop-feed-header {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 1vw;
    margin-right: 1vw;
    gap: 18px;
  }
  .shop-feed-title {
    font-size: 20px;
    margin-left: 0;
    font-weight: bold;
  }
  .shop-feed-profile {
    margin-right: 0;
  }
  .shop-feed-grid {
    gap: 17px;
    padding-left: 1vw;
    padding-right: 1vw;
  }
  .shop-feed-card {
    border-radius: 12px;
    min-width: 150px;
  }
  .shop-feed-card .insta-icon {
    width: 18px;
    height: 18px;
    top: 7px;
    right: 7px;
  }
  .shop-feed-thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }
}

.faq-section {
  background: #fdf9f7;
  padding: 56px 0 36px 0;
}
.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  margin-left: 8vw;
  margin-bottom: 34px;
  color: #191919;
  font-weight: 500;
  align-items: justify-content;
}
.faq-box {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.03);
  padding: 0 0;
  border: 1px solid #ececec;
}
.faq-row {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
  padding: 32px 42px 32px 42px;
  border-bottom: 1px solid #ececec;
  transition: background 0.12s;
}
.faq-row:last-child {
  border-bottom: none;
}
.faq-row:hover {
  background: #faf6f3;
}
.faq-icon {
  font-size: 25px;
  font-weight: 600;
  color: #222;
  transition: transform 0.2s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #333;
  font-size: 18px;
  padding: 0 42px;
  line-height: 1.7;
  transition: max-height 0.28s cubic-bezier(.4,1,.2,1), padding 0.22s;
  border-bottom: 1px solid #ececec;
}
.faq-row.open .faq-icon {
  transform: rotate(45deg);
}
.faq-row.open + .faq-answer {
  max-height: 300px;
  padding: 20px 42px 22px 42px;
  border-bottom: 1px solid #ececec;
}

@media (max-width: 900px) {
  .faq-title {
    font-size: 18px;
    margin-left: 3vw;
  }
  .faq-box {
    max-width: 97vw;
  }
  .faq-row, .faq-answer {
    padding-left: 19px;
    padding-right: 19px;
    font-size: 1rem;
  }
  .faq-answer {
    padding-right: 19px;
    padding-left: 19px;
  }
}
@media (max-width: 500px) {
  .faq-title {
    font-size: 20px;
    margin-bottom: 18px;
    margin-left: 2vw;
  }
  .faq-row, .faq-answer {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
  }
  .faq-answer {
    font-size: 16px;
    align-items: justify-content;
  }
}
.trust-icons-section {
  background: #fdf9f7;
  padding: 42px 0 34px 0;
  width: 100%;
}
.trust-icons-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 110px;
  min-width: 70px;
  max-width: 100px;
}
.trust-icon-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: grayscale(90%);
}
.trust-icon-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: #191919;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 900px) {
  .trust-icons-row {
    gap: 28px;
    max-width: 97vw;
  }
  .trust-icon-img {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }
  .trust-icon-col {
    min-width: 80px;
    max-width: 100px;
  }
  .trust-icon-label {
    font-size: 0.97rem;
  }
}
@media (max-width: 500px) {
  .trust-icons-section {
    padding: 24px 0 16px 0;
  }
  .trust-icons-row {
    gap: 15px;
  }
  .trust-icon-img {
    width: 200px;
    height: 200px;
    margin-bottom: 5px;
  }
  .trust-icon-label {
    font-size: 0.81rem;
  }
}