:root {
  --brand-accent: #B49985;
  --brand-dark: #0a0a0a;
  --brand-white: #ffffff;
  --cursor-size: 40px;
  --cursor-dot-size: 8px;
}

/* Global Effects */
.blur_effect {
  -webkit-backdrop-filter: saturate(100%) blur(25px) brightness(100%);
  backdrop-filter: saturate(100%) blur(25px) brightness(100%);
  border-radius: 10px;
}

/* Soul Ceramics Preloader Styles */
.preloader_animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--brand-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.soul-logo-container {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  position: relative;
  z-index: 10;
}

.soul-path {
  stroke: var(--brand-white);
  stroke-width: 0.5;
  fill: var(--brand-white);
  fill-opacity: 0;
}

.soul-path.accent {
  stroke: var(--brand-accent);
  fill: var(--brand-accent);
}

.soul-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--brand-accent);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.is-loading {
  overflow: hidden;
}

/* Premium Custom Cursor Styles */
.cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10000;
  opacity: 0; /* Hidden by default, revealed via GSAP */
}

.cursor-dot {
  position: absolute;
  width: var(--cursor-dot-size);
  height: var(--cursor-dot-size);
  background-color: var(--brand-white);
  border-radius: 50%;
  mix-blend-mode: difference;
  top: 0;
  left: 0;
  margin: calc(var(--cursor-dot-size) / -2) 0 0 calc(var(--cursor-dot-size) / -2);
}

.cursor-follower {
  position: absolute;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border: 1px solid var(--brand-accent);
  border-radius: 50%;
  top: 0;
  left: 0;
  margin: calc(var(--cursor-size) / -2) 0 0 calc(var(--cursor-size) / -2);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* PREMIUM TILES SIZES SECTION (SWIPER REBUILD) */
.tiles_slider_section {
  background-color: #F0F0F0; /* Warm beige */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tiles_slider_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.tiles_slider_nav {
  display: flex;
  gap: 15px;
}

.tiles_slider_prev, .tiles_slider_next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--brand-dark);
}

.tiles_slider_prev:hover, .tiles_slider_next:hover {
  background-color: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
}

.tiles_swiper {
  width: 100%;
  overflow: visible !important; /* To let shadow bleed without clipping */
}

.list_card_inner {
  height: 600px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1a1a;
  cursor: pointer;
  transform: translateZ(0); 
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: box-shadow 0.6s ease, transform 0.6s ease;
}

.list_card_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.list_card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(10,10,10,0.9) 100%);
  transition: opacity 0.5s ease;
  z-index: 1;
}

.list_card_content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 35px;
  z-index: 2;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(10px);
}

.list_card_label {
  font-family: 'Ntsomic', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
}

.list_card_title {
  font-family: 'Ntsomic', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.1;
  transition: transform 0.5s ease;
}

.list_card_cta {
  display: inline-block;
  text-decoration: none;
  font-family: 'Ntsomic', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  position: relative;
}

.list_cta_line {
  width: 30px;
  height: 1px;
  background-color: var(--brand-accent);
  margin-top: 5px;
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover effects */
.list_card_inner:hover .list_card_img {
  transform: scale(1.05);
}
.list_card_inner:hover .list_card_overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 20%, rgba(10,10,10,0.95) 100%);
}
.list_card_inner:hover .list_card_content {
  transform: translateY(0);
}
.list_card_inner:hover .list_card_title {
  transform: translateY(-5px);
}
.list_card_inner:hover .list_cta_line {
  width: 100%;
}
.list_card_inner:hover {
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}

/* Responsive Swiper elements */
@media (max-width: 991px) {
  .list_card_inner { height: 500px; }
  .list_card_title { font-size: 1.75rem; }
}
@media (max-width: 767px) {
  .list_card_inner { height: 450px; }
  .list_card_content { padding: 30px 25px; }
  .tiles_slider_header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .tiles_slider_section { padding: 60px 0; }
}

/* Projects Grid (Keeping this for the next section) */
.hp_projects_wrap {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 4rem 2.5rem !important;
  margin-top: 3rem;
  padding: 0;
}

.hp_projects_list_item {
  width: 100%;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
}

/* Responsive fixes */
@media (max-width: 991px) {
  .dimensions_grid, .hp_projects_wrap {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 3rem 1.5rem !important;
  }
}

@media (max-width: 767px) {
  .dimensions_grid, .hp_projects_wrap {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}


.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--brand-dark);
  z-index: 10001;
  pointer-events: none;
  opacity: 1; /* Initial state for internal pages */
}

/* PREMIUM COLLECTION PAGE STYLES */
.collection-grid-container {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}

.filter-parent {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(180vh - 120px);
  overflow-y: auto;
  padding-right: 20px;
  scrollbar-width: none;  
}

.filter-parent::-webkit-scrollbar { display: none; }

.filter_heading {
  font-family: 'Ntsomic', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  font-weight: 400;
}

.filter_group_wrap { margin-bottom: 40px; }

.filter_cat_title {
  font-family: 'Ntsomic', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 24px 0 12px;
  display: block;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter_checkbox_wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom_check_box {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #444;
  transition: color 0.3s;
}

.custom_check_box:hover { color: var(--brand-dark); }

.custom_check_box input { display: none; }

.checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  display: inline-block;
  transition: all 0.3s;
}

.custom_check_box input:checked + .checkmark {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.reset_filter_btn {
  width: 100%;
  padding: 12px;
  background: none;
  border: 1px solid #e0e0e0;
  font-family: 'Ntsomic', sans-serif;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.reset_filter_btn:hover {
  background-color: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
}

/* Grid Styles */
.collection_main_area { flex-grow: 1; }

.collection_grid_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}

.results_count { 
  font-family: 'Ntsomic', sans-serif;
  font-size: 0.65rem; 
  color: #888; 
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.premium_prod_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}

.premium_prod_card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--brand-dark);
  transition: transform 0.4s ease;
}

.premium_prod_card:hover { transform: translateY(-8px); }

.prod_img_placeholder {
  aspect-ratio: 4/5;
  background-color: #f7f7f7;
  background-image: radial-gradient(circle at 2px 2px, rgba(0,0,0,0.03) 1px, transparent 0);
  background-size: 24px 24px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.tag_new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  font-size: 0.65rem;
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.prod_name { 
  font-family: 'Ntsomic', sans-serif;
  font-size: 1rem; 
  font-weight: 400; 
  margin-bottom: 4px; 
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.prod_sizes { font-size: 0.75rem; color: #888; }
.prod_cta { 
  margin-top: 10px; 
  font-family: 'Ntsomic', sans-serif;
  font-size: 0.7rem; 
  font-weight: 400; 
  display: flex; 
  align-items: center; 
  gap: 5px; 
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1200px) { .premium_prod_grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) {
  .collection-grid-container { flex-direction: column; }
  .filter-parent { display: none; }
  .premium_prod_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) { .premium_prod_grid { grid-template-columns: 1fr; } }

/* MOBILE DRAWER STYLES */
.mobile_filter_trigger_wrap {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  z-index: 999;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  cursor: pointer;
}

.filter_icon_dot {
  width: 6px;
  height: 6px;
  background-color: var(--brand-accent);
  border-radius: 50%;
}

.mobile_filter_drawer {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 80vh;
  background-color: #fff;
  z-index: 10002;
  transition: bottom 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 24px 24px 0 0;
  display: flex;
  flex-direction: column;
}

.mobile_filter_drawer.active { bottom: 0; }

.drawer_header {
  padding: 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close_drawer {
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.drawer_content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

.drawer_footer {
  padding: 24px;
  border-top: 1px solid #eee;
}

.drawer_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 10001;
  display: none;
}

.drawer_overlay.active { display: block; }

@media (max-width: 991px) {
  .mobile_filter_trigger_wrap { display: flex; }
}

/* Homepage Mobile Responsiveness Overrides */
@media (max-width: 767px) {
  /* Hero Section */
  .hero_content_wrapper.no_padding {
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 100px !important;
    margin-bottom: 50px !important;
    padding: 0 !important;
  }
  .heading_subheading_wrap, .hero_paragraph_wrap {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .heading_hero_section {
    font-size: 3rem !important;
    line-height: 1.1 !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 0 5px 0 !important;
    display: block !important;
    width: 100% !important;
  }
  .heading_main {
    font-size: 1.5rem !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 0 10px 0 !important;
    display: block !important;
    width: 100% !important;
  }
  .hero_description {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 90% !important;
  }
  .buttons_wrap {
    justify-content: center !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 10px 0 0 0 !important;
    gap: 15px !important;
  }
  .mob-hide {
    display: none !important;
  }
  .link_to {
    text-align: center !important;
  }
  .none_lines_mob {
    display: none !important;
  }

  /* Mission, Vision, Values */
  .services_content_wrapper {
    flex-direction: column !important;
    gap: 15px !important;
  }
  .text_content_wrapper {
    width: 100% !important;
  }
  .description {
    width: 100% !important;
  }

  /* Blog Section */
  .blog_collection_wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  .blog_content_wrapper {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .blog_img_wrapper, .blog_text_content {
    width: 100% !important;
  }

  /* Slider Mobile Fixes */
  .blur_effect {
    width: 90% !important;
    left: 5% !important;
    right: 5% !important;
    bottom: 5% !important;
    top: auto !important;
    height: auto !important;
    padding: 15px !important;
  }
  .slider_heading {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
  }

  /* Contact Form */
  .form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  .form_label_text_wrapper {
    width: 100% !important;
  }
  .submit-button {
    width: 100% !important;
  }
  
  /* Projects Section */
  .hp_projects_wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  .hp_heading_image_wrap {
    width: 100% !important;
  }

  /* Preloader Logo Fix */
  .soul-logo-container {
    max-width: 65% !important;
    padding: 1rem !important;
  }
  #soul-logo-svg {
    width: 100% !important;
    height: auto !important;
  }

  /* Internal Pages Global Mobile Fixes */
  .heading_number-wrap {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
  }
  .heading_projects {
    font-size: 2.5rem !important;
    text-align: center !important;
  }
  .number {
    font-size: 1.2rem !important;
  }

  /* Collection Page Mobile */
  .collection_grid_top {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 30px !important;
  }
  .premium_prod_grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* About Page Mobile */
  .hero-section .container > div,
  .about-section .container > div,
  .manufacturing-section .container > div {
    flex-direction: column !important;
    padding: 0 10px !important;
  }
  .hero-section .hero-title,
  .about-section .about-title,
  .manufacturing-section .manufacturing-title {
    text-align: center !important;
    font-size: 2.2rem !important;
  }
  .hero-section .hero-text,
  .about-section .about-desc,
  .manufacturing-section .manufacturing-text {
    text-align: center !important;
    max-width: 100% !important;
  }
  .hero-section .hero-cta,
  .manufacturing-section .manufacturing-content {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-section div[style*="flex: 1"],
  .about-section div[style*="flex: 1"],
  .manufacturing-section div[style*="flex: 1"] {
    width: 100% !important;
    padding-right: 0 !important;
  }
  .hero-image-wrap, .about-image-wrap, .manufacturing-image-wrap {
    height: 400px !important;
    margin-top: 20px !important;
  }
  .stats-section .container > div {
    grid-template-columns: 1fr !important;
  }

  /* Soul Project Page Mobile */
  .collection_list {
    grid-template-columns: 1fr !important;
  }
  .collection_item {
    width: 100% !important;
  }
  .project_name_size_wrap {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }

  /* Project Detail Mobile */
  .product_title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }
  div[style*="grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="display:flex; flex-wrap: wrap; gap: 40px"] {
    gap: 20px !important;
    padding: 15px 0 !important;
  }

  /* Product Detail Mobile Scaling */
  .thumb_grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .btn_premium {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Collection Grid & Sidebar Mobile */
  .collection-grid-container {
    flex-direction: column !important;
    gap: 30px !important;
    margin-top: 20px !important;
  }
  .filter-parent {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    max-height: none !important;
    padding-right: 0 !important;
    border-bottom: 1px solid #eee !important;
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
  }
  
  /* Mobile Menu Fix */
  .menu_inner_wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .menu_item_wrap {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Accordion Styles for Collection Sidebar */
.filter_cat_title {
  cursor: pointer;
  position: relative;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.filter_cat_title:hover {
  color: #000;
}
.filter_cat_title::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: #888;
}
.filter_cat_title.active::after {
  content: '−';
}
.filter_checkbox_wrap {
  display: none !important; /* hidden by default in accordion */
}
.filter_checkbox_wrap.open {
  display: flex !important;
}
/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

@media (max-width: 767px) {
  .whatsapp-float {
    width: 42px;
    height: 42px;
    bottom: 15px;
    left: 15px;
  }
  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }
}

/* CONTACT DETAILS GRID */
.contact_details_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact_detail_card {
  background: #fff;
  padding: 40px 30px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
}

.contact_detail_card:hover {
  border-color: var(--brand-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact_icon_wrap {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--brand-accent);
}

.contact_label {
  font-family: 'Ntsomic', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
  margin-bottom: 15px;
}

.contact_value {
  font-size: 1rem;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 500;
  display: block;
}

@media (max-width: 991px) {
  .contact_details_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

