/* -------- Offer Bar -------- */
.tp-header-sticky-area .logo a img{
  max-height:90px;
}
.main-menu.menu-style-1>nav>ul>li>a {
    font-family: var(--primary-font);
    
    font-weight: 600;
    padding: 9px 0;
  color:#fff;
  padding-top:20px;
  padding-bottom:20px;
}
.main-menu>nav>ul>li>a{
  font-size: 14px;
}
.tp-section-title-wrapper h3, .tp-section-title-wrapper-6 h3 {
    margin-bottom: 60px;
}
.tp-header-contact-content{
  color:#fff;
   
}
.tp-header-contact-content h5{
  font-size:24px;
}
.tp-header-contact-content p{
  font-size:16px;
}
.tp-header-contact-content p a:hover{
  color:#F3E5C8;
}
.main-menu.menu-style-1>nav>ul>li>a:hover {
  color:#F3E5C8;
}
.tp-product-category-thumb a {
   align-items:normal;
    background-image: radial-gradient(95.56% 95.56% at 50% 50%, #fff 0, #bddeff 100%);
}
.tp-category-menu-btn::after{
  color:#000;
}

.offer-bar {
  background: linear-gradient(90deg, #CBB291, #F3E5C8, #CBB291); /* lighter brown + soft cream */
  color: rgb(143, 56, 14); /* dark brown text for readability */
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.offer-bar span {
  display: inline-block;
  padding-left: 100%;
  animation: offerScroll 18s linear infinite;
}

@keyframes offerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* -------- Slider Container -------- */
.slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: #000;
}

/* -------- Slides -------- */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slideAnim 12s infinite;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  transition: opacity 1s ease-in-out;
}

/* Background images */
.slide:nth-child(1) { 
  background-image: url('https://pianosdubai.com/storage/piano-bg.webp'); 
  animation-delay: 0s; 
}
.slide:nth-child(2) { 
  background-image: url('https://pianosdubai.com/storage/piano-bg1.jpg'); 
  animation-delay: 4s; 
}
.slide:nth-child(3) { 
  background-image: url('https://pianosdubai.com/storage/piano-bg3.jpg'); 
  animation-delay: 8s; 
}

/* -------- Black Overlay -------- */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* -------- Slide Content -------- */
.content {
  position: relative;
  color: #fff;
  max-width: 500px;
  z-index: 2;
  animation: textAnim 12s infinite;
}

.slide:nth-child(2) .content { animation-delay: 4s; }
.slide:nth-child(3) .content { animation-delay: 8s; }

.content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffffd9;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #CBB291, #F3E5C8, #CBB291); 
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  z-index: 2;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.4);
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #ff0080, #ff8c00);
}

/* -------- Side Text -------- */
.side-text {
  position: absolute;
  right: 5%;
  top: 30%;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0;
  animation: sideAnim 12s infinite;
  text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

.slide:nth-child(2) .side-text { animation-delay: 4s; }
.slide:nth-child(3) .side-text { animation-delay: 8s; }

/* -------- Keyframes -------- */
@keyframes slideAnim {
  0%, 33.33%, 100% { opacity: 0; transform: translateX(10%); }
  5%, 28% { opacity: 1; transform: translateX(0); }
}

@keyframes textAnim {
  0%, 33.33%, 100% { opacity: 0; transform: translateY(-40px); }
  7%, 25% { opacity: 1; transform: translateY(0); }
}

@keyframes sideAnim {
  0%, 33.33%, 100% { opacity: 0; transform: translateX(60px); }
  8%, 25% { opacity: 1; transform: translateX(0); }
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .content h1 { font-size: 2.2rem; }
  .content p { font-size: 1.2rem; }
  .side-text { display: none; }
  .slider { height: 60vh;}
}

@media (max-width: 480px) {
  .content { max-width: 90%; }
  .content h1 { font-size: 2.2rem; }
  .content p { font-size: 1.2rem; }
  .slider { height: 60vh;}
}


.tp-header-main {
 padding-bottom: 7px; 
  padding-top: 7px; 
}
.tp-category-menu-btn {
    background-color:#fff;
  color:#000;
}


/* ===== Piano Feature Section ===== */
.piano-feature-section {
  position: relative;
  background: url('https://pianosdubai.com/storage/feature-bg-1.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 90px 3% 100px;
  text-align: center;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Overlay for dark filter */
.piano-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  z-index: 0;
}

/* Container */
.piano-feature-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Title and Subtitle */
.piano-feature-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #F3E5C8;
  margin-bottom: 10px;
  letter-spacing: 1px;
  animation: fadeDown 1s ease forwards;
}

.piano-feature-subtitle {
  font-size: 1.15rem;
  color: #ddd1b5;
  margin-bottom: 70px;
  animation: fadeDown 1.2s ease forwards;
}

/* Grid Layout */
.piano-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

/* Feature Box */
.piano-feature-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 10px 25px;
  backdrop-filter: blur(8px);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(243, 229, 200, 0.3);
  animation: fadeUp 1s ease both;
}

.piano-feature-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Icon Animation */
.piano-feature-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.piano-ring {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(#f3e5c8, #77562D, #f3e5c8);
  animation: spin 5s linear infinite;
  opacity: 0.9;
  filter: blur(1px);
}

.piano-feature-icon {
  font-size: 2.5rem;
  background: #F3E5C8;
  color: #77562D;
  border-radius: 50%;
  padding: 18px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.piano-feature-box:hover .piano-feature-icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 20px rgba(243, 229, 200, 0.7);
}

/* Texts */
.piano-feature-box h3 {
  color: #F3E5C8;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.piano-feature-box p {
  color: #ddd1b5;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .piano-feature-title { font-size: 2.2rem; }
  .piano-feature-subtitle { font-size: 1rem; margin-bottom: 50px; }
}

@media (max-width: 480px) {
  .piano-feature-box { padding: 45px 20px 35px; }
  .piano-feature-icon-wrap { width: 75px; height: 75px; }
}

.tp-header-sticky-area .main-menu.menu-style-1>nav>ul>li>a {
    padding: 20px 0;
    color: #000;
}
.main-menu>nav>ul>li {
    display: inline-block;
    list-style: none;
    margin-inline-end: 22px;
    position: relative;
}
.breadcrumb__title {
    
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
    color: #fff;
}
.breadcrumb__list span {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    position: relative;
}
.tp-banner-item-2 {
    min-height: 300px;
    padding: 65px 48px 55px;
}
.tp-banner-thumb-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  pointer-events: none;
}
main .tp-banner-title-2{
  color:#fff;
  font-size:28px;
  font-weight:700;
}
.tp-banner-thumb-2 a picture {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
}
.tp-btn-border {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 29px;
    font-weight: 700;
}
/* Section Base */
.zoomabt-wrapper {
  
 
  display: flex;
  justify-content: center;
  align-items: center;
}

.zoomabt-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
}

/* Image Section */
.zoomabt-pic {
  flex: 1 1 45%;
  transform: scale(0.8);
  opacity: 0;
  animation: zoomabtZoom 1.2s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.zoomabt-pic img {
  width: 100%;
  border-radius: 18px;
 
}

/* Text Section */
.zoomabt-text {
  flex: 1 1 50%;
  transform: scale(0.8);
  opacity: 0;
  animation: zoomabtZoom 1.4s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 50%;
}

.zoomabt-text h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
}

.zoomabt-text p {
  font-size:16px;
  color:#000;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: left;
}

.zoomabt-link {
  display: inline-block;
  background: rgb(143, 56, 14);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.zoomabt-link:hover {
  background: #333;
}

/* Animation Keyframes */
@keyframes zoomabtZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .zoomabt-inner {
    flex-direction: column;
    text-align: center;
  }

  .zoomabt-pic,
  .zoomabt-text {
    flex: 1 1 100%;
  }
}
a.zoomabt-link  {
  color:#fff;
}
.ss-products-section {
  
  background: #fff;
  text-align: center;
}

.ss-products-header h2 {
  font-size: 2em;
  color: #222;
  margin-bottom: 5px;
}

.ss-products-header p {
  color: #666;
  font-size:16px;
  margin-bottom: 40px;
}

.ss-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 30px;
  flex-wrap: wrap;
  text-align: left;
}

.ss-product-row.reverse {
  flex-direction: row-reverse;
}

.ss-product-content {
  flex: 1;
  max-width: 480px;
}

.ss-product-content h3 {
  font-size: 1.6em;
  color: #111;
  margin-bottom: 5px;
}

.ss-product-content h4 {
  color: #c19b77;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.ss-product-content p {
  color: #000;
  text-align: left;
  font-size:16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ss-shop-btn {
  display: inline-block;
  padding: 10px 24px;
  background: rgb(143, 56, 14);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.ss-shop-btn:hover {
  background: #c19b77;
}

.ss-product-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.ss-product-image:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .ss-product-row {
    flex-direction: column;
    text-align: center;
  }
  .ss-product-content {
    max-width: 100%;
  }
  .ss-product-image img {
    max-width: 100%;
  }
}
a.ss-shop-btn{
  color:#fff;
}
.tp-contact-area{
  padding-top:60px;
}
h3.tp-contact-title{
  font-size:28px;
  font-weight:600;
}
.contact-form .contact-button {
   
    background-color: #323130;
   
}