/* Occasion Gifting Section (Split layout) */
.bg-beige-gifting {
  background-color: var(--bg-color);
}

.gifting-split-container {
  display: flex;
  width: 100%;
  min-height: 520px;
  background-color: var(--bg-color);
}

.gifting-left-col {
  width: 60%;
  position: relative;
  overflow: hidden;
}

.gifting-lifestyle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gifting-right-col {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px;
  background-color: var(--bg-color);
}

/* Owl fills the right column */
.gifting-owl {
  width: 100%;
  max-width: 320px;
}

.gift-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gift-img-card {
  width: 80%;
  max-width: 250px;
  aspect-ratio: 1;
  background-color: #f6f5f2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gift-img-card img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.gift-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.gift-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
}

.gift-explore-btn {
  display: inline-block;
  font-family: var(--font-cta);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 12px 35px;
  background-color: transparent;
  transition: var(--transition-fast);
}

.gift-explore-btn:hover {
  background-color: var(--btn-bg);
  color: #fff;
  border-color: var(--btn-bg);
}

/* Owl nav arrows */
.gifting-owl .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  border: none;
  font-size: 1.25rem;
  color: var(--text-color) !important;
  opacity: 0.6;
  transition: var(--transition-fast);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gifting-owl .owl-nav button:hover {
  opacity: 1 !important;
}

.gifting-owl .owl-nav button.owl-prev {
  left: 0;
}

.gifting-owl .owl-nav button.owl-next {
  right: 0;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .gifting-split-container {
    flex-direction: column;
  }

  .gifting-left-col {
    width: 100%;
    height: 400px;
  }

  .gifting-right-col {
    width: 100%;
    padding: 1rem 0;
  }

  .gifting-owl .owl-nav button {
    font-size: 1.125rem;
    width: 40px;
    height: 40px;
  }

  .gifting-owl {
    width: 100%;
    max-width: 100%;
  }
}
