body, html {
  margin: 0;
  padding: 0;
 overflow-x: hidden;
}

.site-container {
  position: relative;
  width: 100vw;
  height: 100vh;
}


.background-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.pot-section2 img {
    width: 90%;
    height: 95vh;
    object-fit: cover;
    border: 2px;
}
.pot-section2{
  width: 100%;
}

.site-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #52645940; /* semi-transparent color */
  backdrop-filter: brightness(70%);
  pointer-events: none;
  z-index: 1;
}
.slide-box {
  position: absolute;
  width: 100px; /* adjust width if needed */
  height: 100px; /* adjust height if needed */
  bottom: -20px;  /* fully aligned to bottom */
  left: -300px; /* start offscreen to the left */
  display: flex;
  flex-direction: column;
  z-index: 10;
  margin-left: -20px;
  animation: slideInBox .8s linear forwards;
  cursor: pointer;

}

.top-half {
    margin-left: 50px;
  height: 40%;
  width: 50%;
  background-color: black;
}

.bottom-half {
 height: 40%;
  width: 50%;
  background-color: white;
}

@keyframes slideInBox {
  to {
    left: 20px; /* lands near bottom-left */
  }
}





.slide-box-right {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -57px;         /* stick to bottom */
  right: -220px;     /* start offscreen to the right */
  display: flex;
  flex-direction: column;
  z-index: 10;
  margin-right: -60px;
  animation: slideInFromRight .8s linear forwards;
  cursor: pointer;
}


.mobile-navbar-wrapper{
  display: none;
}

.bottom-half-right {
  height: 50%;
  width: 50%;
  background-color: white;
  padding-top: 0px;
  z-index: 20;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; /* Show pointer on hover */
}

/* .bottom-half-right :hover{
  background-color: black;
} */

 
@keyframes slideInFromRight {
  to {
    right: 10px; /* final position from right edge */
  }
}


.scroll-down-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 128px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 100;
}

.arrow-icon {
  display: block;
  width: 10px;  /* small arrow */
  height: 10px;
  border: solid black;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  pointer-events: none; /* Make arrow itself ignore pointer events */

}

@keyframes bounceDown {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(5px);
  }
}






/* Fixed transparent navbar */
.pt-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: background-color 0.3s ease;
  background-color: transparent;
  color: white;
  font-family: sans-serif;
  border-bottom: 1px solid rgb(191, 190, 190);
}

/* Add black bg on scroll */
.pt-navbar.scrolled {
  background-color: black;
}

/* Internal container layout */
.pt-navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

/* Logo */
.pt-logo {
  font-size: 2rem;
  font-weight: 300;
}

/* Navigation links */
.pt-nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 0;
  margin: 0;
  font-weight: 100; 
}

.pt-nav-links li {
  cursor: pointer;
  
  
}

/* Right-aligned items */
.pt-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pt-contact-btn {
  padding: 10px 15px;
  border: 1px solid rgb(233, 233, 233);
  background: transparent;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.pt-cart {
  font-weight: normal;
}





.pt-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  z-index: 5;
  pointer-events: none; /* Allows clicks to pass through except content */
}

/* Animation keyframes */
@keyframes ptSlideUpFade {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animation trigger class */
.pt-animate-hero {
  animation: ptSlideUpFade 1s ease-out forwards;
}

/* Hero content layout */
.pt-hero-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 40px 50px;
  padding-top: 0px;
  box-sizing: border-box;
  pointer-events: auto; /* Enables interaction with inputs and buttons */
}

/* Left side text */
.pt-hero-left {
  width: 30%;
}

.pt-hero-left h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 100;
  margin-top: 0px;
}

.pt-hero-left p {
  font-size: 1rem;
  line-height: 1.2;
  color: rgb(193, 193, 193);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Right side form */
.pt-hero-right {
  width: 44%;
}
.message-overlay-box p{
   color: rgb(193, 193, 193);
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.pt-hero-right h2 {
  margin-top: 0px;
  font-size: 2.6rem;
  margin-bottom: 10px;
  text-align: right;
  font-weight: 100;
}

.pt-hero-right p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: right;
  color: rgb(193, 193, 193);
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

/* Input with arrow button */
.pt-phone-input-wrapper {
    display: flex;
    border: 1px solid white;
    padding: 6px;
    max-width: 500px;
}
.pt-phone-input {
  flex: 1;
  border: none;
  background: transparent;
  color: white;
  font-size: 12px;
  outline: none;
}

.pt-phone-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.pt-phone-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}




@keyframes slideUpFadeIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.message-overlay-box {
  background-color: transparent;
  color: #ffffff;
  padding: 35px;
  z-index: 999;
  position: absolute;
  bottom: 10px;
  display: flex;
  gap: 240px;
  margin-left: 20px;

  /* Animation */
  animation: slideUpFadeIn 1s ease-out forwards;
}


.pottery-section{
  padding-top: 100px;
  display: flex;
  padding-left: 30px;
  width: 100%;
  gap: 20px;
  margin-bottom: 50px;
}
.pot-section1a {
  display: flex;
  gap: 10px;
  padding-bottom: 220px;
  opacity: 0;
  transform: translateX(-100px); /* Start off-screen left */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Add this class when element is visible */
.pot-section1a.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.pot-section1{
  width: 50%;
}

.pot-section2{
  width: 50%;
  position: absolute;
  right: -20px;
  
}

.pot-section1a p{
  max-width: 180px;
  color: grey;

}
.pot-section1a h2{
  font-size: 3rem;
  max-width: 360px;
  font-weight: 100;
  margin-top: 10px;
}
/* Initially hidden and offset to the left */
.pot-section1b {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  display: flex;
  position: relative; /* Needed for absolutely positioned <p> */
}

/* Triggered when in view */
.pot-section1b.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.pot-section1b p {
    left: 64%;
    position: absolute;
    max-width: 191px;
    color: grey;
}

.carousel-wrapper {
  width: 600px;
  margin: 0 auto;
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.nav-button {
  background-color: white;
  border: 1px solid #ccc;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}




/* Carousel-area */

.carousel-container {
 
  width: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.carousel-track-container {
  overflow: hidden;
  width: 380px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  display: flex;
  min-width: 600px; /* width of two images combined */
  gap: 10px;
  
}

.carousel-slide img {
    width: 175px;
    height: 30vh;
    margin-right: 5px;
    margin-left: 5px;
    display: block;
}

.nav-button {
    background-color: white;
    border: 1px solid #ccc;
    font-size: 34px;
    cursor: pointer;
    padding: 1px 15px;
    position: absolute;
    z-index: 1;
    /* top: 170%;
    left: 10%; */
}


#nextBtn {
    top: -30%;
    left: 9%;
}
#prevBtn{
   top: -30%;
    left: 1%;
}


/* ====== */
.workshop-section {
  opacity: 0;
  transform: translateX(-100px); /* Start off-screen to the left */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


.workshop-section.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.workshop-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-left: 10px;
}

.left-text {
  max-width: 700px;
  z-index: 2;
  margin-top: 20px;
  display: flex;
}

.section-number {
  font-style: italic;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.left-text h2 {
    font-size: 30px;
    line-height: 1;
    margin: 21px 0px 20px;
    font-weight: 100;
}
.left-text p {
  font-family: 'Arial', sans-serif;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
}

.right-decor {
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 1;
}

.decor-text {
  font-size: 100px;
  color: #000000;
  opacity: 1;
  font-style: italic;
  white-space: nowrap;
  letter-spacing: -4px;
  pointer-events: none;
}


.workshop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 40px;
  box-sizing: border-box;
  background-color: #fff;

  /* Fade-in setup */
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.workshop-grid.fade-in {
  opacity: 1;
}


.workshop-item {
  text-align: left;
  font-family: 'Georgia', serif;
   overflow: hidden; /* Prevent image from spilling outside */
}

.workshop-item img {
  width: 100%;
  height: 50vh;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease; /* Smooth animation */
}

.workshop-item:hover img {
  transform: scale(1.05); /* Zoom in slightly */
}
.workshop-item h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  font-weight: normal;
}

.workshop-item p {
  font-size: 16px;
  color: #666;
  font-family: 'Arial', sans-serif;
}


::-webkit-scrollbar{
  display: none;
}

/* FIXED POTTERY GALLERY STYLES */
.pt-pottery-gallery {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  padding: 60px 20px;
  overflow: hidden;
}

/* SINGLE UNIFIED .pt-pottery-card RULE - NO DUPLICATE */
.pt-pottery-card {
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: 400px;
  min-width: 280px;
  /* IMPORTANT: Start hidden - NO automatic animations */
  opacity: 0;
  transform: translateY(70px);
  /* REMOVED: animation property - let JavaScript control it */
}

/* Animation classes - ONLY triggered by JavaScript scroll */
.pt-pottery-card.animate {
  animation: pt-slide-up 1s ease forwards;
}

.pt-pottery-card.animate:nth-child(1) {
  animation-delay: 0.1s;
}
.pt-pottery-card.animate:nth-child(2) {
  animation-delay: 0.3s;
}
.pt-pottery-card.animate:nth-child(3) {
  animation-delay: 0.5s;
}

.pt-pottery-img {
  width: 100%;
  height: 80vh;
  display: block;
  z-index: 0;
  position: relative;
  object-fit: cover;
}

.pt-pottery-img1 {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}



.pt-pottery-img0 {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.pt-pottery-img-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}



.pt-pottery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background:rgb(255 255 255 / 100%); /* semi-transparent background */
  text-align: center;
  font-size: 1rem;
  margin: 0;
  color: #333;
  box-sizing: border-box;
}

@keyframes pt-slide-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Corner white angle overlays - HIDDEN initially */
.pt-angle-overlay.pt-bottom-left-angle {
  position: absolute;
  width: 60px;
  height: 55px;
  background-color: white;
  bottom: 0;
  left: 0;
  z-index: 1;
  /* IMPORTANT: Hidden initially - NO automatic animation */
  transform: translateX(-100%);
}

/* ONLY animate when .animate class is added by JavaScript */
.pt-angle-overlay.pt-bottom-left-angle.animate {
  animation: slideInFromLeft 1s ease-out forwards;
  animation-delay: 0.7s;
}

@keyframes slideInFromLeft {
  to {
    transform: translateX(0);
  }
}

.pt-angle-overlay.pt-right-angle {
  position: absolute;
  width: 60px;
  height: 55px;
  background-color: white;
  top: 0;
  right: 0;
  z-index: 1;
  /* IMPORTANT: Hidden initially - NO automatic animation */
  transform: translate(100%, -100%);
}

/* ONLY animate when .animate class is added by JavaScript */
.pt-angle-overlay.pt-right-angle.animate {
  animation: slideInFromTopRight 1s ease-out forwards;
  animation-delay: 0.9s;
}

@keyframes slideInFromTopRight {
  to {
    transform: translate(0, 0);
  }
}




.discovery-section{
  display: flex;
  
  width: 100%;;
  gap: 10px;
}
.pot-section1a img{
  display: none;
} 
.discovery-section1{
  width: 50%;
  transition: transform 1s ease, opacity 1s ease;
  padding-top: 30px;
}
.hidden-left {
  transform: translateX(-100px);
  opacity: 0;
}

/* Final state after entering viewport */
.show-left {
  transform: translateX(0);
  opacity: 1;
}
.discovery-section2 {
  width: 50%;

  /* Fade-in animation setup */
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.discovery-section2.fade-in {
  opacity: 1;
}

.disc-section1 {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.disc-section1.fade-in {
  opacity: 1;
}



.discovery-section1 span{
  margin-left: 30px;
  font-size: 18px;
}
.discovery-section1 h2{
  padding-left: 40px;
  font-weight: 100;
  line-height: 1;
  font-size: 40px;

}
.discovery-section1 p{
  padding-left: 40px;
  max-width: 400px;
  color: grey;
}
.discovery-section1 button{
  margin-left: 40px;
  padding: 13px 30px;
  background-color: grey;
  border: none;
}

.disc-section{
  display: flex;
  width: 100%;
  padding-left: 60px;
}




.tp-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}

.tp-card {
  width: 300px;
  
  background-color: white;
  text-align: left;
  overflow: hidden;
}

.tp-img {
  width: 100%;
  display: block;
}

.tp-info {
  padding: 20px;
}

.tp-name {
  font-size: 20px;
  margin: 0 0 5px 0;
}

.tp-role {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  margin: 0;
}



.tp-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 40px;
  padding-left: 0px;
  
}

.tp-card {
  position: relative;
  width: 280px;
  overflow: hidden;
}

.tp-img {
  width: 100%;
  display: block;
}

.tp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
  padding: 15px 20px;
  max-width: 90%;
}

.tp-name {
  font-size: 20px;
  margin: 0 0 5px 0;
  font-weight: normal;
}

.tp-role {
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  margin: 0;
}

.site-container-mobile{
  display: none;
}

.faq-wrapper {
  max-width: 550px;
  margin: auto;
  transition: transform 1s ease, opacity 1s ease;
}

.hidden-right {
  transform: translateX(100px);
  opacity: 0;
}

.show-right {
  transform: translateX(0);
  opacity: 1;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
  background: none;
  border: none;
  font-size: 20px;
  padding: 30px 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 20px;
  font-size: 16px;
  color: #333;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}


.disc-section2{
  padding-top: 50px;
}






#testimonial-section {
  padding: 120px 0;
  position: relative;
  background: white;
  overflow: hidden;
}

/* Floating big texts */
.floating-text {
  position: absolute;
  font-size: 8vw;
  font-family: 'Georgia', serif;
  font-style: italic;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 1s ease;
}

.floating-text.animate {
  transform: translateX(0);
  opacity: .9;
}

.client-text {
  position: absolute;
  top: 70px;
  right: 10px;
  color: black;
  text-align: right;
  font-weight: 100;

  background: rgba(255, 255, 255, 0.2);
  /* backdrop-filter: blur(1px); */
  /* -webkit-backdrop-filter: blur(1px); */

  padding: 15px 20px;
  border-radius: 0px;
  padding-top: 20px;

  

  
}


.review-text {
  bottom: 100px;
  left:  0px;
  color: black;
  font-weight: 100;
  




   background: rgba(255, 255, 255, 0.2);
  /* backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px); */

  padding: 15px 20px;
  padding-top: 50px;
  border-radius: 0px;
}

/* Overlays for fade effect */
.fade-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.fade-overlay.left {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.fade-overlay.right {
  right: 0;
  background: linear-gradient(to left,white, transparent);
}



/* Testimonial scrolling rows */
.testimonial-row {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}

.testimonial {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  width: 550px;
  min-width: 350px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.testimonial img {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  flex: 1; /* take up remaining space */
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%; /* Ensures it doesn't overflow */
  box-sizing: border-box;
}

.testimonial .name {
  font-size: 1.2em;
  font-family: 'Georgia', serif;
  color: #333;
}

.testimonial .title {
  text-transform: uppercase;
  font-size: 0.85em;
  color: #777;
  margin-top: 6px;
}

.testimonial p {
  margin-top: 43px;
  color: lightslategrey;
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 0;
  white-space: normal; /* Forces wrapping */
  word-break: break-word; /* Breaks long words */
 margin-left: -60px;

}






.ceramics-section {
  padding: 100px 60px 80px;
  background: #fdf7ee;
  
  /* Move-up animation */
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
}

.ceramics-section.animate {
  opacity: 1;
  transform: translateY(0);
}


.ceramics-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  
  
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.title-block {
  flex: 1;
  min-width: 320px;
}

.section-number {
  font-style: italic;
  font-size: 1rem;
  color: #555;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 10px 0 0;
}

.section-header h2 em {
  font-style: italic;
  font-weight: 400;
}

.subtitle {
    flex: 1;
    max-width: 358px;
    font-size: 1rem;
    color: #666;
    margin-top: 34px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
}

.product-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.product {
  max-width: 220px;
  text-align: left;
}

.product img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
  height: 35vh;

}
.pro{
  border-top: 1px solid grey;
  display: flex;
  gap: 10px;
}
.product h3 {
   
  font-weight: 600;
  font-size: 1rem;
  padding-top: 14px;
  margin: 0 0 5px;
}

.price {
  font-size: 0.95rem;
  color: #222;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  margin-left: 8px;
}








.color-ceramics-section {
  padding: 80px 0px 100px;
  padding-top: 40px;
  padding-bottom: 20px;
  background: #fdf7ee;

  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  
}

.color-ceramics-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.color-ceramics-section .product-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.color-ceramics-section .product {
  max-width: 220px;
  text-align: left;
}

.color-ceramics-section .product img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
}

.color-ceramics-section .product h3 {
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0 0 5px;
  line-height: 1.4;
}

.color-ceramics-section .price {
  font-size: 0.95rem;
  color: #222;
}

.color-ceramics-section .old-price {
  text-decoration: line-through;
  color: #aaa;
  margin-left: 8px;
}

.blog-section-unique {
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px 20px;
}

    .blog-intro-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .blog-intro-text {
      flex: 1 1 50%;
    }

    .blog-intro-text h2 {
      font-size: 2.5rem;
      font-weight: normal;
      margin-bottom: 10px;
      margin-top: 0px;
      margin-left: 25px;
    }

    .blog-intro-text h2 em {
      font-style: italic;
    }

    .blog-intro-note {
      flex: 1 1 20%;
      font-family: sans-serif;
      color: #777;
      font-size: 1rem;
      line-height: 1.4;
      margin-top: 50px;
    }
    .blog-intro-text p{
      margin-bottom: 0px;
    }
    .blog-showcase-cards {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
    }

    .blog-showcase-card {
      background: #fff;
      flex: 1 1 30%;
      display: flex;
      flex-direction: column;
      gap: 0px;
      overflow: hidden;
    }

    .blog-showcase-card img {
      width: 100%;
      display: block;
     border-radius: 2px;
      transition: transform 0.4s ease;
      cursor: pointer;
    }

    .blog-showcase-card:hover img {
      transform: scale(1.05);
    }

    .blog-showcase-card .date {
      font-family: sans-serif;
      font-size: 0.9rem;
      color: #888;
      margin-top: 15px;
    }

    .blog-showcase-card h3 {
      font-size: 1.4rem;
      font-weight: normal;
      line-height: 1.3;
      margin-top: 0px;
      margin-bottom: 0px;
    }

    .blog-showcase-card .summary {
      font-family: sans-serif;
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
    }

    /* Animation base styles */
    .animate-from-left,
    .animate-from-bottom {
      opacity: 0;
      transition: all 0.8s ease;
    }

    .animate-from-left {
      transform: translateX(-80px);
    }

    .animate-from-left.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .animate-from-bottom {
      transform: translateY(60px);
    }

    .animate-from-bottom.animate {
      opacity: 1;
      transform: translateY(0);
    }

    








.box-rtol-trigger-7xa3 {
  position: absolute;
  bottom: -154px;
  
  width: 45px;
  height: 50px;
  background-color: #fdf7ee;
  transform: translateY(-50%);
  opacity: 0;



    

       
  right: 10px;     /* start offscreen to the right */

  z-index: 10;
 
 
}

.box-rtol-trigger-7xa3.animate {
  animation: moveLeft-7xa3 1s linear forwards;
  opacity: 1;
}

@keyframes moveLeft-7xa3 {
  from {
    right: -17%;
  }
  to {
    right: -20px;
  }
}




/* white-box */

.box-rtol-trigger-copy {
  position: absolute;
  bottom: -105px;

  width: 40px;
  height: 50px;
  background-color: white;
  transform: translateY(-50%);
  opacity: 0;

  right: 1px;
  z-index: 10;
}

.box-rtol-trigger-copy.animate {
  animation: moveLeft-copy 1s linear forwards;
  opacity: 1;
}

@keyframes moveLeft-copy {
  from {
    right: -17%;
  }
  to {
    right: -60px;
  }
}



.ftr-wrp-6qf9 {
  padding: 60px 180px 20px;
  background-color: #000;
  color: white;
  font-size: 14px;
  padding-bottom: 50px;
  
}

.ftr-flex-box-6qf9 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0px;
  position: relative;
}

.ftr-col-logo-6qf9 {
  flex: 1 1 250px;
}

.ftr-brand-6qf9 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.ftr-desc-6qf9 {
  line-height: 1.6;
  margin-bottom: 20px;
}

.ftr-icons-6qf9 a {
  color: white;
  margin-right: 15px;
  font-size: 18px;
  text-decoration: none;
}

.ftr-col-links-6qf9 {
  flex: 1 1 150px;
}

.ftr-head-6qf9 {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.ftr-list-6qf9 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftr-list-6qf9 li {
  margin-bottom: 8px;
}

.ftr-list-6qf9 li a {
  color: white;
  text-decoration: none;
}

.ftr-news-6qf9 {
  flex: 1 1 300px;
}

.ftr-news-title-6qf9 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -2px;
  margin-top: 10px;
}
.ftr-icons-6qf9{
  margin-top: 10px;

}

.ftr-news-text-6qf9 {
  margin-bottom: 15px;
  color: #ccc;
}

.ftr-form-6qf9 {
  display: flex;
  border: 1px solid #444;
  max-width: 300px;
}

.ftr-form-6qf9 input {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: white;
}

.ftr-form-6qf9 button {
  background: none;
  border: none;
  color: white;
  padding: 0 15px;
  font-size: 18px;
  cursor: pointer;
}

.ftr-bottom-6qf9 {
  
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #999;
}

.ftr-bottom-6qf9 a {
  color: #999;
  text-decoration: none;
}



.box-unique-trigger-a9x4 {
  position: absolute;
  bottom: 199px;
  width: 45px;
  height: 50px;
  background-color: #f2e4db;
  transform: translateY(-50%);
  opacity: 0; /* Start hidden */
  right: 1px; /* Match animation starting point */
  z-index: 10;
}

.box-unique-trigger-a9x4.animate {
  animation: slideInLeft-a9x4 .6s linear forwards;
  opacity: 1;
}

@keyframes slideInLeft-a9x4 {
  from {
    right: -30%;
  }
  to {
    right: -180px;
  }
}

.box-unique-trigger-a9x4-black {
  position: absolute;
  bottom: 151px;
  width: 49px;
  height: 50px;
  background-color: rgb(255, 255, 255);
  transform: translateY(-50%);
  opacity: 0;
  right: -30%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgb(92, 92, 92);
  cursor: pointer;
  
 
  transition: background-color 0.3s;
}

.box-unique-trigger-a9x4-black:hover {
 background-color: #f2e4db;
}


.box-unique-trigger-a9x4-black.animate {
  animation: slideInLeft-a9x4-black .8s linear forwards;
  opacity: 1;
}

@keyframes slideInLeft-a9x4-black {
  from {
    right: -30%;
  }
  to {
    right: -135px;
  }
}


.p7{
  text-align: right;
}








/* About page */

.about-landing {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 80px;
  height: 90vh;
}

/* 🔹 Add fade-in effect */
.about-landing1 {
  margin-top: 100px;
  margin-left: 50px;
  
  opacity: 0;
  animation: fadeIn 2s ease-out forwards;
  animation-delay: 0.1s; /* Optional: Delay for subtle entrance */
}

.about-landing1 h1 {
  font-size: 3.5rem;
  color: black;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 400;
}

.about-landing1 p {
  line-height: 1;
  max-width: 500px;
  color: grey;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 🔸 Keyframes for fade-in */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}




/* 🔹 Fade-up animation (opacity + upward movement) */
/* .pottery-main-photo {
  opacity: 0;
  transform: translateY(100px);
  animation: fadeUp 0.8s ease-out forwards;
  
  
}


.pottery-overlay-thumbnail {
  opacity: 0;
  transform: translateY(100px);
  animation: fadeIn 0.8s ease-out 0.8s forwards; 
  animation: fadeUp 0.8s ease-out forwards;
} */

/* Keyframes for fade-up */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframes for fade-in */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* 🔧 Layout styles (unchanged) */
.pottery-collage-container {
  position: relative;
  width: fit-content;
  display: inline-block;
  opacity: 0;
  transform: translateY(50px); /* Start slightly below */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pottery-collage-container.animate-in {
  opacity: 1;
  transform: translateY(0); /* Move up into place */
}


.pottery-main-photo {
  position: relative;
  z-index: 2;
}

.pottery-main-photo img {
  display: block;
  width: 500px;
  height: auto;
}

.pottery-overlay-thumbnail {
  position: absolute;
  bottom: -60px;
  left: -132px;
  width: 224px;
  z-index: 1;
  opacity: 0.95;
}

.pottery-overlay-thumbnail img {
  width: 270px;
  height: auto;
  display: block;
}









    .square-box-left,
    .square-box-right {
    width: 50px; 
    height: 48px;
      position: absolute;
      background-color: #e74c3c;
      opacity: 0;
      z-index: 10;
    }

    .square-box-left {
      top: 46.3%;
      left: 58.97%;
      transform: translate(-50%, -50%);
      animation: animateFromLeft 1s forwards;
      background-color: #000000;
    }

    .square-box-right {
      top: 54%;
      left: 64%;
      transform: translate(-50%, -50%);
      animation: animateFromRight 1s forwards;
     
      background-color: #000000;
    }

    @keyframes animateFromLeft {
      from {
        transform: translate(-250%, -50%);
        opacity: 0;
      }
      to {
        transform: translate(-50%, -50%);
        opacity: 1;
      }
    }

    @keyframes animateFromRight {
      from {
        transform: translate(50%, -50%);
        opacity: 0;
      }
      to {
        transform: translate(-80%, -50%);
        opacity: 1;
      }
    }




    /* bottom-left */

    .bottom-left-box-1,
    .bottom-left-box-2 {
      width: 47px;
      height: 47px;
      position: absolute;
      background-color: #9b59b6;
      opacity: 0;
      z-index: 10;
    }

    .bottom-left-box-1 {
      left: 0px;
      bottom: 45px; /* space between the two */
      animation: fromRight1 1s forwards;
      background-color: #f2e4db;
    }

    .bottom-left-box-2 {
      left: 46px;
      bottom: 0px;
      animation: fromRight2 1s forwards;
      animation-delay: 0.5s;
      background-color: #f2e4db;
    }

    @keyframes fromRight1 {
      from {
        transform: translateX(150%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes fromRight2 {
      from {
        transform: translateX(150%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }








/* ========================================================================================= */

 .pt-nav-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 20px;
      color: grey;
      font-weight: 100;
    }

    .pt-nav-links > li {
      position: relative;
      cursor: pointer;
      padding: 10px;
    }

    /* Dropdown container hidden by default */
    .pt-nav-links li ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      min-width: 220px;
      box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
      border: 1px solid #eee;
      z-index: 1000;
      padding: 0;
    }

    /* Show dropdown on hover */
    .pt-nav-links li:hover > ul {
      display: block;
    }

    /* Dropdown list item styles */
    .pt-nav-links li ul li {
      list-style: none;
      padding: 12px 16px 12px 24px;
      position: relative;
      font-weight: 400;
      color: #333;
      white-space: nowrap;
      transition: background-color 0.2s, padding-left 0.2s;
    }

    /* Dash appears on hover */
    .pt-nav-links li ul li:hover::before {
      content: '';
      position: absolute;
      left: 8px;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 2px;
      background-color: #000; /* Dash color */
    }

    .pt-nav-links li ul li:hover {
      background-color: #f0f0f0;
    }
/* ===================================================================================== */
a{
  text-decoration: none;
  color: black;
}
    /* .profile-container {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}


.profile-container img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0;
  transform: translate(60px, -30px); 
  animation: slideInTopRight 0.8s ease-out forwards;
}


.profile-container img:nth-child(1) {
  animation-delay: 0.2s;
}
.profile-container img:nth-child(2) {
  animation-delay: 0.4s;
}
.profile-container img:nth-child(3) {
  animation-delay: 0.6s;
}
.profile-container img:nth-child(4) {
  animation-delay: 0.8s;
}


@keyframes slideInTopRight {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
} */



/* Section with zoom-out effect */
.zoom-reveal-section--pottery-unique847 {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.zoom-reveal-section--pottery-unique847.visible {
  opacity: 1;
  transform: scale(1);
}

/* Profile image container */
.profile-container--unique847 {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  margin-left: 40px;
  margin-bottom: 100px;
}

/* Profile images animate from top-right */
.profile-container--unique847 img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid white;
  opacity: 0;
    margin-left: -30px; /* Creates overlap */

  transform: translate(60px, -30px);
  animation: slideInTopRightUnique847 0.8s ease-out forwards;
  animation-play-state: paused; /* Don't animate yet */
}

.profile-container--unique847.visible img {
  animation-play-state: running; /* Start animation */
}

.profile-container--unique847.visible img:nth-child(1) {
  animation-delay: 0.2s;
}
.profile-container--unique847.visible img:nth-child(2) {
  animation-delay: 0.4s;
}
.profile-container--unique847.visible img:nth-child(3) {
  animation-delay: 0.6s;
}
.profile-container--unique847.visible img:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes slideInTopRightUnique847 {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}


/* Workshop content (text + input) */
.workshop-content--unique847 {
  margin-top: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.workshop-content--unique847 h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  line-height: 45px;
  font-weight: 400;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.workshop-content--unique847 p {
  font-size: 1rem;
  color: #666;
  max-width: 500px;
  margin-bottom: 25px;
  margin-right: 70px;
}

/* Phone input styling */
.phone-input--unique847 {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 1px;
    width: 350px;
    outline: none;
}


.abouts-anim
{
  display: flex;
  width: 100%;
  gap: 20px;
  margin-left: 50px;
  margin-top: 80px;
  margin-bottom: 100px;
}
.abouts-anim2 img {
  width: 100%;
  opacity: 0;
  transform: translateX(40px); /* small right offset */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.abouts-anim2.animate-about img {
  opacity: 1;
  transform: translateX(0);
}


.abouts-anim1{
  width: 35%;
  padding-left: 20px;
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: #faf5ec;
  margin-bottom: 40px;
  
}
.abouts-anim2{
  width: 55%;
}






 .pw-section-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 90px 40px;
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      
    }

    .pw-section-wrapper.pw-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .pw-image-group {
      display: flex;
      gap: 20px;
      margin-left: 10px;
      padding: 0;
    }

 .pw-image {
    width: 268px;
    height: auto;
    border-radius: 0px;
}

   .pw-text-content {
    max-width: 564px;
    margin-left: 200px;
}
    .pw-section-label {
      font-style: italic;
      font-size: 18px;
    }

    .pw-heading {
      font-size: 36px;
      font-weight: 400;
      font-style: italic;
      margin: 10px 0;
    }

    .pw-description {
      font-size: 18px;
      color: #666;
      margin-top: 20px;
    }


    .secondvid{
      margin-top: 120px;
      margin-bottom: 120px;
      position: relative;
    }

    
/* Initial state for both boxes */
.unique-box-a,
.unique-box-b {
  width: 45px;
  height: 45px;
  position: absolute;
  background-color: white;
  opacity: 0;
  z-index: 10;
}

/* Final positions (without animation) */
.unique-box-a {
  left: 46px;
  bottom: 45px;
}

.unique-box-b {
  left: 0px;
  bottom: 0px;
}

/* Triggered animation class */
.animate-box-a {
  animation: animateFromLeft1 1s forwards;
  animation-delay: 0.5s;
}

.animate-box-b {
  animation: animateFromLeft2 1s forwards;
}

/* Keyframes for animations */
@keyframes animateFromLeft1 {
  from {
    transform: translateX(-150%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes animateFromLeft2 {
  from {
    transform: translateX(-150%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}












































@media (min-width: 1400px){

  .background-video {
    width: 100%;
    height: 93vh;
    object-fit: cover;
}
.site-container {
    position: relative;
    width: 100vw;
    height: 93vh;
}
.slide-box {
        position: absolute;
        width: 103px;
        height: 136px;
        bottom: -29px;
    }
.slide-box-right {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: -53px;
    right: -220px;
    margin-right: -60px;
}
.message-overlay-box {
    background-color: transparent;
    color: #ffffff;
    padding: 35px;
    z-index: 999;
    position: absolute;
    bottom: 14px;
    padding-left: 100px;
    padding-right: 85px;
   
}
  
    .pt-hero-content {
        display: flex
;
        justify-content: space-between;
        width: 100%;
        position: absolute;
        top: 170px;
        padding-left: 119px;
        padding-right: 70px;
    }

.scroll-down-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 136px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.pt-phone-input-wrapper {
    display: flex
;
    border: 1px solid rgb(164, 162, 162);
    padding: 8px;
    max-width: 455px;
    margin-left: 70px;
} 
.top-half {
    margin-left: 52px;
    height: 40%;
}

.pt-hero-right p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: right;
    margin-left: 40px;
}
.pot-section1{
  padding-left: 100px;
}
.carousel-slide img {
    width: 160px;
    height: 18vh;
    margin-right: 5px;
    margin-left: 5px;
    display: block;
}
#nextBtn {
    top: -38%;
    left: 9%;
}
#prevBtn {
    top: -38%;
    left: 1%;
}
.pot-section1b p {
    left: 52%;
    line-height: 19px;
    position: absolute;
    max-width: 191px;
    color: #676767;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.pot-section1a h2 {
    font-size: 2.5rem;
    max-width: 316px;
    font-weight: 100;
    margin-top: 10px;
}
.pot-section1a p {
    max-width: 280px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color:#676767;
}
.pottery-section {
    padding-top: 100px;
    display: flex
;
    padding-left: 27px;
    width: 100%;
    gap: 8px;
    margin-bottom: 50px;
}
.pot-section1a {
    display: flex
;
    gap: 8px;
    padding-bottom: 220px;
}



.pot-section2 img {
    width: 42%;
    height: 59vh;
    object-fit: cover;
}
      .pot-section2 img {
        width: 75%;
        height: 58vh;
        margin-left: 60px;
        object-fit: cover;
    }
.workshop-content {
    display: flex
;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-left: 110px;
}
.left-text p {
    font-family: 'Arial', sans-serif;
    color: #676767;
    font-size: 15px;
    line-height: 1.3;
    max-width: 300px;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 43px 130px;
    box-sizing: border-box;
    background-color: #fff;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.workshop-item img {
    width: 100%;
    height: 34vh;
    
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.tp-container{
  gap: 15px;
}
.discovery-section1 {
    width: 39%;
    transition: transform 1s ease, opacity 1s ease;
    padding-top: 30px;
}
.show-left {
    transform: translateX(0);
    opacity: 1;
    padding-left: 100px;
}
.discovery-section1 h2 {
    padding-left: 40px;
    font-weight: 100;
    line-height: 1;
    font-size: 40px;
    margin-top: 6px;
}
.disc-section {
    display: flex
;
    width: 100%;
    padding-left: 140px;
}
    .pt-pottery-gallery {
        display: flex
;
        align-items: flex-start;
        gap: 10px;
        padding: 60px 20px;
        overflow: hidden;
        height: 46vh;
    }
.pt-pottery-img0 {
    width: 100%;
    height: 57vh;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}
.pt-angle-overlay.pt-bottom-left-angle{
  height: 90px;
}

.pt-pottery-img {
    width: 100%;
    height: 48vh;
    display: block;
    z-index: 0;
    position: relative;
    object-fit: cover;
}
.pt-pottery-card {
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 450px;
    min-width: 280px;
}
.pt-pottery-img1 {
    width: 100%;
    height: 57vh;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}
.pt-pottery-caption {
    position: absolute;
    bottom: 225px;
    left: 0;
    width: 100%;
    color: lightslategrey;
    text-align: start;
    font-size: 18px;
    font-weight: 100;
}
.ceramics-section{
  padding: 100px 125px 80px;
}
.product-grid {
    display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-right: 30px;
    padding-left: 30px;
}
.product img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
    height: 30vh;
}



.box-rtol-trigger-copy {
  position: absolute;
  bottom: -105px;

  width: 50px;
  height: 50px;
  background-color: white;
  transform: translateY(-50%);
  opacity: 0;

  right: 1px;
  z-index: 10;
}

.box-rtol-trigger-copy.animate {
  animation: moveLeft-copy 1s linear forwards;
  opacity: 1;
}

@keyframes moveLeft-copy {
  from {
    right: -17%;
  }
  to {
    right: -120px;
  }
}



.box-rtol-trigger-7xa3 {
  position: absolute;
  bottom: -154px;
  
  width: 50px;
  height: 50px;
  background-color: #fdf7ee;
  transform: translateY(-50%);
  opacity: 0;



    

       
  right: 10px;     /* start offscreen to the right */

  z-index: 10;
 
 
}

.box-rtol-trigger-7xa3.animate {
  animation: moveLeft-7xa3 1s linear forwards;
  opacity: 1;
}

@keyframes moveLeft-7xa3 {
 from {
    right: -17%;
  }
  to {
    right: -70px;
  }
}



.blog-showcase-card img {
    width: 100%;
    display: block;
    border-radius: 2px;
    transition: transform 0.4s ease;
    cursor: pointer;
    height: 35vh;
}
.box-unique-trigger-a9x4-black {
    position: absolute;
    bottom: 138px;
    width: 60px;
    height: 60px;
}
.box-unique-trigger-a9x4 {
    position: absolute;
    bottom: 195px;
    width: 50px;
    height: 55px;
}

@keyframes slideInLeft-a9x4-black {
  from {
    right: -30%;
  }
  to {
    right: -131px;
  }
}










/* about */
.pot-section2 {
    width: 50%;
    position: absolute;
    right: 0px;
}
.about-landing {
    display: flex
;
    justify-content: space-between;
    width: 100%;
    margin-top: 80px;
    height: 58vh;
}
.pottery-overlay-thumbnail img {
    width: 357px;
    height: auto;
    display: block;
}
.pottery-overlay-thumbnail {
    position: absolute;
    bottom: -60px;
    left: -159px;
    width: 224px;
    z-index: 1;
    opacity: 0.95;
}
.pottery-main-photo img{
  width: 580px;
}

    .square-box-left {
        top: 32%;
        left: 57.8%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
.square-box-right {
    top: 38.8%;
    left: 62.7%; 
    transform: translate(-50%, -50%);
    animation: animateFromRight 1s forwards;
    background-color: #000000;
}
.about-landing1 {
    margin-top: 100px;
    margin-left: 140px;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
    animation-delay: 0.1s;
}
.pw-description {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
    margin-right: 150px;
}
.pw-image-group {
    display: flex
;
    gap: 20px;
    margin-left: 100px;
    padding: 0;
}
.pw-text-content {
    max-width: 564px;
    margin-left: 180px;
}
.pw-heading {
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    margin: 10px 0;
    margin-right: 50px;
}
.bottom-left-box-2 {
    left: 55px;
    bottom: 200px;
    animation: fromRight2 1s forwards;
    animation-delay: 0.5s;
    background-color: #f2e4db;
}
.bottom-left-box-1 {
    left: 0px;
    bottom: 255px;
    animation: fromRight1 1s forwards;
    background-color: #f2e4db;
}
.bottom-left-box-1, .bottom-left-box-2 {
    width: 55px;
    height: 55px;
    position: absolute;
    background-color:#f2e4db;
    opacity: 0;
    z-index: 10;
}
.background-video-about{
  width: 100%;
}
.abouts-anim {
    display: flex
;
    width: 88%;
    gap: 20px;
    margin-left: 130px;
    margin-top: 80px;
    margin-bottom: 100px;
    padding-right: 211px;
}
   .square-box-left,
    .square-box-right {
    width: 55px; 
    height: 55px;
      position: absolute;
      background-color: #000000;
      opacity: 0;
      z-index: 10;
    }



}





@media (max-width: 767px){
.pt-navbar{
  display: none;
}
.pt-hero-content {
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 0px 10px;
    padding-top: 0px;
    box-sizing: border-box;
    pointer-events: auto;
}
.pt-hero-left {
    width: 100%;
    border-bottom: 1px solid grey;
}
.pt-hero-right {
    width: 100%;
}
.message-overlay-box{
  display: none;
}

.pt-hero-right h2 {
    margin-top: 23px;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 100;
}
.pt-hero-right p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: right;
    color: rgb(193, 193, 193);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}
.pt-hero-left p {
    font-size: 1rem;
    line-height: 1.2;
    color: rgb(193, 193, 193);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-bottom: 45px;
}
.pt-hero-left h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 100;
    margin-top: 0px;
}
.background-video{
  display: none ;
}
.slide-box{
  display: none;
}
.slide-box-right{
  display: none;
}



/* .site-container {
    position: relative;
    width: 100vw;
    height: 85vh;
    background:#526459;
} */
.site-container {
    position: relative;
    width: 100%;
    background: #526459;
    /* Remove the fixed height */
    height: 70vh;
   
    padding-bottom: 2rem; /* Optional: prevents content from touching bottom */
  }
  .pot-section1b{
    width: 100%;
  }

.site-container-mobile{
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}
.background-video-mobile {
  width: 100%;
  height: 35vh;
  object-fit: cover;
  display: block;
}

.pt-phone-input-wrapper {
    display: flex;
    border: 1px solid white;
    padding: 6px;
    max-width: 500px;
    margin-bottom: -40px;
}
.pot-section1a {
flex-direction: column;
    gap: 0px;
    padding-bottom: 100px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.pot-section1a h2 {
    font-size: 2.2rem;
    max-width: 400px;
    font-weight: 100;
    margin-top: 10px;
    margin-bottom: 0px;
    line-height: 32px;
    margin-left: 15px;
}


.pot-section1a p {
    max-width: 314px;
    margin-left: 15px;
    color: grey;
}
.pottery-section {
    padding-top: 100px;
    display: flex
;
    padding-left: 13px;
    width: 100%;
    gap: 20px;
    margin-bottom: 50px;
    margin-right: 13px;
}

.pot-section1a img {
    display: block;
    width: 100%;           /* Take full width of parent container */
    height: 41vh;          /* Maintain your desired vertical sizing */
    object-fit: cover;
    max-width: 93%;       /* Prevents overflow */
    min-width: 0;          /* Avoids forcing it wider than parent */
}

.pot-section1b {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
   
    position: relative;
}
.tp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    padding: 5px 5px;
    max-width: 90%;
}
.pot-section1b p {
    top: 96%;
    left: 2%;
    position: absolute;
    max-width: 319px;
    color: grey;
}
.right-decor{
  display: none;
}
.carousel-slide img {
    width: 161px;
    height: 20vh;
    margin-right: 5px;
    margin-left: 5px;
    display: block;
}
#prevBtn {
    top: -39%;
    left: 1%;
}
#nextBtn {
    top: -39%;
    left: 15%;
}
.workshop-content {
  
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-left: 10px;
    padding-top: 30px;
}

.left-text {
    max-width: 700px;
    z-index: 2;
    margin-top: 20px;
    flex-direction: column;
}
.left-text h2 {
    font-size: 30px;
    line-height: 1;
    margin: 0px 11px 13px;
    font-weight: 100;
}
.left-text p {
    font-family: 'Arial', sans-serif;
    color: #666;
    font-size: 15px;
    line-height: 1.3;
    max-width: 300px;
    margin-left: 14px;
}
.workshop-grid {
   display: block;

    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 32px 14px;
    box-sizing: border-box;
    background-color: #fff;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.discovery-section {
   flex-direction: column;
    width: 100%;
    gap: 10px;
}
.discovery-section1 h2 {
    padding-left: 30px;
    font-weight: 100;
    line-height: 1;
    font-size: 26px;
    margin-top: 5px;
}
.discovery-section1 {
    width: 100%;
    transition: transform 1s ease, opacity 1s ease;
    padding-top: 20px;
}
.discovery-section1 span {
    margin-left: 20px;
    font-size: 18px;
}
.discovery-section1 p {
    padding-left: 30px;
    max-width: 400px;
    color: grey;
}
.discovery-section1 button {
    margin-left: 30px;
    padding: 13px 30px;
    background-color: grey;
    border: none;
}
.discovery-section2 {
    width: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.tp-container {
  flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 15px;
    padding-left: 15px;
}
.tp-card {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.tp-img {
    width: 100%;
    display: block;
    height: 60vh;
    object-fit: cover;
}
.disc-section {
   flex-direction: column;
    width: 100%;
    padding-left: 0px;
}
.disc-section2 {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
}









.pt-pottery-img0 {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    z-index: 0;
    overflow: hidden;
    height:  40vh;
  }

  .pt-pottery-img0 img {
    width: 100%;
    height: 50vh; /* or adjust as needed */
    object-fit: cover;
    display: block;
  }
.pt-pottery-img1 {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    z-index: 0;
    overflow: hidden;
    height:  40vh;
  }

  .pt-pottery-img1 img {
    width: 100%;
    height: 50vh; /* or adjust as needed */
    object-fit: cover;
    display: block;
  }
  /* Optional: Fix other cards to be full width on mobile */
  .pt-pottery-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 50px;
  }

  .pt-pottery-card {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .pt-pottery-img-container {
    width: 100%;
    height: 50vh;
  }

  .pt-pottery-img-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .pt-pottery-caption {
    font-size: 0.95rem;
    padding: 10px;
    line-height: 1.4;
  }
  .pt-angle-overlay.pt-bottom-left-angle {
    position: absolute;
    width: 42px;
    height: 35px;
    background-color: white;
    bottom: 0;
  }
  .pt-angle-overlay.pt-right-angle {
    position: absolute;
    width: 42px;
    height: 35px;
    background-color: white;
    top: 0;
  }
  .client-text{
    display: none;
  }
  .review-text{
    display: none;
  }
  #testimonial-section {
    padding: 30px 0;
    position: relative;
    background: white;
    overflow: hidden;
}
.ceramics-section {
    padding: 90px 15px 80px;
    background: #fdf7ee;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}
.subtitle{
  margin-left: 20px;
  margin-top: 10px;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 10px 0 0;
    margin-left: 20px;
}
.product {
    max-width: 1200px;
    text-align: center;
    width: 100%;
}

.pro {
    border-top: 1px solid grey;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}
.price{
  margin-top: 5px;
}
.color-ceramics-section .product {
    max-width: 1200px;
    text-align: left;
    width: 100%;
}
  .blog-intro-text p {
      margin-bottom: 0px;
      font-size: .9rem;
    }
    .blog-intro-wrapper {
    flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      margin-bottom: 60px;
  }
  .blog-intro-text h2 {
      font-size: 2.5rem;
      font-weight: normal;
      margin-bottom: 10px;
      margin-top: 0px;
      margin-left: 15px;
  }
  .blog-intro-note {
      flex: 1 1 20%;
      font-family: sans-serif;
      color: #777;
      font-size: 1rem;
      line-height: 1.4;
      margin-top: 0px;
      margin-left: 15px;
  }
  .blog-showcase-cards {
      flex-direction: column;
      gap: 25px;
      flex-wrap: wrap;
  }



















 .ftr-wrp-6qf9 {
    padding: 40px 20px 20px;
    text-align: center;
  }

  .ftr-flex-box-6qf9 {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .ftr-col-logo-6qf9,
  .ftr-col-links-6qf9,
  .ftr-news-6qf9 {
    width: 100%;
    flex: none;
    margin-bottom: 0px;
  }

  .ftr-brand-6qf9 {
    font-size: 28px;
  }

  .ftr-desc-6qf9 {
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .ftr-col-links-6qf9 {
    margin-top: 10px;
  }

  .ftr-head-6qf9 {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
  }

  .ftr-list-6qf9 li {
    margin-bottom: 6px;
  }

  .ftr-news-title-6qf9 {
    font-size: 24px;
    letter-spacing: -1px;
  }

  .ftr-news-text-6qf9 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .ftr-form-6qf9 {
    max-width: 100%;
    width: 100%;
  }

  .ftr-bottom-6qf9 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
    margin-top: 0px;
  }

  .ftr-icons-6qf9 {
    margin-top: 10px;
  }

  .ftr-icons-6qf9 a {
    margin: 0 8px;
  }

  .ftr-copy-6qf9,
  .ftr-credit-6qf9 {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 0px;
  }




.faq-question{
  color: black;
}
.faq-answer{
  color: black;
}



  /* Mobile Nav Wrapper */
.mobile-navbar-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  color: white;
  z-index: 999;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid grey;
}

.mobile-navbar-wrapper.scrolled {
  background-color: black;
}

.mobile-navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}

.mobile-logo {
  font-size: 24px;
  font-weight: bold;
}

.mobile-cart-menu {
  display: flex;
  align-items: center;
}

.mobile-cart-text {
  margin-right: 20px;
  font-size: 14px;
}

.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-icon span {
  height: 2px;
  width: 20px;
  background: white;
  transition: 0.3s ease;
}

/* Slide-in Mobile Menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  left: -106%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: white;
  padding: 40px 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.15);
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-slide-menu.open {
  left: 0;
}

.mobile-close-btn {
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 20px;
  text-align: right;
  color: black;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 18px;
}

.mobile-nav-list li a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
}

.mobile-contact-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  border: 1px solid black;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: black;
  text-decoration: none;
}

.site-container-mobile-about{
  display: none;
}



/* about */

.about-landing1 {
    margin-top: 300px;
    margin-left: 0px;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
    animation-delay: 0.1s;
    text-align: center;
}
    .about-landing1 p {
        margin-top: 0px;
        padding-left: 10px;
        padding-right: 10px;
    }
.bottom-left-box-1 {
  display: none;
}
.bottom-left-box-2 {
  display: none;
}
.pw-image-group {
  order: 2;
    flex-direction: column;
    gap: 20px;
    margin-left: 0px;
    padding: 0;
}

.pw-text-content {
  order: 1;
    max-width: 569px;
    margin-left: 00px;
}
.pw-section-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    padding-bottom: 0px;
}
.pw-description {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
    margin-bottom: 35px;
}


.pottery-overlay-thumbnail {
        position: absolute;
      bottom: -16.875rem;
      left: -23.5rem;

        width: 224px;
        z-index: 1;
        opacity: 0.95;
    }
.pottery-main-photo {
        position: relative;
        z-index: 2;
        position: absolute;
        bottom: -190px;
        margin-left: -17rem;
    }
 .pottery-main-photo img {
        display: block;
        width: 272px;
        height: 35vh;
    }
.pottery-overlay-thumbnail img {
    width: 200px;
    height: auto;
    display: block;
}
.pot-section2 img {
  
    display: none;
}
.pot-section1 {
    width: 100%;
}

.square-box-left, .square-box-right {
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: #000000;
    opacity: 0;
    z-index: 10;
}
.square-box-left {
    top: 32.3%;
    left: 23.97%;
    transform: translate(-50%, -50%);
    animation: animateFromLeft 1s forwards;
    background-color: #000000;
}
.square-box-right {
    top: 37%;
    left: 34.5%;
}
.pw-image {
    width: 100%;
    height: auto;
    /* border-radius: 0px; */
}

.secondvid {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}
.background-video-about{
  width: 100%;
  height: 40vh;
  object-fit: cover;
}
.abouts-anim {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-left: 15px;
    margin-top: 40px;
    margin-bottom: 100px;
}
.abouts-anim1 {
    width: 100%;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 40px;
    background-color: #faf5ec;
    margin-bottom: 20px;
}
.abouts-anim2 {
    width: 100%;
}
.phone-input--unique847 {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 1px;
    width: 70%;
    outline: none;
}
.workshop-content--unique847 p {
    font-size: 1rem;
    color: #666;
    max-width: 100%;
    margin-bottom: 25px;
   margin-right: 0px;
}
.workshop-content--unique847 h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.workshop-content--unique847 {
    margin-top: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    text-align: center;
}
.profile-container--unique847 {
    display: flex
; text-align: center;
    gap: 10px;
    margin-top: 10px;
    margin-left: 40px;
    margin-bottom: 100px;
}



  .abouts-anim {
    flex-direction: column;
    gap: 20px;
    margin: 40px 15px; /* Use side margin instead of left/right */
    width: auto;       /* Ensure it's not fixed-width */
  }

  .abouts-anim1{
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }
  
  .abouts-anim2 {
    padding: 0px;
  }

  .profile-container--unique847 {
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    justify-content: center;
  }

  .workshop-content--unique847 p {
    margin-right: 0;
    padding: 0 10px;
  }

  .phone-input--unique847 {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }
.about-landing {
    display: flex
;
    justify-content: space-between;
    width: 100%;
    margin-top: 83px;
    height: auto;
}

}























@media (min-width: 768px) and (max-width: 991.98px){
  
.pt-navbar{
  display: none;
}
 /* Mobile Nav Wrapper */
.mobile-navbar-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  color: white;
  z-index: 999;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid grey;
}


.mobile-navbar-wrapper.scrolled {
  background-color: black;
}

.mobile-navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}

.mobile-logo {
  font-size: 24px;
  font-weight: bold;
}

.mobile-cart-menu {
  display: flex;
  align-items: center;
}

.mobile-cart-text {
  margin-right: 20px;
  font-size: 14px;
}

.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-icon span {
  height: 2px;
  width: 20px;
  background: white;
  transition: 0.3s ease;
}

/* Slide-in Mobile Menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: white;
  padding: 40px 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.15);
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-slide-menu.open {
  left: 0;
}

.mobile-close-btn {
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 20px;
  text-align: right;
  color: black;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 18px;
}

.mobile-nav-list li a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
}

.mobile-contact-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  border: 1px solid black;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: black;
  text-decoration: none;
}
.pt-hero-overlay {
    position: absolute;
    top: -188px;
    left: 0;
}
.message-overlay-box {
    background-color: transparent;
    color: #ffffff;
    padding: 35px;
    z-index: 999;
    position: absolute;
    bottom: 105px;
    display: flex
;
    gap: 240px;
}
    .pot-section2 img {
        width: 90%;
        height: 54vh;
        object-fit: cover;
    }
.pot-section1a {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 50px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.carousel-slide img {
    width: 167px;
    height: 16vh;
    margin-right: 5px;
    margin-left: 5px;
    display: block;
}
.pot-section1b p {
        left: 2%;
        position: absolute;
        max-width: 300px;
        color: grey;
        top: 157px;
    }

.pot-section1a h2{
    font-size: 3rem;
    max-width: 326px;
    font-weight: 100;
    margin-top: 10px;
    margin-bottom: 0px;
}


.pot-section1a p {
    max-width: 300px;
    color: grey;
    margin-bottom: 30px;
}
.right-decor{
  display: none;
}
.workshop-grid {
    display: block;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 40px;
    box-sizing: border-box;
    background-color: #fff;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.tp-card {
    position: relative;
    width: 153px;
    overflow: hidden;
}
.faq-wrapper {
    max-width: 283px;
    margin: auto;
    transition: transform 1s ease, opacity 1s ease;
}
.faq-question {
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: left;
    background: none;
    border: none;
    font-size: 20px;
    padding: 6px 0;
}
.disc-section2 {
    padding-top: 0px;
}
.pt-pottery-img-container {
    position: relative;
    width: 100%;
    height: 38vh;
    overflow: hidden;
}
.pt-pottery-img0 {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}
.pt-pottery-img1 {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}
.pt-pottery-gallery {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 10px;
    padding-top: 100px;
    overflow: hidden;
}
.pt-pottery-gallery{
  display: none;
}
.blog-showcase-cards {
  flex-direction: column;
    gap: 25px;
    flex-wrap: wrap;
}





 .ftr-wrp-6qf9 {
    padding: 40px 20px 20px;
    text-align: center;
  }

  .ftr-flex-box-6qf9 {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .ftr-col-logo-6qf9,
  .ftr-col-links-6qf9,
  .ftr-news-6qf9 {
    width: 100%;
    flex: none;
    margin-bottom: 0px;
  }

  .ftr-brand-6qf9 {
    font-size: 28px;
  }

  .ftr-desc-6qf9 {
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .ftr-col-links-6qf9 {
    margin-top: 10px;
  }

  .ftr-head-6qf9 {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
  }

  .ftr-list-6qf9 li {
    margin-bottom: 6px;
  }

  .ftr-news-title-6qf9 {
    font-size: 24px;
    letter-spacing: -1px;
  }

  .ftr-news-text-6qf9 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .ftr-form-6qf9 {
    max-width: 100%;
    width: 100%;
  }

  .ftr-bottom-6qf9 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
    margin-top: 0px;
  }

  .ftr-icons-6qf9 {
    margin-top: 10px;
  }

  .ftr-icons-6qf9 a {
    margin: 0 8px;
  }

  .ftr-copy-6qf9,
  .ftr-credit-6qf9 {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 0px;
  }




.faq-question{
  color: black;
}
.faq-answer{
  color: black;
}

    .ftr-form-6qf9 {
      display: none;
    }










    /* about */

    .about-landing1 {
    margin-top: 450px;
    margin-left: 0px;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
    animation-delay: 0.1s;
    text-align: center;
   width: 100%;
}
    .about-landing1 p {
        margin-top: 0px;
        padding-left: 115px;
        padding-right: 0px;
        padding-bottom: 40px;
    }
.bottom-left-box-1 {
  display: none;
}

.bottom-left-box-2 {
  display: none;
}
.pw-image-group {
  order: 1;
    flex-direction: column;
    gap: 20px;
    margin-left: 0px;
    padding: 0;
}

.pw-text-content {
  order: 2;
    max-width: 569px;
    margin-left: 00px;
}
.pw-section-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
    gap: 30px;
    padding: 30px 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    padding-bottom: 0px;
}
.pw-description {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
    margin-bottom: 35px;
}


    .pottery-overlay-thumbnail {
        position: absolute;
        bottom: -27.875rem;
        left: -48.5rem;
        width: 262px;
        z-index: 1;
        opacity: 0.95;
    }
    .pottery-main-photo {
        position: relative;
        z-index: 2;
        position: absolute;
        bottom: -381px;
        margin-left: -32rem;
    }
.pottery-main-photo img {
        display: block;
        width: 512px;
        height: 41vh;
    }
    .pottery-overlay-thumbnail img {
        width: 366px;
        height: auto;
        display: block;
    }
.pot-section2 {
    width: 45%;
    position: absolute;
    right: 0px;
}
.pot-section1 {
    width: 100%;
}
.tp-img {
    width: 100%;
    display: block;
    height: 29vh;
}

.square-box-left, .square-box-right {
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: #000000;
    opacity: 0;
    z-index: 10;
}
.square-box-left {
        top: 27.7%;
        left: 30.97%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
    .square-box-right {
        top: 30.6%;
        left: 36.5%;
    }
.pw-image {
    width: 100%;
    height: auto;
    /* border-radius: 0px; */
}

.secondvid {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}
.background-video-about{
  width: 100%;
  height: 40vh;
  object-fit: cover;
}


.abouts-anim2 img {
    width: 90%;
    height: 56vh;
    object-fit: cover;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.abouts-anim {
    display: flex
;
    width: 100%;
    gap: 20px;
    margin-left: 40px;
    margin-top: 80px;
    margin-bottom: 100px;
}

.phone-input--unique847 {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 1px;
    width: 167px;
    outline: none;
}
.about-landing {
    display: flex
;
    justify-content: space-between;
    width: 100%;
    margin-top: 83px;
    height: auto;
}










}
.background-video-mobile-about{
  display: none;
}
@media (min-width: 992px) and (max-width: 1200px){}




@media screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  /* Styles specifically for iPhone XR */

      .pottery-overlay-thumbnail {
        position: absolute;
        bottom: -16.875rem;
        left: -25.9rem !important;
        width: 224px;
        z-index: 1;
        opacity: 0.95;
    }
    .pottery-main-photo img {
        display: block;
        width: 271px;
        height: 26vh;
    }
        .square-box-left {
        top: 24.3%;
        left: 30.7%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
        .square-box-right {
        top: 28%;
        left: 40%;
    }
    .square-box-left {
        top: 24.3%;
        left: 30.97%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
    .carousel-slide img {
        width: 178px;
        height: 20vh;
        margin-right: 5px;
        margin-left: 5px;
        display: block;
    }
}



/* 12 pro */
@media screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
  .pottery-overlay-thumbnail {
        position: absolute;
        bottom: -14.875rem;
        left: -24.5rem;
        width: 224px;
        z-index: 1;
        opacity: 0.95;
    }
    .pottery-main-photo img {
        display: block;
        width: 270px;
        height: 27vh;
    }
    .square-box-left {
        top: 26.3%;
        left: 25.97%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
        .square-box-right {
        top: 30%;
        left: 36.5%;
    }
    .carousel-slide img {
        width: 168px;
        height: 20vh;
        margin-right: 5px;
        margin-left: 5px;
        display: block;
    }
    .pottery-main-photo{
      bottom: -165px;
      margin-left: -16.7rem;
    }
}





@media screen and (device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) {
  /* Styles specifically for iPhone 14 Pro Max */
     .pottery-overlay-thumbnail {
        position: absolute;
        bottom: -16.875rem;
        left: -26.9rem;
        width: 224px;
        z-index: 1;
        opacity: 0.95;
    }
        .square-box-left {
        top: 23.3%;
        left: 32.97%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
    .square-box-right {
        top: 27%;
        left: 42.5%;
    }
    .pottery-main-photo img {
        display: block;
        width: 270px;
        height: 25vh;
    }
        .carousel-slide img {
        width: 178px;
        height: 20vh;
        /* margin-right: 5px; */
        margin-left: 5px;
        display: block;
    }
}






@media screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {

/* Styles specifically for iPhone 14 Pro Max */
     .pottery-overlay-thumbnail {
        position: absolute;
        bottom: -19.875rem;
        left: -26.9rem;
        width: 394px;
        z-index: 1;
        opacity: 0.95;
    }
        .pottery-overlay-thumbnail img {
        width: 230px;
        height: auto;
        display: block;
    }
        .square-box-left {
        top: 33.3%;
        left: 25.47%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
    .square-box-right {
        top: 37%;
        left: 34.5%;
    }
    .pottery-main-photo img {
        display: block;
        width: 305px;
        height: 33vh;
    }
        .carousel-slide img {
        width: 178px;
        height: 20vh;
        /* margin-right: 5px; */
        margin-left: 5px;
        display: block;
    }
    .pottery-main-photo {
        position: relative;
        z-index: 2;
        position: absolute;
        bottom: -215px;
        margin-left: -19rem;
    }
.about-landing1 h1 {
    font-size: 3.5rem;
    color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    margin-top: 90px;
}
}




@media screen and (device-width: 412px) and (device-height: 915px) and (-webkit-device-pixel-ratio: 2.625) {
     .pottery-overlay-thumbnail {
        position: absolute;
        bottom: -16.875rem;
        left: -25.9rem;
        width: 224px;
        z-index: 1;
        opacity: 0.95;
    }
    .pottery-main-photo img {
        display: block;
        width: 271px;
        height: 25vh;
    }
    .square-box-left {
        top: 24.3%;
        left: 30.3%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
    .square-box-right {
        top: 28%;
        left: 39.9%;
    }
    .carousel-slide img {
        width: 176px;
        height: 20vh;
        margin-right: 5px;
        margin-left: 5px;
        display: block;
    }
}




@media screen and (device-width: 360px) and (device-height: 740px) and (-webkit-device-pixel-ratio: 4) {
      .square-box-left {
        top: 29.6%;
        left: 20.97%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
    .square-box-right {
        top: 33.6%;
        left: 31.5%;
    }
        .carousel-slide img {
        width: 154px;
        height: 20vh;
        margin-right: 5px;
        margin-left: 5px;
        display: block;
    }
}



/* for ipad air */
@media screen and (device-width: 820px) and (device-height: 1180px) and (-webkit-device-pixel-ratio: 2) {
  /* Styles specifically for iPad Air */
  .pottery-overlay-thumbnail {
        position: absolute;
        bottom: -27.875rem;
        left: -51.5rem;
        width: 262px;
        z-index: 1;
        opacity: 0.95;
    }
    .pottery-overlay-thumbnail img {
        width: 423px;
        height: auto;
        display: block;
    }
        .square-box-left {
        top: 20.7%;
        left: 35.6%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
        .square-box-right {
        top: 23.6%;
        left: 40.5%;
    }
    .about-landing1 p {
        margin-top: 0px;
        padding-left: 142px;
        padding-right: 0px;
        padding-bottom: 40px;
    }
    .secondvid {
        width: 100%;
        display: block;
        margin-bottom: 40px;
        margin-top: 180px;
    }
        .abouts-anim2 img {
        width: 90%;
        height: 43vh;
        object-fit: cover;
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
}




@media screen and (device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) {

}


@media screen 
  and (device-width: 390px) 
  and (device-height: 844px) 
  and (-webkit-device-pixel-ratio: 3) {
            .square-box-left {
        top: 27.99%;
        left: 27.6%;
        transform: translate(-50%, -50%);
        animation: animateFromLeft 1s forwards;
        background-color: #000000;
    }
        .square-box-right {
        top: 32.4%;
        left: 37.5%;
    }


}
