/* ─── SHIPPING & DELIVERY SECTION STYLES ─── */
.shipping-section {
  width: 100%;
  background-color: var(--white);
  overflow: hidden;
}

.shipping-container {
  display: flex;
  min-height: calc(100vh - 56px);
  width: 100%;
}

/* Left Column - Image */
.shipping-image-col {
  flex: 0 0 50%;
  width: 50%;
  background-color: #f6f6f6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shipping-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Column - Content */
.shipping-content-col {
  flex: 0 0 50%;
  width: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shipping-content-wrap {
  width: 100%;
  max-width: 600px;
}

.shipping-title {
  font-family: var(--font-outfit), sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #141414;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

/* Styling standard HTML tags output by WordPress editor */
.shipping-content-wrap p {
  font-family: var(--font-outfit), sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #141414;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

/* Automatic prepending of icons to link structures generated in Editor */
.shipping-content-wrap a[href^="mailto:"],
.shipping-content-wrap a[href^="tel:"],
.shipping-content-wrap a[href*="wa.me"],
.shipping-content-wrap a[href*="whatsapp"] {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-outfit), sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #141414;
  text-decoration: none;
  margin-bottom: 16px;
  transition: opacity 0.2s ease;
}

.shipping-content-wrap a[href^="mailto:"]:hover,
.shipping-content-wrap a[href^="tel:"]:hover,
.shipping-content-wrap a[href*="wa.me"]:hover,
.shipping-content-wrap a[href*="whatsapp"]:hover {
  opacity: 0.7;
}

.shipping-content-wrap a[href^="mailto:"]::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../img/Icons/email.svg');
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.shipping-content-wrap a[href^="tel:"]::before,
.shipping-content-wrap a[href*="wa.me"]::before,
.shipping-content-wrap a[href*="whatsapp"]::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../img/Icons/phone.svg');
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ─── RESPONSIVE LAYOUT ─── */
@media (max-width: 991px) {
  .shipping-container {
    flex-direction: column;
    min-height: auto;
  }
  
  .shipping-image-col,
  .shipping-content-col {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .shipping-image-col {
    height: 450px;
  }
  
  .shipping-content-col {
    padding: 60px 40px;
  }
}

@media (max-width: 767px) {
  .shipping-image-col {
    height: 350px;
  }
  
  .shipping-content-col {
    padding: 40px 24px;
  }
  
  .shipping-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .shipping-content-wrap p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
