/*
Theme Name: Sound Healing
Description: A WordPress theme for sound healing and meditation businesses with Bootstrap 5.3 integration.
Version: 1.1.10
Author: Your Name
Text Domain: sound-healing
*/
/* === ROOT VARIABLES === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');


:root {
  --primary-color: #b8860b;
  --primary-dark: #8b6508;
  --secondary-color: #444;
  --background-cream: #fff5de;
  --text-dark: #231f20;
  --text-light: #777;
  --white: #ffffff;
  --border-light: #eee;
  --shadow-light: rgba(0,0,0,0.1);
  --shadow-medium: rgba(0,0,0,0.2);
  scroll-margin-top: 10px;

	
 /* EVENTS */
  --tec-color-background-events-bar-submit-button: #b8860b; /* tava primary krāsa */
  --tec-color-background-events-bar-submit-button-hover: #8b6508;
  --tec-color-accent-primary: #b8860b;
  --tec-color-text-primary: #231f20;
  --tec-color-text-secondary: #777;
  
  --font-primary: 'Montserrat', sans-serif;
  
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}


/* */

.masterclass-section {
    background: #e9cf9f;
    color: black;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
	
}

.masterclass-item {
    background: #F3E9D0;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s
        ease;
}

.masterclass-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.masterclass-item-1 {
    transition: all 0.4s ease;
}

.masterclass-item-1:hover {
    transform: translateY(-8px);
}

.masterclass-title {
    color: black;
    margin-bottom: 1.5rem;
    position: relative;
	    font-weight: 400;
    z-index: 2;
}

.masterclass-item p {
    color: var(--text-dark) !important;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 400 !important;
}

.masterclass-price {
    color: black;
    font-weight: 700;
    font-size: 1.1rem;
}

.masterclass-item h4 {
    color: black;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.masterclass-row {
    justify-content: flex-end !important;
}
/* */

/* === BASE STYLES === */
* {
  box-sizing: border-box;
}

.custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
}


body {
  font-family: Montserrat, sans-serif;
  color: var(--text-dark);
    background-color: #fffbf2;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
    font-family: Montserrat, sans-serif;
    color: var(--text-dark);
}

img {
  height: auto;
  border-radius: var(--border-radius-sm);
}

/* === BUTTONS === */
.btn {
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.btn-light {
  background: var(--white);
  color: var(--secondary-color);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* === HEADER === */
.site-header { background: rgba(255, 251, 242, 0.8); box-shadow: 0 2px 10px var(--shadow-light); position: sticky; top: 0; z-index: 1000; transition: var(--transition-normal); }

/* Scrolled header state */
.site-header.scrolled {
    background-color: rgba(255, 251, 242, 0.5);
  box-shadow: 0 8px 20px var(--shadow-light);
  backdrop-filter: saturate(180%) blur(8px);
}

/* Transparent header when over hero */
.site-header.transparent {
  background: transparent;
  box-shadow: none;
}
.site-header.transparent .navbar-nav .nav-link { color: #000 !important; font-weight: 500;}
.site-header.transparent .navbar-brand { color: #fff !important; }
.site-header.transparent.scrolled {
    background-color: rgba(255, 251, 242, 0.5);
  box-shadow: 0 8px 20px var(--shadow-light);
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--secondary-color) !important;
  font-weight: 400;
}

img.attachment-full.size-full {
    height: 150px;
}


.navbar-nav .nav-link {
  color: var(--secondary-color) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(184, 134, 11, 0.1);
}

.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(184, 134, 11, 0.15);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* === HERO SECTION === */


/* Decorative wave divider between sections */
.section-divider {
  position: relative;
  margin-top: -1px;
}
.section-divider svg {
  display: block;
  width: 100%;
}

/* Feature icons */
.feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px var(--shadow-light);
}
.feature .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,134,11,0.1);
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(184,134,11,0.2));
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 2rem;
}
.newsletter .form-control { border-radius: 30px; }
.newsletter .btn { border-radius: 30px; }

/* Footer decorative top */
.site-footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 12px;
  background: #e9cf9f;
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}


.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.0);
  z-index: 1;
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

/* === SECTIONS === */
.section-padding {
  padding: 2rem 0;
}


.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* === ABOUT SECTION === */
section #about {
    background: #fdfaf5;
}

.about-us-content {
    background: #fcf9f4;
}
.about-image {
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px var(--shadow-light);
  transition: var(--transition-slow);
}

.about-content {
  padding: 2rem;
}

/* === SERVICES === */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: var(--transition-normal);
  border: none;
  height: 100%;
}


.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: block;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
    font-family: Montserrat, sans-serif;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-duration {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-location {
  display: inline-block;
  background: rgba(184, 134, 11, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* === COURSES === */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.course-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.course-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.course-level {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.course-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.course-excerpt {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.course-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.course-duration {
  color: var(--text-light);
  font-size: 0.9rem;
}

.course-includes {
  background: rgba(184, 134, 11, 0.05);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: var(--transition-normal);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.blog-meta::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #e9cf9f;
    opacity: 0.5;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.blog-title a {
  color: black;
  text-decoration: none;
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  background: var(--background-cream);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 1rem;
  position: relative;
  box-shadow: 0 5px 20px var(--shadow-light);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary-color);
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

/* === CONTACT === */
.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px var(--shadow-light);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: #bb995f;
  margin-right: 1rem;
  width: 2rem;
  text-align: center;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px var(--shadow-light);
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 0.8rem 1rem;
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

/* === FOOTER === */
.site-footer {
  background: #96754a;
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-widget h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 0.5rem;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-normal);
    text-decoration: none;
}

/* Footer subtitle forced line-break styling */
.footer-widget .subtitle-two-line {
    margin: 0 0 0.75rem;
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: manual;
    color: rgba(255,255,255,0.9);
}
.footer-widget .subtitle-two-line .line1,
.footer-widget .subtitle-two-line .line2 {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.95rem;
}
.footer-widget .subtitle-two-line .line1 { opacity: 0.95; font-weight: 400; }
.footer-widget .subtitle-two-line .line2 { opacity: 0.95; font-weight: 400 !important; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* === PAGINATION === */
.pagination .page-link {
  color: var(--primary-color);
  border: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius-sm);
}

.pagination .page-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.price {
    font-size: 20px;
    font-weight: 800;
    color: #0b4a8a;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* === UTILITY CLASSES === */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-cream {
  background-color: #fffbf2 !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.shadow-custom {
  box-shadow: 0 5px 20px var(--shadow-light) !important;
}

.rounded-custom {
  border-radius: var(--border-radius) !important;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 991.98px) {
  .hero-section {
    height: 70vh;
    min-height: 300px;
    background-attachment: scroll;
    background-size: cover;
  }

  .section-padding {
    padding: 2rem 0;
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .course-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .course-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
}

  .hero-content {
    padding: 1rem;
  }

  .service-card,
  .course-content,
  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }
}

/* === WORDPRESS SPECIFIC === */
.wp-block-image {
  margin-bottom: 2rem;
}

.wp-block-quote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-light);
}

.wp-block-button .wp-block-button__link {
  background: transparent;
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--primary-color);
}

.alignwide {
  max-width: 1200px;
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === LOADING STATES === */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.masterclass-section {
  background: #e9cf9f;
}

.masterclass-section .masterclass-item.service-card {
  background: #F3E9D0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}


/* Responsive centered header logo */
.site-header .logo-container .navbar-brand { display: flex; align-items: center; justify-content: center; padding: 0; }
.site-header .logo-container .site-logo { display: block; height: auto; width: auto; max-height: 220px; max-width: 100%; }

@media (max-width: 1200px) {
  .site-header .logo-container .site-logo { max-height: 180px; }
}
@media (max-width: 992px) {
  .site-header .logo-container .site-logo { max-height: 140px; }
}
@media (max-width: 768px) {
  .site-header .logo-container .site-logo { max-height: 110px; }
}
@media (max-width: 576px) {
  .site-header .logo-container .site-logo { max-height: 80px; }
}

/* Centered text under header logo */
.site-header .logo-container .header-center-text { text-align: center; font-weight: 600; font-size: 1.1rem; line-height: 1.2; margin-top: 6px; color: inherit; }
@media (max-width: 992px) {
  .site-header .logo-container .header-center-text { font-size: 1rem; }
}
@media (max-width: 576px) {
  .site-header .logo-container .header-center-text { font-size: 0.95rem; }
}

/* Single post centered wider layout */
.single .single-wide-container { max-width: 1320px; width: 100%; margin-left: auto; margin-right: auto; }
.single .single-wide-container .row { justify-content: center; }

/* Single post date sidebar */
.single .post-date-aside { font-family: Montserrat, sans-serif; font-weight: 600; color: #000; white-space: nowrap; }
.single .date-col { text-align: center; }
@media (max-width: 991.98px) {
  .single .date-col { display: none !important; }
}

/* Shop page */
.bungas-container {
        background-color: #fffbf2;
    padding: 60px 20px;
    text-align: center;
    font-family: Montserrat, sans-serif;
    margin-top: 350px;
}

.bungas-container h1 {
    font-size: 48px;
    margin-bottom: 0.2em;
}

.bungas-container .author {
    margin-bottom: 1.5em;
    color: #231f20!important;
    font-weight: 400!important;
}

.bungas-description {
    max-width: 1350px;
    margin: 0 auto 3em;
    font-size: 1em;
    line-height: 1.6;
    color: #231f20;
    text-align: justify;
    font-weight: 400;
}

.bungas-grid {
    display: flex;
    justify-content: center; /* or space-between */
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1350px;
    margin: 0 auto;
}

.bungas-card {
    background: white;
    border: 1px solid #f1d9b2;
    border-radius: 10px;
    padding: 30px;
    gap: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-align: center;
}


.bungas-photo-row {
    justify-content: space-between;
    gap: 20px;
}

.bungas-photo {
    background: white;
    height: 160px;
    width: 260px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    border-radius: 6px;
    font-weight: 400;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .bungas-photo {
        flex: 0 0 100%;
    }
}


.bungas-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-order {
    display: inline-block;
    background-color: #f4e1b3;
    color: #231f20!important;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    border: 1px solid;
    border-color: #0000006b !important;
    margin-top: 10px;
    transition: background 0.3s;
    width: 60%;
}

.btn-order:hover {
    background-color: #e5cfa0;
}

/* Modal Overlay */
.shop-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

/* Modal Box */
.shop-modal-content {
    background-color: #fff;
    border: 3px solid #e9cf9f;
    padding: 20px 30px;
    width: 90%;
    max-width: 1200px;
    height: auto;
    max-height: 90vh;
    border-radius: 8px;
    position: relative;
    color: #231f20;
    font-weight: 400;
    overflow-y: auto;

}


/* Close Button */
.shop-close-btn {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* Images */
.shop-modal-images {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.shop-modal-images img {
    width: 49%;
    border-radius: 5px;
}

/* Disclaimer */
.shop-disclaimer {
    font-size: 1em;
    color: #c09b65;
    margin-top: 15px;
    text-align: left;
    font-weight: 400;
}

.modal-header-shop {
        background-color: #e6c89a;
        border-radius: 8px;
        padding: 10px 20px;
        display: block;
        font-weight: 400;
        font-size: 18px;
        color: #3a2a0d;
        text-align: center;
    margin-bottom: 15px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .shop-modal-content {
        width: 95%;
        max-width: 600px;
        overflow-y: auto;

    }

    .shop-modal-images {
        flex-direction: column;
    }

    .shop-modal-images img {
        width: 100%;
    }
}



/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .bungas-grid {
        flex-direction: column;
        gap: 15px;
    }

    .bungas-card {
        width: 100%;
    }
}

.bungas-title {
    color: black;
    font-weight: 400;
}

.bungas-second-title {
    color: black;
    font-size: 1.4em;
    font-weight: 400;
}


@media (min-width: 992px) {
  .site-header .navbar .navbar-nav { position: relative; }
  .site-header .navbar .logo-container {
    position: absolute;
    left: 49%;
    transform: translateX(-49%);
    z-index: 2;
  }
}

@media (min-width: 992px) {
  .single .sidebar, .single .sidebar .widget, .single .sidebar .widget-title, .single .sidebar a, .single .sidebar li { white-space: nowrap; }
  .single .sidebar .widget a { display: inline-block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; vertical-align: top; }
}

@media (min-width: 992px) {
  .single .section-padding .row { margin-right: calc(-0.75 * var(--bs-gutter-x)) !important; }
}

@media (min-width: 992px) {
  .single .container.section-padding { padding-right: 0 !important; }
  .single .container.section-padding > .row { margin-right: 0 !important; }
  .single .container.section-padding > .row > [class*="col-"]:last-child { padding-right: 0 !important; }
}


.blog-section .blog-container { text-align: center !important; }
.blog-section .blog-container h2 { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; transform: translateX(-2px); }