:root {
  --font-primary: "Be Vietnam";

  --primary-color: #0d6efd;

  --secondary-color: #6c757d;

  --success-color: #198754;

  --danger-color: #dc3545;

  --warning-color: #ffc107;

  --info-color: #0dcaf0;

  --light-color: #f8f9fa;

  --dark-color: #212529;

  --yellow-color: #f7a136;

  --star-color: #ffcb45;

  --gradient-blue: #1376cd;

  --link-color: #314e5b;

  --white: #fff;

  --border-color: #eee;

  --border-light-white: #efefef;

  --btn-gray-border: #efefef;

  --bg-color-secondary: #ffe6d8;
  --color-numbers: #9ea9ae;

  --transition: all 0.4s ease-in-out;
  --custom-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
}

/* Be Vietnam Regular */
@font-face {
  font-family: "Be Vietnam";
  src: url("../fonts/BeVietnam-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium */
@font-face {
  font-family: "Be Vietnam";
  src: url("../fonts/BeVietnam-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* SemiBold */
@font-face {
  font-family: "Be Vietnam";
  src: url("../fonts/BeVietnam-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Be Vietnam";
  src: url("../fonts/BeVietnam-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--font-primary);

  font-size: 18px;

  line-height: 1.6;

  color: var(--dark-color);
}

@media (min-width: 1400px) {
  .container {
    max-width: 1141px;
  }
}

.container-fluid {
  padding: 0 48px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: var(--font-primary);
  font-size: 18px;
}

h1 {
  font-size: clamp(40px, 3.3vw, 64px);

  font-weight: 700;

  line-height: 1.125;
}

h2 {
  font-size: clamp(32px, 2.8vw, 48px);

  font-weight: 700;

  line-height: 1.2;
}

h3 {
  font-size: 40px;

  font-weight: 700;

  line-height: 1.2;
}

h4 {
  font-size: clamp(24px, 1.5vw, 32px);

  font-weight: 700;

  line-height: 1.2;
}

h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* custom font sizes */

.fs-18 {
  font-size: 18px;
  line-height: 24px;
}

.fw-700 {
  font-weight: 700;
}

/* Global Button Styles */

.btn,
.button {
  display: inline-block;

  font-family: var(--font-primary);

  font-weight: 600;

  text-align: center;

  text-decoration: none;

  vertical-align: middle;

  cursor: pointer;

  user-select: none;

  border: none !important;

  font-size: clamp(18px, 1.4vw, 24px) !important;

  padding: 20px 32px !important;

  line-height: 1.1;

  border-radius: 32px !important;

  background-color: var(--yellow-color) !important;

  color: var(--dark-color);
}

/* Button Sizes */

/* .btn-lg {
  font-size: clamp(18px, 1.4vw, 24px) !important;

  padding: 20px 32px;

  line-height: 1.1;
} */

.btn-sm {
  font-size: 18px !important;

  padding: 0 32px !important;

  height: 56px;

  line-height: 56px;
}

.btn:hover {
  background-color: #e6932a !important;

  color: var(--dark-color);
}

.btn:focus {
  outline: 0;

  box-shadow: 0 0 0 0.25rem rgba(247, 161, 54, 0.25);
}

.btn:active {
  background-color: #d48524;

  color: var(--dark-color);
}

.btn-sm:focus,
.btn-sm:active,
.btn-sm:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Button Variants */

.btn-circle {
  width: 64px;

  height: 56px;

  padding: 0 !important;

  border-radius: 50%;

  display: inline-flex;

  align-items: center;

  justify-content: center;
}

.btn-rounded {
  border-radius: 2rem;
}

.shadow {
  box-shadow: var(--custom-shadow) !important;
}

/* spaces */

.section-space-xl {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-space {
  padding-top: 96px;
  padding-bottom: 96px;
}

.gap-32 {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem !important;
}

.mb-56 {
  margin-bottom: 56px;
}

/* Header Container Styles */
.site-header {
  box-shadow: var(--custom-shadow);
}

.site-header .container-fluid {
  padding-top: 24px;

  padding-bottom: 24px;

  padding-left: 48px;

  padding-right: 48px;
}

.site-header .navbar {
  padding: 0;
  /* overflow: hidden; */
}

.site-header .navbar-brand-wrapper {
  flex-shrink: 0;
}

.site-header .header-actions {
  flex-shrink: 0;
}

.site-header .header-actions .btn-circle {
  position: relative;
}

.site-header .header-actions .btn-circle svg {
  width: 20px;

  height: 20px;
}

.site-header .header-actions .btn-circle .badge {
  font-size: 0.7rem;

  padding: 0.25em 0.5em;
}

.header-user-btn {
  display: inline-flex;

  align-items: center;

  gap: 0.2rem;
}

.header-user-btn .user-avatar-img {
  width: 24px;

  height: 24px;

  border-radius: 50%;

  object-fit: cover;
}

.header-user-btn .user-caret svg {
  width: 16px;

  height: 16px;
}

.header-user-btn .user-caret img {
  width: 24px;

  height: 24px;

  display: block;
}

/* Hide Bootstrap default dropdown caret on the user button */

.header-user-btn.dropdown-toggle::after {
  display: none !important;

  content: none !important;
}

.header-user .dropdown-menu {
  min-width: 180px;

  border-radius: 0.5rem;

  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow: var(--custom-shadow);
  right: 0;
}

.header-user .dropdown-item {
  font-family: var(--font-primary);

  font-size: 15px;

  padding: 0.65rem 1rem;

  color: var(--dark-color);
}

.header-user .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

/* Header button icon/text behavior (desktop header actions) */
.header-actions .header-btn-icon {
  display: none;
  margin-right: 0;
}

.header-actions .header-btn-icon img {
  width: 30px;
  height: 30px;
  display: block;
  filter: brightness(0) saturate(100%)
}

/* Show dropdown on hover for desktop */

@media (min-width: 992px) {
  .header-user.dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Navigation Menu Styles */

.site-header .navbar-nav {
  text-transform: uppercase;

  font-weight: 500;

  gap: 2rem;

  align-items: center;
}

/* Responsive Header */

@media (max-width: 991.98px) {
  .site-header .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header .header-actions {
    margin-top: 1rem;

    width: 100%;

    justify-content: flex-start;
  }

  .site-header .navbar-collapse {
    margin-top: 1rem;
  }
}

/* WordPress Core Alignment */

.alignleft {
  float: left;

  margin-right: 1.5rem;

  margin-bottom: 1.5rem;
}

.alignright {
  float: right;

  margin-left: 1.5rem;

  margin-bottom: 1.5rem;
}

.aligncenter {
  display: block;

  margin-left: auto;

  margin-right: auto;

  margin-bottom: 1.5rem;
}

.alignwide {
  max-width: 1200px;

  margin-left: auto;

  margin-right: auto;
}

.alignfull {
  width: 100vw;

  max-width: 100vw;

  margin-left: calc(50% - 50vw);

  margin-right: calc(50% - 50vw);
}

/* Responsive Images */

img {
  max-width: 100%;

  height: auto;
}

/* WordPress Block Editor Styles */

.wp-block-group {
  margin-bottom: 2rem;
}

/* Accessibility */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);

  position: absolute !important;

  height: 1px;

  width: 1px;

  overflow: hidden;
}

.screen-reader-text:focus {
  border-radius: 3px;

  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);

  clip: auto !important;

  display: block;

  font-size: 14px;

  font-weight: bold;

  height: auto;

  left: 5px;

  line-height: normal;

  padding: 15px 23px 14px;

  text-decoration: none;

  top: 5px;

  width: auto;

  z-index: 100000;
}

.site-header .navbar-nav li a {
  color: black;

  text-decoration: none;

  font-weight: 600;

  font-size: 18px;

  line-height: 24px;
  padding: 24px 0;
}

/* Chevron for menu items with submenu (desktop) */
#primary-menu .menu-item-has-children > a {
  position: relative;
  display: inline-flex;
  align-items: center !important;
  gap: 4px;
  padding-right: 18px;
}

#primary-menu .menu-item-has-children > a::after {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23111827' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease;
}

#primary-menu .menu-item-has-children:hover > a::after,
#primary-menu .menu-item-has-children:focus-within > a::after {
  transform: rotate(180deg);
}

/* Mega Menu */
#primary-menu .sub-menu {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  position: absolute;
  background-color: var(--white);
  width: 275px;
  padding: 0;
}

#primary-menu .mega-menu .sub-menu {
  width: 807px;
}

#primary-menu>ul .menu-item-has-children .sub-menu {
  padding: 24px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: var(--custom-shadow);
  z-index: 9;
  list-style: none;
}

#primary-menu .menu-item-has-children:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

.megamenu-wrapper .nav-pills {
  width: 45%;
}

.megamenu-wrapper .tab-content {
  width: 55%;
}

.site-header .navbar-nav .nav-link {
  position: relative;
  color: var(--dark-color);
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  background: transparent;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
}

.site-header .navbar-nav .nav-link:last-child {
  border-bottom: 0;
}

.site-header .navbar-nav .nav-link.active,
.site-header .navbar-nav .nav-link:hover {
  font-weight: 600;
}

.site-header .navbar-nav .nav-link.active:before,
.site-header .navbar-nav .nav-link:hover:after {
  content: "";
  position: absolute;
  background-image: url("../images/icons/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 8px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.megamenu-card {
  height: 128px;
  border-radius: 16px;
  padding: 16px;
  background-size: cover;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.megamenu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  z-index: 1;
}


.megamenu-card p {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 22px;
  position: relative;
  z-index: 2;
}

/* ============================================
   Blog Listing Shortcode Styles
   ============================================ */

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

/* Post Card Styles (same as insights block) */
.insights-post-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--custom-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.insights-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.post-card-image {
  width: 100%;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.post-image {
  width: 100%;
  height: 100%;
  max-height: 180px;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.post-card-content {
  padding: 0 25px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 20px;
  color: var(--link-color);
}

.post-author,
.post-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-meta-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
}

.post-author .post-meta-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/User.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.post-date .post-meta-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/Calendar.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.post-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.post-card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-card-title a:hover {
  color: var(--yellow-color);
  text-decoration: none;
}

.post-card-excerpt {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
  position: relative;
}

.post-card-link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/arrow-right-readmore.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.post-card-link:hover::after {
  transform: rotate(-45deg);
}

.post-card-link:hover {
  text-decoration: none;
  color: var(--yellow-color);
  transition: transform 0.3s ease;
}

.no-posts-message {
  text-align: center;
  color: #666666;
  font-size: 18px;
  padding: 40px 0;
}

/* Blog Pagination Styles */
.blog-pagination {
  margin-top: 0;
  display: flex;
  justify-content: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.pagination-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--link-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.pagination-link:hover {
  color: var(--yellow-color);
  text-decoration: none;
}

.pagination-link.disabled {
  color: #999999;
  cursor: not-allowed;
  opacity: 0.5;
}

.pagination-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  color: #999999;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pagination-number:hover {
  color: var(--link-color);
  background-color: #f5f5f5;
  text-decoration: none;
}

.pagination-number.active {
  color: #000000;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  cursor: default;
}

.pagination-ellipsis {
  color: #999999;
  padding: 0 4px;
  font-size: 16px;
}

/* Responsive adjustments for blog listing */
@media (max-width: 992px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pagination-wrapper {
    gap: 12px;
  }

  .pagination-number {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .post-card-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .blog-pagination {
    margin-top: 40px;
  }

  .pagination-wrapper {
    gap: 8px;
  }

  .pagination-link {
    font-size: 14px;
    gap: 6px;
  }

  .pagination-link svg {
    width: 18px;
    height: 18px;
  }

  .pagination-number {
    min-width: 32px;
    height: 32px;
    font-size: 14px;
    padding: 0 8px;
  }

  .pagination-ellipsis {
    font-size: 14px;
  }

  .post-card-image {
    padding: 20px;
  }

  .post-card-content {
    padding: 0 20px 20px;
  }

  .post-card-title {
    font-size: 18px;
  }

  .post-card-excerpt {
    font-size: 15px;
  }

  .post-card-link {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .post-card-content {
    padding: 0 16px 16px;
  }

  .post-card-title {
    font-size: 16px;
  }

  .post-card-excerpt {
    font-size: 14px;
  }

  .post-card-link {
    font-size: 15px;
  }
}

/* ============================================
   Instructors Listing Page CSS
   ============================================ */

/* Instructor Card Styles */
.instructor-card-listing {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card-listing:hover {
  border-radius: 0px;
  position: relative;
  /* needed for pseudo-element overlay */
  overflow: hidden;
  /* ensure overlay stays inside */
}

.instructor-image-listing {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border-radius: 48px;
  background-color: #f5f5f5;
}

.instructor-card-listing:hover .instructor-image-listing {
  border-radius: 0px;
}

.instructor-img-listing {
  width: 100%;
  height: 100%;
  max-height: 478px;
  min-height: 478px;
  object-fit: cover;
  border-radius: 48px;
  transition: transform 0.3s ease;
  /* removed filter blur here */
  display: block;
}

.instructor-card-listing:hover .instructor-img-listing {
  transform: scale(1.05);
}

.instructor-image-listing:hover::after {
  opacity: 1;
  border-radius: 0px;
}

.instructor-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(49, 78, 91, 0.48);
  /* #314E5B with 48% opacity */
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.instructor-card-listing:hover .instructor-hover-overlay {
  opacity: 1;
  border-radius: 0px;
}

.instructor-view-details-btn {
  background-color: var(--yellow-color);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
  --wp-admin-border-width-focus: none;
}

.instructor-view-details-btn:hover {
  transform: translateY(-2px);
}

.instructor-content-listing {
  display: flex;
  flex-direction: row;
  text-align: start;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.instructor-content-inner-listing {
  flex: 1;
}

.instructor-social-links-listing {
  display: flex;
  align-items: center;
  gap: 4px;
}

.instructor-social-link-listing {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  padding: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.instructor-social-link-listing img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Bootstrap Modal Styles */
.instructor-modal .modal-dialog {
  max-width: 1140px;
}

.instructor-modal-content {
  border-radius: 24px;
  border: none;
  overflow: hidden;
  position: relative;
}

.instructor-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  opacity: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  border: none;
}

.instructor-modal-close:hover {
  background-color: #ffffff;
  opacity: 1;
}

.instructor-modal-body {
  padding: 32px;
}

.instructor-modal-image {
  width: 100%;
  height: 100%;
  min-height: 478px;
  max-height: 478px;
  max-width: 360px;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
}

.instructor-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.instructor-modal-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.instructor-modal-name {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.instructor-modal-biography {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 32px 0;
  flex: 1;
}

.instructor-modal-biography p {
  margin: 0 0 16px 0;
}

.instructor-modal-biography p:last-child {
  margin-bottom: 0;
}

.instructor-modal-content-text {
  margin: 0 0 16px 0;
}

.instructor-modal-content-text p {
  margin: 0 0 16px 0;
}

.instructor-modal-content-text p:last-child {
  margin-bottom: 0;
}

.instructor-modal-social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.instructor-modal-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  padding: 12px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.instructor-modal-social-link:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.instructor-modal-social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Responsive adjustments for instructors listing */
@media (max-width: 992px) {
  .instructor-modal-image {
    min-height: 400px;
  }

  .instructor-modal-info {
    padding: 32px;
  }

  .instructor-modal-name {
    font-size: 28px;
  }

  .instructor-img-listing {
    max-height: 100%;
  }
}

@media (max-width: 768px) {
  .instructor-modal .modal-dialog {
    max-width: 95%;
    margin: 20px auto;
  }

  .instructor-modal-image {
    min-height: 300px;
  }

  .instructor-modal-info {
    padding: 8px;
    min-height: auto;
  }

  .instructor-modal-name {
    font-size: 24px;
  }

  .instructor-modal-biography {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .instructor-modal-body .row {
    flex-direction: column;
  }

  .instructor-modal-image {
    min-height: 300px;
  }
}

/* Modal backdrop */
.modal-backdrop.show {
  background-color: rgba(49,
      78,
      91,
      0.48) !important;
  /* #314E5B at 48% opacity */
  backdrop-filter: blur(24px);
}

/* Modal content */
.instructor-modal-content {
  border-radius: 16px;
  /* adjust to match your design */
  background-color: #ffffff;
  /* modal background */
  box-shadow: var(--custom-shadow);
  /* Figma drop shadow */
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: scale modal slightly on open for effect */
.instructor-modal.show .instructor-modal-content {
  transform: scale(1.02);
}

/* ============================================
   Events Listing Page CSS
   ============================================ */
.events-listing-section {
  padding: 80px 0;
}

.events-filter-bar {
  margin-bottom: 16px;
}

.events-filter-range {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
  width: 100%;
}

.events-filter-range label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
}

.events-filter-range input[type="date"] {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 16px;
}

.events-filter-apply {
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 6px 16px;
  cursor: pointer;
  font-weight: 500;
}

.events-filter-today {
  background: #f6f6f6;
  border-radius: 32px;
  padding: 6px 16px;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.events-month-heading {
  margin: 32px 0;
  font-size: 18px;
  font-weight: 500;
  color: #2f3b4c;
  display: flex;
  align-items: center;
  gap: 48px;
  text-transform: capitalize;
}

.events-month-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.events-listing-wrapper {
  display: flex;
  flex-direction: column;
}

.event-card-listing {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #eef1f5;
}

.event-card-inner {
  display: grid;
  grid-template-columns: 87px 232px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 24px;
}

.event-date-card {
  background: #314e5b;
  color: #fff;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  gap: 12px;
  border-radius: 12px;
}

.event-date-month {
  font-size: 32px;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.event-date-day {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.event-date-time {
  font-size: 18px;
  margin-top: 0;
  opacity: 0.85;
}

.event-card-thumb {
  width: 100%;
  height: 100%;
  min-height: 232px;
  overflow: hidden;
  border-radius: 16px;
}

.event-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-content {
  padding: 22px 22px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-card-location {
  font-size: 16px;
  color: #314e5b;
  position: relative;
  padding-left: 22px;
}

.event-card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.event-card-title a {
  color: #0f172a;
  text-decoration: none;
}

.event-card-title a:hover {
  text-decoration: none;
}

.event-card-time {
  font-size: 16px;
  color: #314e5b;
  position: relative;
  padding-left: 22px;
}

.event-card-excerpt {
  margin: 0;
  line-height: 1.5;
}

.event-card-link {
  margin-top: auto;
  color: #314e5b;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.event-card-link:hover {
  text-decoration: none;
}

.events-filter-range input[type="date"] {
  border: 1px solid #e0e0e0;
  border-radius: 32px;
  padding: 8px 36px 8px 10px;
  font-size: 16px;
  position: relative;
  background-image: url('../images/icons/Calendar.svg');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
}

/* Hide native calendar icon in different browsers */
.events-filter-range input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 36px;
  height: 100%;
  cursor: pointer;
}

.events-filter-range input[type="date"]::-webkit-inner-spin-button,
.events-filter-range input[type="date"]::-webkit-clear-button {
  display: none;
  -webkit-appearance: none;
}

/* For Firefox */
.events-filter-range input[type="date"] {
  -moz-appearance: textfield;
}

.events-filter-range input[type="date"]::-moz-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 36px;
  height: 100%;
  cursor: pointer;
}

/* Icons for event meta */
.event-card-location::before,
.event-card-time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.event-card-location::before {
  background-image: url("../images/icons/map.svg");
}

.event-card-time::before {
  background-image: url("../images/icons/clock.svg");
}

/* Arrow on read more */
.event-card-link::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/arrow-right-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

@media (max-width: 992px) {
  .event-card-thumb {
    min-height: 230px;
    max-height: 230px;
  }
}

@media (max-width: 768px) {
  .events-listing-section {
    padding: 60px 0;
  }

  .event-card-inner {
    grid-template-columns: 1fr;
  }

  .event-date-card {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    writing-mode: horizontal-tb;
    border-radius: 0;
    border-radius: 12px;
    align-items: baseline;
  }

  .event-card-content {
    padding: 16px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .event-card-excerpt {
    display: none;
  }
}

article.event-card-listing+article.event-card-listing {
  margin-top: 32px !important;
}

a.event-card-link:hover {
  color: #314e5b;
}

/* //single blog page styling start  */

.single-blog-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.single-blog-banner .page-banner-container {
  position: relative;
  width: 100%;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.single-blog-banner .page-banner-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.single-blog-banner .page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.single-blog-banner .page-banner-content h1 {
  line-height: 1.3;
  margin-bottom: 32px;
}

.single-blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}

.single-blog-author,
.single-blog-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}

.single-meta-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
}

.single-blog-author .single-meta-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/User.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}

.single-blog-date .single-meta-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/Calendar.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}

section.single-post {
  padding: 64px 0;
}

h4.wp-block-heading {
  margin-top: 48px;
}

/* single product page gift card template styling start */

.product-type-gift-card .woocommerce-product-gallery__image a img, .woocommerce-product-gallery__image a {
  object-fit: contain;
}
.ywgc-main-form-preview-container {
  box-shadow: none;
}
.product-type-gift-card .woocommerce-product-gallery__image a img, .woocommerce-product-gallery__image a {
height: auto !important; 
}
.product-type-gift-card .woocommerce-product-gallery__image {
  border-radius: 16px;
  height: auto;
}
.product-type-gift-card  .product-price {
  display: none !important;
}

.product-type-gift-card span.review-count {
  display: none;
}

form.gift-cards_form.cart > h3, .gift-card-content-editor.step-appearance {
  display: none;
}

.ywgc-single-recipient .ywgc-recipient-name, .ywgc-recipient-email, .ywgc-sender-name, .ywgc-message {
  display: flex;
  gap: 32px;
}
.gift-card-content-editor.step-content input, textarea#ywgc-edit-message {
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.ywgc-single-recipient .ywgc-recipient-name > :first-child,
.ywgc-single-recipient .ywgc-recipient-email > :first-child,
.ywgc-single-recipient .ywgc-sender-name > :first-child,
.ywgc-single-recipient .ywgc-message > :first-child {
  flex: 0 0 80px;
  justify-content: flex-start;
  display: flex;
}
.ywgc-sender-name > :first-child {
flex: 0 0 80px;
  justify-content: flex-start !important;
  display: flex !important;
}
.product-type-gift-card .custom-reviews {
  display: none;
}

.product-type-gift-card .woocommerce-product-gallery__image a {
  height: auto !important;
  object-fit: cover;
}

.product-type-gift-card .social-feed-section {
padding-top: 0px !important;
}

/* ends here gift card template styling end  */

/* shop page css start here */

.woocommerce-shop h1.mb-lg-32.text-white > p {
  font-size: clamp(40px, 3.3vw, 64px);
}
.page-banner-content p {
  color: white;
}
.woocommerce-shop .testimonals.section-space-xl {
  padding: 0;
}
section.page-banner-section + p {
  display: none;
}
.woocommerce-shop .faqs-section {
  padding-top: 0;
}
.quantity::before {
  content: "Quantity:";
}
.sold-individually .quantity::before {
  content: "";
  display: none;
}

/* Event-specific meta in banner */
.single-event-location,
.single-event-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  margin-bottom: 16px;
}

.single-event-time {
  margin-top: -4px;
}

.single-event-location .single-meta-icon,
.single-event-time .single-meta-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.single-event-location .single-meta-icon.location::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/map.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}

.single-event-time .single-meta-icon.time::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/clock.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}

.post-content figure.wp-block-image {
  margin-bottom: 48px;
}

/* Woocommerce */
.btn .badge {
  top: 13px !important;
  left: 47px !important;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
  color: #000;
  font-weight: 400;
}

.woocommerce-breadcrumb {
  padding-top: 128px !important;
}

.custom-reviews {
  max-width: 100%;
}

.review-item {
  padding: 16px 0;
}

.review-content p {
  margin-bottom: 0;
}

.review-avatar img {
  border-radius: 50%;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.review-rating {
  margin-left: auto;
}

.review-content {
  font-size: 15px;
  line-height: 1.6;
}

.average-rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 30px;
}

.average-stars .star-rating {
  margin: 0;
}

.average-score strong {
  margin-right: 6px;
}

.woocommerce .star-rating::before {
  color: #ccc;
}

.woocommerce .star-rating span {
  color: var(--yellow-color);
  padding-top: 1rem;
}

/* woocommerce review form Styling */
.review-form {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px;
  max-width: 700px;
  margin: 40px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
}

.review-form #reply-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 24px;
}

.review-form #cancel-comment-reply-link {
  font-size: 0.875rem;
  color: var(--yellow-color);
  margin-left: 8px;
  text-decoration: none;
}

.review-form #cancel-comment-reply-link:hover {
  text-decoration: underline;
}

.review-form .logged-in-as {
  font-size: 0.875rem;
  margin-bottom: 16px;
  color: #555;
}

.review-form .logged-in-as a {
  color: var(--yellow-color);
  text-decoration: none;
}

.review-form .logged-in-as a:hover {
  text-decoration: underline;
}

.review-form .required-field-message {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #ff4c00;
}

.review-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form input[type="url"],
.review-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form input[type="url"]:focus,
.review-form textarea:focus {
  border-color: var(--yellow-color);
  box-shadow: 0 0 0 3px rgba(255, 197, 0, 0.25);
  outline: none;
}

.review-form .comment-form-cookies-consent {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.review-form .comment-form-cookies-consent input[type="checkbox"] {
  margin-right: 8px;
  accent-color: var(--yellow-color);
  height: 18px;
  width: 18px;
}

.review-form .form-submit .submit {
  background-color: var(--yellow-color) !important;
  color: black !important;
  font-weight: 600 !important;
  padding: 16px 32px !important;
  font-size: clamp(18px, 1.4vw, 24px) !important;
  line-height: 1.2 !important;
  border-radius: 32px !important;
  margin-top: 16px !important;
  transition: all 0.3s ease !important;
}

p.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
}


@media (max-width: 768px) {
  .review-form {
    padding: 24px;
    margin: 20px;
  }
}

/* ============================================
   WooCommerce Cart Page CSS
   ============================================ */

.woocommerce-cart-page {
  padding: 128px 0;
}

.cart-page-header {
  margin-bottom: 56px;
}

.cart-table-wrapper {
  margin-bottom: 32px;
}

.cart-table-header {
  display: grid;
  grid-template-columns: 2fr 80px 1fr 1fr;
  gap: 20px;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
}

.cart-header-col {
  text-align: left;
}

.cart-header-qty {
  text-align: center;
}

.cart-header-price,
.cart-header-action {
  text-align: right;
}

.cart-table-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin-bottom: 24px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 2fr 80px 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 0 0 24px 0;
}

.cart-item-product {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-image {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cart-item-name {
  flex: 1;
}

.cart-item-name a {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
}

.cart-item-name a:hover {
  color: var(--yellow-color);
  text-decoration: none;
}

.cart-item-qty {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-item-price {
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.cart-item-action {
  text-align: right;
}

.cart-item-action a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  color: #e23545;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  font-size: 18px; /* control × size */
  line-height: 1;
}

.cart-item-action a.remove:hover {
  background-color: var(--yellow-color);
  transform: scale(1.1);
  color: var(--black);
  text-decoration: none;
}

.cart-item-action a.remove {
  font-size: 0;
  position: relative;
}

.cart-item-action a.remove::before,
.cart-item-action a.remove::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.cart-item-action a.remove::before {
  transform: rotate(45deg);
}

.cart-item-action a.remove::after {
  transform: rotate(-45deg);
}

.cart-totals-wrapper {
  margin-bottom: 32px;
}

.cart-totals-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin-bottom: 24px;
}

.cart-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  width: 50%;
  margin-left: auto;
}

.cart-totals-label {
  font-weight: 600;
  color: #000000;
}

.cart-totals-amount {
  font-weight: 700;
  color: #000000;
  font-size: 20px;
}

.cart-checkout-wrapper {
  display: flex;
  justify-content: flex-end;
}

.cart-checkout-btn {
  padding: 20px 64px !important;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-empty-message {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty-message p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 24px;
}
.cart-item-action {
  text-align: right;
  display: ruby;
}

/* Responsive Design */
@media (max-width: 768px) {
  .woocommerce-cart-page {
    padding: 48px 0;
  }

  .cart-table-header {
    grid-template-columns: 1fr;
    display: none;
  }

  .cart-item-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px;
    background-color: #f9f9f9;
    border-radius: 12px;
    position: relative;
  }

  .cart-item-price,
  .cart-item-action {
    text-align: right;
  }

  .cart-totals-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cart-checkout-wrapper {
    justify-content: center;
  }

  .cart-checkout-btn {
    width: 100%;
    text-align: center;
    padding: 14px 32px;
  }

  .cart-item-action {
    position: absolute;
    top: 13px;
    right: 13px;
  }

  .cart-item-qty {
    justify-content: end;
  }
  .cart-item-qty::before {
    content: "x";
  }
}
@media (max-width: 479px) {
  .cart-item-action {
    right: 0;
  }
}

/* cart page css ends here */

/* checkout page css starts here */
.woocommerce-checkout-review-order a.woocommerce-remove-coupon {
  display: none;
}

div.woocommerce .fc-expansible-form-section .expansible-section__toggle-plus {
  font-size: 18px;
}
button.woocommerce-Button {
  color: black !important;
}
button.woocommerce-Button:hover {
  background-color: #e6932a !important;
}

h2.woocommerce-order-details__title, .woocommerce-order-received h1, .woocommerce-order-received h2.woocommerce-column__title{
  font-size: 32px;
  margin-bottom: 24px;
}
.woocommerce ul.order_details {
  padding-left: 0;
}

div#woocommerce-billing-fields__field-wrapper {
  padding-bottom: 0;
}
p#billing_phone_field {
  width: 100% !important;
}
@media (min-width: 1000px) {
  body.woocommerce-checkout div.woocommerce .fc-wrapper .fc-checkout-order-review-title {
      font-size: 20px !important;
      text-transform: capitalize;
  }
}
.fc-contact-login {
  display: none;
}
span#select2-billing_country-container {
  border-radius: 32px !important;
}
span.select2-selection.select2-selection--single {
  border-radius: 32px !important;
}
div.woocommerce form .form-row .select2-selection, div.woocommerce form .form-row input[type=date], div.woocommerce form .form-row input[type=email], input[type=text], input#ywgc-recipient-email {
  padding: 0 16px !important;
  outline: none !important;
  box-shadow: none !important;
}
textarea#ywgc-edit-message {
  padding: 12px 16px !important;
}
.fc-wrapper .fc-coupon_code__collapsible input#coupon_code:focus {
  outline: 0 !important;
}
button.button.ywgc_apply_gift_card_button {
  font-size: 18px !important;
  font-weight: 600;
  color: rgba(10, 13, 51, .6) !important;
}
input#giftcard_code {
  width: 100%;
  padding: 12px 20px !important;
  border-radius: 32px;
}
.fc-wrapper .fc-coupon_code__collapsible input#coupon_code {
  outline: none !important;
  box-shadow: none !important;
}
.fc-wrapper .fc-coupon_code__collapsible .fc-coupon-code__apply {
  font-size: 18px !important;
  font-weight: 600;
}
  .ywgc_have_code .woocommerce-info {
  background: #eff6ff;
  border-color: #bfdbfe;
  border-color: #3b82f6;
  color: #1e40af;
  padding: 14px 52px;
  border: 2px solid;
  border-radius: 6px;
}
 .woocommerce-cart .ywgc_have_code {
 display: none;
}
.fc-checkout-order-review__actions-mobile {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .single-blog-banner .page-banner-container {
    min-height: 400px;
    padding: 60px 0;
  }

  .single-blog-banner .page-banner-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .single-blog-meta {
    font-size: 15px;
    gap: 18px;
  }

  section.single-post {
    padding: 32px 0;
  }
}

@media (max-width: 768px) {
  .single-blog-banner .page-banner-container {
    min-height: 350px;
    padding: 40px 0;
  }

  .single-blog-banner .page-banner-content h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .single-blog-meta {
    font-size: 14px;
    gap: 16px;
    flex-direction: column;
  }

  .single-blog-author,
  .single-blog-date {
    gap: 6px;
  }

  .single-meta-icon {
    width: 16px;
    height: 16px;
  }

  .post-content figure.wp-block-image {
    margin-bottom: 32px;
  }
}

@media (min-width: 992px) {
  .post-content {
    max-width: 752px;
    margin: 0 auto;
  }
  .woocommerce-cart .ywgc_have_code, .woocommerce-cart .ywgc_have_code {
    width: 50%;
    margin: 0 auto;
}
}


/* single blog page styling end  */

.checkout-btn {
  display: none !important;
}

.checkout-btn {
  position: relative;
  padding: 0 32px 0 56px !important;
  display: inline-flex;
  align-items: center;
}

.checkout-btn::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/lock.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


/* Custom Login Page Styles */
.custom-login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 128px 20px;
}

.woocommerce-account-wrapper .woocommerce form.login, form.woocommerce-ResetPassword.lost_reset_password {
  max-width: 750px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--custom-shadow);
  margin: 0 auto;
}

form.woocommerce-form.woocommerce-form-login.login::before {
  content: "Login";
  display: block;          /* makes it occupy full width */
  font-size: 48px;
  font-weight: 700;
  line-height: 1;          /* ensures height is correct */
  margin-bottom: 24px;     /* spacing below */
}

.woocommerce-notices-wrapper + h2 {
  display: none;
}

.woocommerce-form-login__rememberme {
  display: none !important;
}

.woocommerce-form-login__submit {
  margin-bottom: 24px !important;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  right: .9em;
  transform: translateY(-93%);
}

.custom-login-logo {
  margin-bottom: 32px;
}

.custom-login-logo img {
  max-height: 80px;
  width: auto;
  display: block;
}

.custom-login-logo a {
  display: inline-block;
}

.custom-login-card .woocommerce-form-login {
  margin-top: 0;
}

.custom-login-card .form-row-wide {
  margin-bottom: 24px;
}

.custom-login-card .form-row-wide label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.custom-login-btn {
  color: black !important;
}

.woocommerce form .form-row .input-text {
  height: 44px;
  border-radius: 32px;
  border-color: #E0E0E0;
  margin-bottom: 16px;
  font-size: 16px !important;
}

.custom-login-card .form-row-wide .required {
  color: var(--yellow-color);
  margin-left: 4px;
}

.custom-login-card .form-control,
.custom-login-card .woocommerce-Input--text {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: none;
  border-radius: 32px;
  background: #fff;
  height: 44px;
  line-height: 44px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
}

.custom-login-card .form-control:focus,
.custom-login-card .woocommerce-Input--text:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.custom-login-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  background: var(--yellow-color);
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-top: 8px;
}

.custom-login-btn:hover {
  background: var(--yellow-color);
  opacity: 0.9;
  transform: translateY(-1px);
}

.custom-login-btn:active {
  transform: translateY(0);
}

.custom-login-signup {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #333;
}

.custom-login-signup .signup-link {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

.custom-login-signup .signup-link:hover {
  color: var(--yellow-color);
  text-decoration: underline;
}

/* Hide remember me checkbox if it exists */
.custom-login-card .woocommerce-form-login__rememberme {
  display: none;
}

/* Hide lost password link */
/* .custom-login-card .woocommerce-LostPassword {
  display: none;
} */

.woocommerce-account h1.entry-title {
  display: none;
}

.woocommerce form.login {
  padding: 0;
  border: 0;
  margin: 0;
}

div#customer_login {
  align-items: center;
}

.woocommerce-form-register__submit {
  color: black !important;
}

.woocommerce form.register {
  border: 0px;
  padding: 20px;
  margin: 2em 0;
  text-align: left;
  border-radius: 32px;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--custom-shadow);
}

.woocommerce form .form-row label {
  line-height: 2;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}


/* My Account Page Wrapper */
.page-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-banner-container {
  position: relative;
  width: 100%;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.page-banner-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

span#account_display_name_description {
  font-size: 14px;
}

.woocommerce-Address-title h2 {
  font-size: 24px;
}

.woocommerce-Address-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.woocommerce-account .addresses .title .edit {
  font-size: 16px;
}

.woocommerce-address-fields .select2-container .select2-selection {
  border-radius: 32px !important;
  border-color: #E0E0E0 !important;
}


.woocommerce-address-fields .select2-container .select2-selection--single .select2-selection__rendered {

  font-size: 16px !important;
}

/* Custom Account Tabs Navigation */

.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #e0e0e0;
}

.woocommerce-MyAccount-navigation ul li {
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 14px 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
  position: relative;
}

a.woocommerce-button {
  padding: 12px !important;
  font-size: 14px !important;
  background-color: var(--link-color) !important;
  color: white !important;
  font-weight: 400 !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: right;
  width: 80%;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: left;
  width: 15%;
  margin: 40px 0;
  padding: 0;
}

.account-tab-item a:hover {
  color: #333;
  background: #f9f9f9;
  border-radius: 8px 8px 0 0;
}

.account-tab-item.is-active a,
.account-tab-item.active a {
  color: var(--yellow-color);
  border-bottom-color: var(--yellow-color);
  background: transparent;
}

.account-tab-item.is-active a:hover,
.account-tab-item.active a:hover {
  color: var(--yellow-color);
  background: transparent;
}

.woocommerce-orders-table__cell-order-actions {
  display: flex;
  gap: 6px;
}

/* My Account Content */
.woocommerce-MyAccount-content {
  margin-top: 40px;
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--custom-shadow);
}


/*  Empty Cart Message Styles */

.woocommerce .woocommerce-empty-cart-wrapper,
.woocommerce-empty-cart-wrapper {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

/* .woocommerce .woocommerce-notices-wrapper,
.woocommerce .wc-empty-cart-message {
  display: none;
} */

.empty-cart-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.empty-cart-icon svg {
  width: 120px;
  height: 120px;
  display: block;
}

.empty-cart-title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.empty-cart-subtitle {
  font-size: 18px;
  color: #000;
  margin: 0 0 40px 0;
  line-height: 1.5;
  font-weight: 400;
}

.return-to-shop-wrapper {
  margin-top: 0;
}

.empty-cart-button {
  display: inline-block;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.empty-cart-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.empty-cart-button:active {
  transform: translateY(0);
}

.woocommerce-cart h1.entry-title {
  display: none;
}

/* Mobile Menu CSS starts here */
.custom-mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 10000 !important;
  position: relative;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}

.custom-mobile-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.custom-mobile-menu-toggle:active {
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(0.95);
}

.custom-mobile-menu-toggle:focus {
  outline: 2px solid var(--yellow-color, #ffc107);
  outline-offset: 2px;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  position: relative;
  pointer-events: none;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--dark-color, #333);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.custom-mobile-menu-toggle:hover .hamburger-line {
  background-color: var(--yellow-color, #ffc107);
}

body.menu-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--dark-color, #333);
}

body.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--dark-color, #333);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

body.menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-sliding-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

body.menu-open .mobile-sliding-menu {
  left: 0;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-menu-header .site-logo {
  flex: 1;
}

.mobile-menu-header .site-logo .custom-logo-link {
  display: inline-block;
  text-decoration: none;
}

.mobile-menu-header .site-logo img {
  max-width: 64px;
  height: auto;
  display: block;
}

.mobile-menu-header .site-logo span {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--yellow-color, #ffc107);
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.mobile-menu-content {
  padding: 20px 0;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-list li:last-child {
  border-bottom: none;
}

.mobile-menu-list a {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a:focus {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--yellow-color, #ffc107);
}

.mobile-menu-list .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.02);
  display: none !important;
}

.mobile-menu-list .menu-item-has-children.menu-open>.sub-menu {
  display: block !important;
}

.mobile-menu-list .sub-menu a {
  padding-left: 20px;
  font-size: 16px;
  text-transform: none;
}

.mobile-menu-list .sub-menu .sub-menu a {
  padding-left: 60px;
}

.mobile-menu-list .menu-item-has-children>a {
  position: relative;
  padding-right: 50px;
}

.mobile-menu-list .menu-item-has-children>a .submenu-toggle-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-menu-list .menu-item-has-children.menu-open>a .submenu-toggle-icon {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-menu-list .menu-item-has-children>a .submenu-toggle-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.mobile-menu-list li .megamenu-wrapper {
  display: none !important;
  padding: 16px 20px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.02);
  list-style: none;
}

.mobile-menu-list li.menu-open .megamenu-wrapper {
  display: block !important;
}

.mobile-menu-list .megamenu-wrapper {
  width: 100%;
}

.mobile-menu-list .megamenu-wrapper .nav-pills {
  width: 100% !important;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: none;
}

.mobile-menu-list .megamenu-wrapper .nav-pills .nav-link {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  margin: 0 0 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: #333 !important;
  background-color: transparent;
  font-size: 14px;
  text-transform: none;
  transition: all 0.3s ease;
}

.mobile-menu-list .megamenu-wrapper .nav-pills .nav-link:hover,
.mobile-menu-list .megamenu-wrapper .nav-pills .nav-link.active {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--yellow-color, #ffc107) !important;
  border-color: var(--yellow-color, #ffc107);
}

.mobile-menu-list .megamenu-wrapper .tab-content {
  width: 100% !important;
  margin-top: 16px;
  padding: 0;
}

.mobile-menu-list .megamenu-wrapper .tab-pane {
  display: none;
}

.mobile-menu-list .megamenu-wrapper .tab-pane.active {
  display: block;
}

.mobile-menu-list .megamenu-wrapper .megamenu-card {
  margin-bottom: 12px;
  border-radius: 12px;
}

.mobile-menu-list li:has(.megamenu-wrapper)>a {
  position: relative;
  padding-right: 50px;
}

.mobile-menu-list li:has(.megamenu-wrapper)>a .submenu-toggle-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-menu-list li.menu-open:has(.megamenu-wrapper)>a .submenu-toggle-icon {
  transform: translateY(-50%) rotate(180deg);
}

/* Mobile Menu css ends here */

/* 404 page css starts here */ 

/* ============================================
   Product Filter Shortcode Styles
   ============================================ */

/* Filter Bar */
.product-filter-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E7EB;
}

/* Search Input */
.product-search-wrapper {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 400px;
}

.product-search-wrapper .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.product-search-input {
  width: 100%;
  padding: 14px 20px 14px 52px;
  border: 1px solid #E5E7EB;
  background-color: #f9fafb;
  border-radius: 16px;
  height: 50px;
  font-size: 18px;
  font-family: var(--font-primary);
  color: var(--dark-color);
  transition: border-color 0.3s ease;
}
  input#product-search-input {
    padding: 0 52px !important;
  }

.product-search-input:focus {
  outline: none;
  border-color: var(--yellow-color);
}

.product-search-input::placeholder {
  color: #9EA9AE;
}

/* Filter Buttons */
.product-filter-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.product-filter-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.product-filter-btn:hover {
  color: var(--dark-color);
}

.product-filter-btn.active {
  background-color: var(--yellow-color);
  color: #000000;
  font-weight: 600;
}

/* Products Grid */
.product-filter-results {
  min-height: 400px;
}

.product-card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  box-shadow: var(--custom-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-wrapper:hover {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.12);
}

.product-card-image-link {
  display: block;
  text-decoration: none;
  flex: 1;
  margin-bottom: 24px;
}

.product-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  max-width: 308px;
  min-height: 240px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 308px;
  max-height: 240px;
}


.product-card-title {
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 700;
  color: #000;
  margin: 0 0 16px 0;
  line-height: 1.3;
  display: block;       
  max-width: 100%; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-card-title a:hover {
  color: var(--yellow-color);
}

.product-card-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.product-card-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--yellow-color);
  margin: 0;
  line-height: 26px;
}

.product-card-price .woocommerce-Price-amount {
  font-weight: 700;
}

/* No Results Message */
.product-filter-no-results {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 18px;
}

.product-filter-card {
  display: block;
}

.product-filter-card.hidden {
  display: none;
}

/* Loading State */
.product-filter-results.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Responsive Design - Product Filter */
@media (max-width: 992px) {
  .product-filter-bar {
      flex-direction: column;
      align-items: stretch;
  }
  
  .product-search-wrapper {
      max-width: 100%;
  }
  
  .product-filter-buttons {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 8px;
      -webkit-overflow-scrolling: touch;
  }
  
  .product-filter-btn {
      flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .product-filter-bar {
      margin-bottom: 32px;
  }
  
  .product-card-content {
      padding: 0 24px 24px 24px;
  }
  
  .product-card-title {
      font-size: 20px;
  }
  
  .product-card-price {
      font-size: 22px;
  }
  
  .product-filter-btn {
      padding: 12px 24px;
      font-size: 14px;
  }
} 

.mwb_wgm_selected_template {
  display: none !important;
} 
span.mwg_wgm_preview_email {
  display: none;
}
.cart-item-product dl.variation {
  display: none;
}
.cart-item__element.cart-item__meta {
  display: none;
}
.mwb_gift_card_balance_wrapper input {
  height: 44px;
  border-radius: 32px;
  padding: 24px 18px !important;
  border: 2px solid #6c757d;
}
input#mwb_check_balance {
  height: 55px !important;
  line-height: 0;
  padding: 22px 24px !important;
}
.gift_card_balance_email, .gift_card_code {
  margin-top: 12px;
}
.page-id-1184 .photo-showcase.section-space-xl.pb-0 {
  padding-top: 0;
}