/* ========================================================================= */
/* Mobile Bottom Navigation */

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #2b1a11;
  border-top: 1px solid rgba(255, 248, 239, 0.15);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 24px rgba(43, 26, 17, 0.18);
}

.mobile-bottom-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-bottom-nav li {
  flex: 1;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px 8px;
  text-decoration: none;
  color: rgba(255, 248, 239, 0.75) !important;
  font-family: var(--font-family-base);
  font-size: 10px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mobile-bottom-nav a i {
  font-size: 20px;
  line-height: 1;
  color: rgba(255, 248, 239, 0.75);
  transition: color 0.3s ease;
}

.mobile-bottom-nav a span {
  color: inherit;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: #b76b31 !important;
}

.mobile-bottom-nav a.active i,
.mobile-bottom-nav a:hover i {
  color: #b76b31;
}

@media (max-width: 1199.98px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0));
  }

  /* Lift floating buttons above mobile bottom nav */
  .floating-contact-buttons {
    bottom: calc(82px + env(safe-area-inset-bottom, 0));
  }

  .floating-contact-buttons.slide-up {
    bottom: calc(142px + env(safe-area-inset-bottom, 0));
  }

  .totop {
    bottom: calc(82px + env(safe-area-inset-bottom, 0));
  }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
  position: fixed;
  right: 30px;
  bottom: 100px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition:
    bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.floating-contact-buttons.visible {
  opacity: 1;
  visibility: visible;
}

.floating-contact-buttons.slide-up {
  bottom: 200px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  background-color: #fff8ef;
  color: #2b1a11;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(43, 26, 17, 0.15);
  font-size: 22px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid rgba(43, 26, 17, 0.1);
}

.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(43, 26, 17, 0.25);
}
.floating-btn.whatsapp-btn {
  background-color: #25d366;
  color: #ffffff;
}

.floating-btn.whatsapp-btn:hover {
  background-color: #25d366;
  color: var(--color-one);
  border-color: var(--color-one);
}

.floating-btn.call-btn:hover {
  background-color: #2b1a11;
  color: #fff8ef;
  border-color: #2b1a11;
}

/* Mobile Responsive Menu Overrides */
.mr_menu .logo img {
  max-width: 110px !important;
  height: auto;
}

/* Aside Info Panel Logo Overrides */
.aside_info_wrapper .aside_logo img {
  max-width: 140px !important;
  height: auto;
  margin: 0 auto;
}

/* Fine Art Services Grid */
.fine-art-service-card {
  background: var(--color-three);
  border: 1px solid rgba(var(--color-dark-one-fixed-rgb), 0.12);
  text-align: left;
  padding: 30px;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 45px);
  /* Account for margin */
  text-decoration: none !important;
  color: inherit;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.fine-art-service-card:hover {
  transform: translateY(-10px) !important;
  border-color: var(--color-one);
  box-shadow: 0 15px 35px rgba(var(--color-dark-one-fixed-rgb), 0.08);
}

/* Hero Section Conversion Elements */

.snowfox-hero-btn-primary {
  display: inline-block;
  padding: 14px 35px;
  background-color: #2b1a11;
  color: #fff8ef !important;
  font-family: var(--font-family-base);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.snowfox-hero-btn-primary:hover {
  background-color: #a98266;
  color: #ffffff !important;
}

.snowfox-hero-btn-secondary {
  display: inline-block;
  padding: 14px 0;
  color: #2b1a11 !important;
  font-family: var(--font-family-base);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #2b1a11;
  transition: all 0.3s ease;
}

.snowfox-hero-btn-secondary:hover {
  color: #a98266 !important;
  border-bottom-color: #a98266;
}

.hero-trust-indicator {
  font-family: var(--font-family-three);
  font-size: 13px;
  color: #2b1a11;
  opacity: 0.8;
}

.hero-trust-indicator i {
  font-size: 11px;
}

.service-image-wrapper {
  width: 100%;
  height: 260px;
  /* Constrained image height */
  overflow: hidden;
  background-color: var(--color-white);
  flex-shrink: 0;
}

.service-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease-in-out !important;
  filter: grayscale(0.05);
  will-change: transform;
}

.fine-art-service-card:hover .service-image-wrapper img {
  transform: scale(1.08) !important;
}

.service-card-body {
  padding: 25px 0 0 0;
  /* Space between image and content */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-meta-num {
  font-family: var(--font-family-base);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--color-one);
  display: block;
  margin-bottom: 8px;
}

.service-card-title {
  font-family: var(--font-family-two);
  /* Cormorant Garamond */
  font-size: 1.6rem;
  color: var(--color-dark-one-fixed) !important;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-desc {
  color: rgba(var(--color-dark-one-fixed-rgb), 0.7) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.fine-art-service-card:hover .service-card-title,
.fine-art-service-card:hover .service-desc {
  color: var(--color-dark-one-fixed) !important;
}

.service-explore-link {
  font-family: var(--font-family-base);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-one);
  text-decoration: none;
  border-bottom: 1px solid var(--color-one);
  padding-bottom: 2px;
  align-self: flex-start;
  margin-top: auto;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.snowfox-footer {
  padding-top: 0px !important;
}

.footer.style1::before,
.snowfox-footer::before {
  display: none !important;
}

.snowfox-footer .footer-top {
  padding-top: 15px !important;
  padding-bottom: 0px !important;
}

.snowfox-footer .footer--inner {
  padding-top: 0px !important;
  padding-bottom: 10px !important;
}

.snowfox-footer .footer-widget:has(.footer-nav) {
  margin-top: 0px !important;
}

.snowfox-footer .footer-widget {
  margin-bottom: 10px !important;
}

@media (max-width: 991.98px) {
  .snowfox-footer .footer-widget {
    margin-bottom: 30px !important;
  }
}
.service-explore-link:hover {
  opacity: 0.6;
}

/* Page Banner Overlay */
.wptb-page-heading .wptb-item--inner {
  position: relative;
  z-index: 1;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 767.98px) {
  .wptb-page-heading .wptb-item--inner {
    padding: 40px 0px 40px 0px !important;
  }
}

.wptb-page-heading .wptb-item--inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-dark-one-fixed-rgb), 0.5);
  /* 50% dark brown overlay */
  z-index: -1;
}

/* Footer Restructure Styles */

.snowfox-footer-desc {
  font-family: var(--font-family-base) !important;
  color: #ffffff !important;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify !important;
  text-align-last: left;
}

.snowfox-footer-title {
  font-family: var(--font-family-two) !important;
  font-size: 24px !important;
  letter-spacing: 0.1em;
  color: #ffffff !important;
  text-transform: uppercase;
  margin-bottom: 25px !important;
  position: relative;
  padding-bottom: 15px;
}

.snowfox-footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.snowfox-footer-contact a,
.snowfox-footer-contact span,
.snowfox-footer-contact i {
  color: #ffffff !important;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.snowfox-footer-contact a:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

.snowfox-footer .footer-nav ul li a {
  color: #ffffff !important;
  font-size: 15px;
  transition: all 0.3s ease;
}

.snowfox-footer .footer-nav ul li a:hover {
  color: rgba(255, 255, 255, 0.7) !important;
  padding-left: 5px;
}

.snowfox-footer-social ul li a {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  transition: all 0.3s ease;
}

.snowfox-footer-social ul li a:hover {
  background-color: #ffffff !important;
  color: #2b1a11 !important;
}

.search-modal .modal-content,
.search-modal .search_overlay {
  background: rgba(247, 243, 238, 0.95) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: none !important;
  border: none !important;
  height: 100%;
  padding: 0 10%;
}

.search-modal .modal {
  background: transparent !important;
}

.fine-art-search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--color-dark-one-fixed);
  z-index: 1055;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.fine-art-search-close:hover {
  transform: rotate(90deg);
}

.fine-art-search-input {
  border: none !important;
  border-bottom: 2px solid var(--color-dark-one-fixed) !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 15px 50px 15px 0 !important;
  font-size: 1.8rem !important;
  font-family: var(--font-family-two) !important;
  color: var(--color-dark-one-fixed) !important;
  box-shadow: none !important;
}

.fine-art-search-input::placeholder {
  color: var(--color-dark-one-fixed) !important;
  opacity: 0.4 !important;
}

.fine-art-search-submit {
  position: absolute;
  right: 0;
  bottom: 15px;
  background: transparent !important;
  border: none !important;
  color: var(--color-dark-one-fixed) !important;
  font-size: 2rem !important;
  padding: 0 !important;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.fine-art-search-submit:hover {
  opacity: 0.6;
}

/* Carousel Customizations */

.wptb-carousel-section .wptb-slider--image img {
  height: 350px !important;
  object-fit: cover !important;
  width: 100% !important;
}

.wptb-carousel-section .swiper-slide .wptb-slider--image {
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.6s ease;
  opacity: 0.5;
  transform: scale(0.95);
  border-radius: 6px;
  overflow: hidden;
}

.wptb-carousel-section .swiper-slide-active .wptb-slider--image {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 15px 40px rgba(43, 26, 17, 0.15);
}

/* Reduce Hero Bottom Padding to pull carousel up */
.snowfox-hero-section {
  padding-bottom: 60px !important;
}

/* Reduce top padding for Snowfox Difference section */
.snowfox-difference-section {
  padding-top: 40px;
}

/* Feature Cards (About Page) */
.snowfox-feature-card {
  background-color: #ffffff;
  /* Crisp white to pop against cream background */
  border-radius: 12px;
  padding: 35px 25px !important;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(var(--color-one-rgb), 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.snowfox-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(43, 26, 17, 0.08);
  /* Soft dark brown shadow */
  border-color: rgba(var(--color-one-rgb), 0.3);
}

/* Elegant left border animation on hover */
.snowfox-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--color-one);
  transition: height 0.4s ease;
  z-index: -1;
}

.snowfox-feature-card:hover::before {
  height: 100%;
}

.snowfox-feature-card .snowfox-card-title {
  font-size: 1.35rem !important;
  font-family: var(--font-family-two);
  color: var(--color-white);
  /* Dark Brown */
  margin-bottom: 15px;
  font-weight: 600;
}

.snowfox-feature-card .snowfox-card-desc {
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: rgba(var(--color-white-rgb), 0.8) !important;
}

.snowfox-services-slider .swiper-slide {
  margin-bottom: 0px !important;
}

/* Desktop Carousel Adjustments */
@media (min-width: 768px) {
  .wptb-carousel-section .swiper-slide-prev .wptb-slider--image,
  .wptb-carousel-section .swiper-slide-next .wptb-slider--image {
    opacity: 1;
  }
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
  .snowfox-hero-section {
    padding-bottom: 20px !important;
  }

  .snowfox-about-section.snowfox-section-pad {
    padding-top: 30px !important;
  }

  .wptb-carousel-section .wptb-slider--image img {
    height: 250px !important;
  }

  .header .logo img,
  .mr_menu .logo img,
  .aside_logo.logo img,
  .snowfox-logo img {
    max-width: 110px !important;
    height: auto !important;
  }

  /* Reduce Hero CTA button size */
  .snowfox-hero-btn-primary {
    padding: 10px 24px !important;
    font-size: 12px !important;
  }

  .snowfox-hero-btn-secondary {
    padding: 10px 0 !important;
    font-size: 12px !important;
  }

  /* Pull up hero content on mobile */
  .snowfox-hero-content {
    margin-top: -80px !important;
  }

  /* Fix hidden line breaks on mobile */
  .snowfox-hero-content br {
    display: inline !important;
  }
}

/* Contact Form Styles */

.snowfox-contact-form {
  background-color: #ffffff;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(43, 26, 17, 0.06);
  border: 1px solid rgba(var(--color-one-rgb), 0.08);
}

.snowfox-input {
  background-color: #fdfbf7;
  /* Very light cream inside inputs */
  border: 1px solid rgba(var(--color-one-rgb), 0.2) !important;
  border-radius: 8px;
  padding: 16px 20px !important;
  font-size: 15px;
  color: var(--color-black);
  font-family: var(--font-family-base);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.01);
}

.snowfox-input:focus {
  border-color: rgba(var(--color-one-rgb), 0.6) !important;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(169, 130, 102, 0.1) !important;
  outline: none;
}

.snowfox-input::placeholder {
  color: rgba(var(--color-black-rgb), 0.5);
}

textarea.snowfox-input {
  min-height: 140px;
  resize: vertical;
}

.snowfox-btn-submit {
  display: inline-block;
  padding: 16px 40px;
  background-color: #2b1a11;
  color: #fff8ef !important;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.snowfox-btn-submit:hover {
  background-color: #a98266;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(43, 26, 17, 0.1);
}

/* Trust Badges (About Page) */

.snowfox-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 40px;
}
/* Equal height cards */
.snowfox-trust-badge {
  height: 100%;
  padding: 35px 25px;
  text-align: center;
}

.snowfox-trust-badge {
  background: rgba(var(--color-white-rgb), 0.03);
  border: 1px solid rgba(var(--color-white-rgb), 0.08);
  border-radius: 8px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
  text-align: center;
}

.snowfox-trust-badge:hover {
  background: rgba(var(--color-white-rgb), 0.08);
  transform: translateY(-4px);
  border-color: rgba(var(--color-one-rgb), 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.snowfox-trust-badge-icon {
  color: var(--color-one);
  font-size: 1.8rem;
  line-height: 1;
}

.snowfox-trust-badge-text {
  font-family: var(--font-family-two);
  color: rgba(var(--color-white-rgb), 0.95);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

@media (max-width: 1199px) {
  .snowfox-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .snowfox-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .snowfox-trust-badge {
    flex-direction: row;
    text-align: left;
    padding: 15px;
  }
}

/* Typography Readability Improvements */

.blog-details-inner .fulltext p,
.blog-details-inner .fulltext .point-order li,
.accordion-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(var(--color-dark-one-fixed-rgb), 0.85);
}

/* Dynamic Services — Nav, Sidebar, Rich Content */

.header
  .mainnav
  ul.main-menu
  > li.menu-item-has-children
  > ul.sub-menu
  li.menu-item-has-children {
  position: relative;
}

.header
  .mainnav
  ul.main-menu
  > li.menu-item-has-children
  > ul.sub-menu
  li.menu-item-has-children
  > a::after {
  content: "";
  font-family: "bootstrap-icons";
  speak: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 10px;
}

.header .mainnav ul.main-menu li ul li.menu-item-has-children > ul.sub-menu {
  left: calc(100% + 12px);
  top: -12px;
  min-width: 220px;
  padding: 12px 20px;
  border-radius: 6px;
}

.header
  .mainnav
  ul.main-menu
  li
  ul
  li.menu-item-has-children:hover
  > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.sidenav .side_sub_menu {
  list-style: none;
  padding: 0 0 0 18px;
  margin: 0 0 8px;
  display: none;
}

.sidenav .side_sub_menu.show {
  display: block;
}

.sidenav .side_sub_menu .menu-item a {
  padding: 10px 0;
  font-size: 14px;
}

.sidenav .side_sub_menu .menu-item.active a {
  color: var(--color-one);
  font-weight: var(--fw-semibold);
}

.service-parent-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.service-parent-label a {
  color: var(--color-one);
  text-decoration: none;
}

.snowfox-service-content h1,
.snowfox-service-content h2,
.snowfox-service-content h3,
.snowfox-service-content h4,
.snowfox-service-content h5,
.snowfox-service-content h6 {
  font-family: var(--font-family-two);
  text-transform: uppercase;
  margin: 28px 0 16px;
  color: var(--color-dark-one-fixed);
}

.snowfox-service-content p,
.snowfox-service-content li {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(var(--color-dark-one-fixed-rgb), 0.85);
  margin-bottom: 16px;
}

.snowfox-service-content ul,
.snowfox-service-content ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 24px;
}

.snowfox-service-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.snowfox-service-content ul li::before {
  content: "";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-one);
}

.snowfox-service-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 20px 0;
}

.snowfox-service-content table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}

.snowfox-service-content table td,
.snowfox-service-content table th {
  border: 1px solid rgba(var(--color-dark-one-fixed-rgb), 0.15);
  padding: 10px 14px;
}

.snowfox-service-content blockquote {
  border-left: 3px solid var(--color-one);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
}

/* packages */
.snowfox-pricing-row .col-lg-3,
.snowfox-pricing-row .col-md-6 {
  display: flex;
}

.snowfox-price-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.snowfox-price-points {
  flex: 1;
}

.snowfox-price-btn {
  margin-top: auto;
}

@media screen and (max-width: 500px) {
  .grid-3 .grid-item,
  .grid-3 .grid-sizer,
  .grid-4 .grid-item,
  .grid-4 .grid-sizer {
    width: 50%;
  }
}

.snowfox-service-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.snowfox-filter-pill {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(var(--color-one-rgb), 0.3);
  border-radius: 50px;
  color: var(--color-one);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.snowfox-filter-pill:hover,
.snowfox-filter-pill.active {
  background-color: var(--color-one);
  border-color: var(--color-one);
  color: #fff;
}
.snowfox-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.snowfox-lightbox.active {
  display: flex;
}

.snowfox-lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  text-align: center;
}

.snowfox-lightbox-inner img {
  max-width: 92vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  border: 10px solid #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.snowfox-lightbox-title {
  margin-top: 16px;
  font-family: var(--font-family-two, serif);
  font-size: 18px;
  color: #fff;
}

.snowfox-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.snowfox-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.snowfox-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.snowfox-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.snowfox-lightbox-prev {
  left: 24px;
}

.snowfox-lightbox-next {
  right: 24px;
}

@media (max-width: 767.98px) {
  .snowfox-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .snowfox-lightbox-prev {
    left: 10px;
  }

  .snowfox-lightbox-next {
    right: 10px;
  }

  .snowfox-lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
}
.grid-item .wptb-item--holder {
  pointer-events: none;
}
/* YouTube Reels Section */
.snowfox-reels-section {
  background-color: var(--color-dark-twelve);
}

.snowfox-reels-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.snowfox-reel-card {
  position: relative;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.snowfox-reel-portrait {
  aspect-ratio: 9 / 16;
  width: auto;
}

.snowfox-reel-landscape {
  aspect-ratio: 16 / 9;
  width: auto;
}

.snowfox-reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.snowfox-reel-card:hover img {
  transform: scale(1.05);
}

.snowfox-reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #2b1a11;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: transform 0.3s ease;
}

.snowfox-reel-card:hover .snowfox-reel-play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Reel Modal */
.snowfox-reel-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.snowfox-reel-modal.active {
  display: flex;
}

.snowfox-reel-modal-inner {
  position: relative;
  max-width: 90vw;
}

.snowfox-reel-modal-inner.is-portrait {
  width: 360px;
}

.snowfox-reel-modal-inner.is-landscape {
  width: 640px;
}

.snowfox-reel-video-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.is-portrait .snowfox-reel-video-wrap {
  aspect-ratio: 9 / 16;
}

.is-landscape .snowfox-reel-video-wrap {
  aspect-ratio: 16 / 9;
}

.snowfox-reel-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.snowfox-reel-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #2b1a11;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .snowfox-reels-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 10px;
    gap: 16px;
    scrollbar-width: none; /* Firefox */
  }

  .snowfox-reels-row::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .snowfox-reel-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    height: 340px;
  }

  .snowfox-reel-portrait {
    width: 65vw;
    max-width: 260px;
  }

  .snowfox-reel-landscape {
    width: 85vw;
    max-width: 460px;
  }
}

@media (max-width: 575.98px) {
  .snowfox-reel-card {
    height: 280px;
  }

  .snowfox-reel-portrait {
    width: 72vw;
    max-width: 240px;
  }

  .snowfox-reel-landscape {
    width: 90vw;
    max-width: 340px;
  }

  .snowfox-reel-modal-inner.is-landscape {
    width: 90vw;
  }
}

/* About Page - Studio Experience Section */
.snowfox-studio-exp-row {
  align-items: stretch;
}

.snowfox-studio-exp-row .wptb-image-single,
.snowfox-studio-exp-row .wptb-item--inner {
  height: 100%;
}

.snowfox-studio-exp-row .wptb-item--image {
  height: calc(100% - 60px);
  margin: 30px 0;
  max-height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.snowfox-studio-exp-row .wptb-item--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .snowfox-studio-exp-row .wptb-item--image {
    max-height: 350px;
    margin: 20px 0;
  }
}

.fine-art-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-book-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  padding: 12px 20px;
  background: var(--color-one);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.service-book-now-btn:hover {
  background: var(--color-two);
  color: #fff;
  transform: translateY(-2px);
}

.service-book-now-btn i {
  font-size: 16px;
}

.swiper-container.snowfox-services-slider .swiper-slide {
  height: auto;
  display: flex;
}

.service-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Snowfox Contact Cards (We'd Love to Hear From You) */

.snowfox-premium-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  padding: 40px 30px;
  background-color: #fffaf4;
  border: 1px solid rgba(43, 26, 17, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(43, 26, 17, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.snowfox-premium-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(43, 26, 17, 0.1);
  border-color: rgba(43, 26, 17, 0.15);
}

.snowfox-premium-contact-card .snowfox-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(var(--color-one-rgb, 190, 120, 60), 0.1);
  color: var(--color-one);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background-color 0.35s ease;
}

.snowfox-premium-contact-card:hover .snowfox-card-icon {
  background-color: var(--color-one);
  color: #fff;
}

.snowfox-premium-contact-card .snowfox-card-content {
  width: 100%;
}

.snowfox-premium-contact-card .snowfox-card-title {
  font-family: var(--font-family-two) !important;
  font-size: 22px;
  color: #2b1a11;
  margin-bottom: 8px;
}

.snowfox-premium-contact-card .snowfox-card-desc {
  font-size: 15px;
  color: var(--color-one);
  opacity: 0.9;
  margin-bottom: 18px;
}

.snowfox-premium-contact-card .snowfox-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #2b1a11;
  text-decoration: none;
}

.snowfox-premium-contact-card .snowfox-card-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.snowfox-premium-contact-card .snowfox-card-link:hover {
  color: var(--color-one);
}

.snowfox-premium-contact-card .snowfox-card-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 767.98px) {
  .snowfox-premium-contact-card {
    align-items: center;
    text-align: center;
    padding: 32px 20px;
  }

  .snowfox-premium-contact-card .snowfox-card-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .snowfox-premium-contact-card .snowfox-card-link {
    justify-content: center;
  }

  .snowfox-premium-contact-card .snowfox-card-title {
    font-size: 20px;
  }
}

.snowfox-footer .footer-nav ul.gap-3,
.snowfox-footer-contact ul.gap-3 {
  gap: 10px !important;
}

.snowfox-footer .footer-nav li + li {
  margin-top: 0px !important;
}

.snowfox-footer .footer-bottom {
  padding: 12px 0 !important;
}
@media (max-width: 767.98px) {
  .snowfox-footer .footer-bottom {
    padding-bottom: 60px !important;
  }
}
.snowfox-footer .copyright p {
  line-height: 1.6 !important;
  font-size: 14px !important;
}

@media (max-width: 767.98px) {
  .snowfox-footer .footer-widget:has(.footer-nav) .footer-nav ul.gap-3 {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    justify-content: flex-start !important;
  }

  .snowfox-footer-title::after {
    left: 50% !important;
    transform: translateX(-50%);
  }
  .snowfox-footer-contact ul {
    align-items: center;
  }

  .snowfox-footer-contact ul li {
    justify-content: center;
  }
}

.menu-sub-note {
  display: block;
  font-size: 11px;
  font-style: italic;
  text-transform: none !important;
  letter-spacing: 0.02em;
  opacity: 0.65;
  margin-top: 2px;
}

.mobile-book-now-bar {
  display: none !important;
}

/** floating book now in service details ***/
@media (max-width: 767.98px) {
  .mobile-book-now-bar {
    display: flex !important;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 80px;
    z-index: 999;
    pointer-events: none;
  }

  .mobile-book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background-color: var(--color-two);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    pointer-events: auto;
  }
}

@media (max-width: 767.98px) {
  body.has-service-cta .floating-contact-buttons {
    bottom: calc(202px + env(safe-area-inset-bottom, 0));
  }
}
/* Contact Page — Heading */
.snowfox-contact-heading {
  max-width: 640px;
  margin: 0 auto 50px;
}

.snowfox-contact-pill {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--color-one);
  border-radius: 30px;
  color: var(--color-one);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.snowfox-contact-title {
  font-family: var(--font-family-two) !important;
  font-size: 42px;
  color: #2b1a11;
  margin-bottom: 16px;
}

.snowfox-contact-subtext {
  font-size: 16px;
  color: #2b1a11;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Contact Page — Info Cards */
.snowfox-contact-info-card {
  height: 100%;
  text-align: center;
  padding: 40px 25px;
  background-color: #ffffff;
  border: 1px solid rgba(43, 26, 17, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(43, 26, 17, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.snowfox-contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(43, 26, 17, 0.1);
}

.snowfox-contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-color: rgba(var(--color-one-rgb, 190, 120, 60), 0.1);
  color: var(--color-one);
  font-size: 24px;
}

.snowfox-contact-info-card h5 {
  font-family: var(--font-family-two) !important;
  font-size: 20px;
  color: #2b1a11;
  margin-bottom: 10px;
}

.snowfox-contact-info-card a,
.snowfox-contact-info-card span {
  font-size: 15px;
  color: var(--color-one);
  text-decoration: none;
}

.snowfox-contact-info-card a:hover {
  color: #2b1a11;
}

/* Contact Page — Form */
.snowfox-contact-form-wrapper {
  background-color: #fffaf4;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 15px 45px rgba(43, 26, 17, 0.06);
  border: 1px solid rgba(43, 26, 17, 0.08);
}

.snowfox-input {
  background-color: #ffffff !important;
  border: 1px solid rgba(43, 26, 17, 0.15) !important;
  border-radius: 8px !important;
  padding: 16px 20px !important;
  font-size: 15px;
  color: #2b1a11 !important;
  font-family: var(--font-family-base);
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

.snowfox-input:focus {
  border-color: var(--color-one) !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(var(--color-one-rgb, 190, 120, 60), 0.12) !important;
  outline: none;
}

.snowfox-input::placeholder {
  color: rgba(43, 26, 17, 0.45) !important;
}

textarea.snowfox-input {
  min-height: 140px;
  resize: vertical;
}

.snowfox-btn-submit {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--color-one);
  color: #fff8ef !important;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.snowfox-btn-submit:hover {
  background-color: #2b1a11;
  color: #fff8ef !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(43, 26, 17, 0.15);
}

.snowfox-map-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(43, 26, 17, 0.12);
  border: 1px solid rgba(43, 26, 17, 0.06);
}

.snowfox-map-card iframe {
  display: block;
}

.snowfox-map-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background-color: #fff;
  color: #2b1a11;
  font-family: var(--font-family-two) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(43, 26, 17, 0.15);
}
@media screen and (max-width: 1400px) {
  .snowfox-map-section {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 991px) {
  .snowfox-map-section {
    padding-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .snowfox-contact-title {
    font-size: 30px;
  }
  .snowfox-contact-form-wrapper {
    padding: 30px 20px;
  }
}
