/* Mysore Motifs & Traditional Decorators */

/* Saree Border Top/Bottom Styles */
.saree-border-dancer {
  height: 48px;
  width: 100%;
  background-image: url('../assets/images/dancer_saree_border.jpg');
  background-repeat: repeat-x;
  background-size: auto 48px;
  background-position: center;
  box-shadow: var(--shadow-sm);
}

.saree-border-floral {
  height: 40px;
  width: 100%;
  background-image: url('../assets/images/floral_saree_border.jpg');
  background-repeat: repeat-x;
  background-size: auto 40px;
  background-position: center;
  box-shadow: var(--shadow-sm);
}

/* Saree Border wrapper utility to add borders around pages or cards */
.card-saree-framed {
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
}

.card-saree-framed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-image: url('../assets/images/floral_saree_border.jpg');
  background-repeat: repeat-x;
  background-size: auto 12px;
}

.card-saree-framed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-image: url('../assets/images/floral_saree_border.jpg');
  background-repeat: repeat-x;
  background-size: auto 12px;
}

/* Motif Badges & Overlays */
.peacock-accent-right {
  position: absolute;
  right: var(--spacing-xl);
  top: -20px;
  width: 90px;
  height: 110px;
  background-image: url('../assets/images/peacock_motif.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /*opacity: 0.85;*/
  pointer-events: none;
}

.elephant-accent-left {
  position: absolute;
  left: var(--spacing-xl);
  bottom: var(--spacing-xl);
  width: 100px;
  height: 100px;
  background-image: url('../assets/images/elephant_motif.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /*opacity: 0.1;*/
  pointer-events: none;
}

/* Section Title Motifs */
.section-title-traditional {
  position: relative;
  display: inline-block;
  padding: 0 var(--spacing-2xl);
  margin-bottom: var(--spacing-lg);
}

.section-title-traditional::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../assets/images/elephant_motif.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.section-title-traditional::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../assets/images/peacock_motif.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Header Decorator Badge for pages */
.page-header-decorator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.page-header-decorator-img {
  height: 80px;
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
  .peacock-accent-right, .elephant-accent-left {
    display: none;
  }
}
