/*
Template Name: Furnitore - Furniture & Interior Template
Author: Pillarix
Author URI: https://wrapbootstrap.com/user/pillarix
Version: 1.0
*/
/*
-- Body
-- Custom Classes
-- Navbar
-- Homepage
-- About Page
-- Contact
-- Mobile media
*/


@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Regular.woff2') format('woff2'),
       url('fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Medium.woff2') format('woff2'),
       url('fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-SemiBold.woff2') format('woff2'),
       url('fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Bold.woff2') format('woff2'),
       url('fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* Body */
body {
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.05rem;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins";
	font-weight: 400 !important;

	letter-spacing: 0.05rem;

}
.fw-bold {
	font-weight: 400 !important;
}
p {
	letter-spacing: 0.05rem;
}
a {
	text-decoration: none;
	color: #1b1b1b;
}
a:hover {
	color: #a8977b;
}

/* Custom classes */
.bg-warning-subtle {
	background-color: #efebe2 !important;
}
.furniture-nav.p-0.w-100.bg-black {
	background: #eeebe2 !important;
}
.furniture-nav  a.nav-link {
	padding-top: 29px !important;
	padding-bottom: 29px !important;
}
.h-4 {
	height: 1rem;
}
.w-4 {
	width: 1rem;
}
.btn {
	border-radius: 0;
}
.btn-secondary {
	background-color: #a8977b !important;
	border-color: #a8977b !important;
}
.btn-secondary:hover {
	background-color: #7f715c !important;
	border-color: #7f715c !important;
}
.text-bg-secondary {
	background-color: #a8977b !important;
}
.text-secondary {
	color: #a8977b !important;
}
.bg-secondary {
	background-color: #a8977b !important;
}

/* Navbar */
.furniture-nav .navbar-nav .nav-link {
	text-transform: uppercase;
	padding: 27px 0;
	font-size: 14px;
	margin: 0px 12px;
	letter-spacing: 0.06rem;
}
.furniture-nav .navbar-nav .nav-link:hover {
	color: #a8977b;
}
.furniture-nav .navbar-nav .nav-link.active {
	color: #a8977b;
}

/* Homepage */
.bg-homepage {
	background-image: url(../img/hero.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.qualities {
	margin-top: -5rem;
}
.dropdown-cart-img {
	width: 100px;
}

/* About Page */
.terminal-profile {
	width: 70px;
}

/* Contact */
.send-message {
	margin-top: -7rem;
}

/* Mobile Media  */
@media (max-width:992px) {
	.m-none {
		display: none;
	}
}


 /* Custom styles to fix the layout issues */
      .hero-section {
        height: 85vh;
        min-height: 500px;
        position: relative;
        overflow: hidden;
      }

      .carousel-item img {
        height: 70vh;
        min-height: 274px;
        object-fit: cover;
        width: 100%;
      }

      .carousel-caption {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 10;
      }

      /* Ensure quality section is properly spaced */
      .qualities-section {
        margin-top: 0;
        padding-top: 5rem;
        padding-bottom: 5rem;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        .hero-section {
          height: 70vh;
          min-height: 400px;
        }

        .carousel-item img {
          height: 70vh;
          min-height: 400px;
          margin-top: 100px;
        }

        .carousel-caption h1 {
          font-size: 2rem;
        }

        .carousel-caption p {
          font-size: 1rem;
        }

        .qualities-section {
          padding-top: 3rem;
          padding-bottom: 3rem;
        }
      }

      @media (max-width: 576px) {
        .hero-section {
          height: 60vh;
          min-height: 350px;
        }

        .carousel img {
          height: 5vh;
          min-height: 350px;
        }

        .carousel-caption h1 {
          font-size: 1.5rem;
          margin-top: 80px;
        }

        .carousel-caption .btn {
          padding: 0.5rem 1rem;
          font-size: 0.9rem;
        }
      }

      /* Page loading styles */
      .page-loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
      }

      .page-loading.active {
        display: flex;
      }

      .page-loading:not(.active) {
        display: none;
      }

      .page-spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
      }

      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }

      /* Navigation styles for better visibility */
      .furniture-nav {
        position: relative;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
      }

      .site-brand {
        text-decoration: none;
        color: inherit;
      }

      .site-brand:hover {
        text-decoration: none;
        color: inherit;
      }


  /* Ensure navbar stays fixed */
      .furniture-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
      }

      /* Add top padding to body to account for fixed navbar */
      body {
        padding-top: 120px;
      }

      /* Ensure hero section doesn't overlap with navbar */
      .hero-section {
        margin-top: 0;
      }

      /* Page loading styles */
      .page-loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
      }

      .page-spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #007bff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
      }

      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }


      .category-card {
    transition: opacity 0.5s ease-in-out;
  }
  .category-item {
    opacity: 0;
  }
  .category-item.active {
    opacity: 1;
  }


  @media (max-width: 768px) {
    .card-img {
      min-height: 400px !important;
    }

  }
  @media (max-width: 576px) {
    .card-img {
      min-height: 350px !important;
    }
  }


  .hero-section {
    min-height: 400px;
    border-radius: 12px;
    position: relative;
  }

  .content-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #e0e0e0, #f8f6f6);
    border-radius: 2px;
  }

  .btn-custom {
    border: 1px solid white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 16, 16, 0.3);
    color: black;
  }

  .btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 8, 8, 0.4);
    background: linear-gradient(45deg, #020202, #070707);
  }

  @media (max-width: 768px) {
    .hero-section {
      min-height: 350px;
    }
    .content-overlay {
      margin: 0px 0px;
    }
  }

  @media (max-width: 576px) {
    .hero-section {
      min-height: 300px;
    }
  }

  .backorder-card {
            position: relative;
            overflow: hidden;
            border-radius: 16px;

        }

        .backorder-img {
            transition: transform 0.3s ease;

        }

        .backorder-card:hover .backorder-img {
            transform: scale(1.05);

        }

        .btn-custom {

            border: 1px solid white;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
            text-transform: uppercase;
            padding: 12px 32px;
        }

        .btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
            background: linear-gradient(45deg, #495057, #343a40);
        }

        /* Desktop Styles */
        @media (min-width: 992px) {
            .backorder-img {
                min-height: 450px;
            }

            .desktop-content {
                right: 0;
                left: auto;
                width: 50%;
                padding: 3rem 4rem;
            }

            .desktop-title {
                font-size: 3.5rem;
                line-height: 1.1;
                margin-bottom: 1.5rem;

            }

            .desktop-text {
                font-size: 1.25rem;
                line-height: 1.6;
                margin-bottom: 2.5rem;

            }
        }

        /* Tablet Styles */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .backorder-img {
                min-height: 400px;
            }

            .tablet-content {
                padding: 2.5rem 2rem;
                margin: 1.5rem;
            }

            .tablet-title {
                font-size: 2.5rem;
                line-height: 1.2;
                margin-bottom: 1.25rem;

            }

            .tablet-text {
                font-size: 1.1rem;
                line-height: 1.5;
                margin-bottom: 2rem;

            }
        }

        /* Mobile Styles */
        @media (max-width: 767.98px) {
            .backorder-img {
                min-height: 350px;
            }

            .mobile-content {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }

            .mobile-title {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 1rem;
                font-weight: 700;

            }

            .mobile-text {
                font-size: 1rem;
                line-height: 1.4;
                margin-bottom: 1.5rem;

            }

            .btn-custom {
                padding: 10px 24px;
                font-size: 0.9rem;
            }

            .furniture-section .container .furniture-container .btn-custom{
                background: black;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 575.98px) {
            .backorder-img {
                min-height: 320px;
            }

            .mobile-content {
                padding: 1.5rem 1rem;
                margin: 0.75rem;
            }

            .mobile-title {
                font-size: 1.75rem;
            }

            .mobile-text {
                font-size: 0.9rem;
            }

            .btn-custom {
                padding: 8px 20px;
                font-size: 0.85rem;
            }

            .card-body .card-title{
              font-size: 11px;
              margin-top: 10px;
            }


            .p-4 h4{
              font-size: 13 px;
            }
        }




        .furniture-section {
            padding: 2rem 0;
        }

        .furniture-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .furniture-image {
            width: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .furniture-image:hover {
            transform: scale(1.02);
        }

        .content-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        }

        .divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, #f6f4f4, #f6f8f8);
            border-radius: 2px;
            margin: 0;
        }

        .btn-custom {
            border: 1px solid white;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }


        .furniture-title {
            font-weight: 700;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }

        .furniture-description {
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            line-height: 1.6;
        }

        .furniture-tagline {
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            font-weight: 500;
        }

        /* Desktop styles */
        @media (min-width: 992px) {
            .furniture-image {
                height: 500px;
            }

            .furniture-title {
                font-size: 2.5rem;
            }

            .furniture-description {
                font-size: 1.1rem;
            }

            .btn-custom {
                font-size: 1rem;
                padding: 12px 24px;
            }
        }

        /* Tablet styles */
        @media (min-width: 768px) and (max-width: 991px) {
            .furniture-section {
                padding: 1.5rem 0;
            }

            .furniture-image {
                height: 400px;
            }

            .content-overlay {
                background: none;
                position: static;
                padding: 1.5rem;
                background: rgba(255, 255, 255, 0.95);
                margin-top: -1px;
                border-radius: 0 0 12px 12px;
            }

            .furniture-title {
                color: #333;
                text-shadow: none;
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .furniture-description {
                color: #666;
                text-shadow: none;
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .furniture-tagline {
                color: #888;
                text-shadow: none;
                font-size: 0.9rem;
            }

            .btn-custom {
                font-size: 0.95rem;
                padding: 10px 20px;

                color: white;
            }

            .divider {
                background: linear-gradient(45deg, #f9f7f7, #fafbfb);
            }
        }

        /* Mobile styles */
        @media (max-width: 767px) {
            .furniture-section {
                padding: 1rem 0;
            }

            .furniture-image {
                height: 300px;
            }

            .content-overlay {
                background: none;
                position: static;
                padding: 1rem;
                background: rgba(255, 255, 255, 0.98);
                margin-top: -1px;
                border-radius: 0 0 12px 12px;
            }

            .furniture-title {
                color: #333;
                text-shadow: none;
                font-size: 1.6rem;
                margin-bottom: 0.8rem;
                text-align: center;
            }

            .furniture-description {
                color: #666;
                text-shadow: none;
                font-size: 0.9rem;
                margin-bottom: 1rem;
                text-align: center;
            }

            .furniture-tagline {
                color: #888;
                text-shadow: none;
                font-size: 0.8rem;
                text-align: center;
            }

            .btn-custom {
                font-size: 0.9rem;
                padding: 8px 16px;
                display: block;
                width: fit-content;
                margin: 0 auto 0.5rem auto;
            }

            .divider {
                margin: 0 auto 0.8rem auto;
            }

            .mobile-center {
                text-align: center !important;
            }


            .card-footer a{
              font-size: 15px;
            }

            .card-title{
              font-size: 20px;
              margin-top: 9px;
            }

            .card-text{
              font-size: 15px;
            }
        }

        /* Extra small mobile */
        @media (max-width: 480px) {
            .furniture-image {
                height: 250px;
            }

            .furniture-title {
                font-size: 1.4rem;
            }

            .furniture-description {
                font-size: 0.85rem;
            }

            .btn-custom {
                font-size: 0.85rem;
                padding: 6px 14px;
            }
        }







/* Center carousel captions vertically and horizontally */
.carousel-caption {
  position: absolute;
  top: 50%;

  bottom: auto; /* Override Bootstrap's default bottom: 0 */

}

/* Center prev/next icons vertically */
.carousel-control-prev,
.carousel-control-next {
  top: 50%;

  bottom: auto; /* Override Bootstrap's default positioning */
}


/* Ensure carousel maintains responsiveness */


.team-slider {
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on touch devices */
  }

  @media (max-width: 768px) {
    
    h4.card-title {
      font-size: 0.75rem !important; /* Very small font size on mobile */
      padding: 0.25rem 0;
      background: transparent !important; /* Remove white background */
    }
  }
  
  .text-center h1{
    font-size: 35px;
  }


  .instagram-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* This creates a 1:1 aspect ratio */
    position: relative;
    overflow: hidden;
}

.instagram-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Additional mobile optimization */
@media (max-width: 576px) {
    .instagram-image {
        padding-bottom: 100%; /* Maintain 1:1 ratio on mobile */
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}


/* WhatsApp Button Styles */
    .whatsapp-btn {
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        z-index: 1000;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        text-decoration: none;
        overflow: hidden;
        animation: autoPulse 10s infinite;
    }
    .whatsapp-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #25d366, #128c7e);
        border-radius: 50%;
        transform: scale(0);
        transition: transform 0.3s ease;
    }
    .whatsapp-btn:hover::before {
        transform: scale(1.1);
    }
    .whatsapp-btn:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 20px 40px rgba(37, 211, 102, 0.6);
        animation: none; /* Disable auto animation on hover */
    }
    .whatsapp-btn svg {
        width: 35px;
        height: 35px;
        fill: white;
        position: relative;
        z-index: 2;
        transition: transform 0.3s ease;
    }
    .whatsapp-btn:hover svg {
        transform: scale(1.1);
    }
    /* Automatic animation every 10 seconds */
    @keyframes autoPulse {
        0% {
            transform: translateY(0) scale(1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }
        10% {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 20px 40px rgba(37, 211, 102, 0.6);
        }
        20% {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 20px 40px rgba(37, 211, 102, 0.6);
        }
        30% {
            transform: translateY(0) scale(1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }
        100% {
            transform: translateY(0) scale(1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }
    }
    .whatsapp-btn svg {
        animation: autoScale 10s infinite;
    }
    @keyframes autoScale {
        0% {
            transform: scale(1);
        }
        10% {
            transform: scale(1.1);
        }
        20% {
            transform: scale(1.1);
        }
        30% {
            transform: scale(1);
        }
        100% {
            transform: scale(1);
        }
    }
    /* Pulse Animation */
    .whatsapp-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: rgba(37, 211, 102, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(1);
        animation: pulse 2s infinite;
    }
    @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(1.8);
            opacity: 0;
        }
    }
    /* Tooltip */
    .whatsapp-tooltip {
        position: absolute;
        right: 85px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    .whatsapp-tooltip::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-left-color: rgba(0, 0, 0, 0.8);
    }
    .whatsapp-btn:hover .whatsapp-tooltip {
        opacity: 1;
        right: 90px;
    }
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .whatsapp-btn {
            width: 60px;
            height: 60px;
            bottom: 80px;
            right: 20px;
        }
        .whatsapp-btn svg {
            width: 30px;
            height: 30px;
        }
        .whatsapp-tooltip {
            display: none;
        }
    }



/* Chatbot Button Styles */
.chatbot-btn {
  position: fixed;
  bottom: 180px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  overflow: hidden;
  border: none;
}

.chatbot-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.chatbot-btn:hover::before {
  transform: scale(1.1);
}

.chatbot-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6);
}

.chatbot-btn svg {
  width: 35px;
  height: 35px;
  fill: white;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.chatbot-btn:hover svg {
  transform: scale(1.1) rotate(5deg);
}

/* Chatbot Pulse Animation */
.chatbot-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: chatbot-pulse 2.5s infinite;
  animation-delay: 1s;
}

@keyframes chatbot-pulse {
  0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
  }
  100% {
      transform: translate(-50%, -50%) scale(1.8);
      opacity: 0;
  }
}

/* Chatbot Tooltip */
.chatbot-tooltip {
  position: absolute;
  right: 85px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.chatbot-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}

.chatbot-btn:hover .chatbot-tooltip {
  opacity: 1;
  right: 90px;
}

/* Chatbot Chat Window */
.chat-window {
  position: fixed;
  bottom: 210px;
  right: 30px;
  width: 350px;
  height: 450px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 999;
  overflow: hidden;
}

.chat-window.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.chat-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}

.chat-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.chat-header p {
  margin: 5px 0 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.chat-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-close:hover {
  transform: scale(1.2);
}

.chat-body {
  padding: 20px;
  height: calc(100% - 140px);
  overflow-y: auto;
}

.chat-message {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
  position: relative;
  animation: slideIn 0.3s ease;
}

.chat-message::before {
  content: '🤖';
  position: absolute;
  top: -10px;
  left: 15px;
  background: white;
  padding: 5px;
  border-radius: 50%;
  font-size: 16px;
}

@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateX(-20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.chat-input {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: white;
  border-top: 1px solid #eee;
}

.chat-input input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.chat-input input:focus {
  border-color: #667eea;
}

/* Mobile Responsive for Chatbot */
@media (max-width: 768px) {
  .chatbot-btn {
      width: 60px;
      height: 60px;
      bottom: 150px;
      right: 20px;
  }

  .chatbot-btn svg {
      width: 30px;
      height: 30px;
  }

  .chatbot-tooltip {
      display: none;
  }

  .chat-window {
      right: 20px;
      left: 20px;
      width: auto;
      bottom: 180px;
      height: 400px;
  }
}

.instagram-carousel-container {
            position: relative;
            overflow: hidden;
            padding: 0 50px;
            margin-bottom: 30px; /* Space between rows */
        }

        .instagram-carousel-track {
            display: flex;
            transition: transform 0.3s ease;
            gap: 15px;
        }

        .instagram-item {
            flex: 0 0 auto;
            width: 280px;
        }

        /* Responsive widths */
        @media (max-width: 1200px) {
            .instagram-item {
                width: 250px;
            }
        }

        @media (max-width: 992px) {
            .instagram-item {
                width: 220px;
            }
        }

        @media (max-width: 768px) {
            .instagram-item {
                width: 200px;
            }
            .instagram-carousel-container {
                padding: 0 40px;
            }
        }

        @media (max-width: 576px) {
            .instagram-item {
                width: 180px;
            }
            .instagram-carousel-container {
                padding: 0 35px;
            }
        }

        .instagram-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            /*background: #f8f9fa;*/
        }

        .instagram-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .instagram-item:hover .instagram-image img {
            transform: scale(1.05);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .carousel-nav.prev {
            left: 10px;
        }

        .carousel-nav.next {
            right: 10px;
        }

        .carousel-nav:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .carousel-nav svg {
            width: 20px;
            height: 20px;
            fill: #333;
        }

        .demo-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            text-align: center;
        }

        @media (max-width: 767px) {
            .instagram-item {
                flex: 0 0 auto;
                width: 280px;
                margin-right: 15px;
            }

            .carousel-nav {
                height: 40px;
            }
        }



    @media (max-width: 991px) {
        body {
            padding-top: 0px !important; /* Adjusted for mobile */
        }

    }
    
    
    .whatsapp-button {
        position: fixed;
        bottom: 95px;
        right: 25px;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
        transition: all 0.3s ease;
        overflow: hidden;
        text-decoration: none;
    }

    .whatsapp-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        background-color: #128C7E;
    }

    .whatsapp-button i {
        transition: all 0.3s ease;
    }

    .whatsapp-button:hover i {
        transform: rotate(15deg) scale(1.2);
    }

    .whatsapp-text {
        position: absolute;
        right: 70px;
        background-color: white;
        color: #128C7E;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .whatsapp-button:hover .whatsapp-text {
        opacity: 1;
        transform: translateX(0);
    }

    /* Pulse animation */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    .whatsapp-button {
        animation: pulse 2s infinite;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .whatsapp-button {
            bottom: 90px;
            right: 20px;
            width: 55px;
            height: 55px;
            font-size: 28px;
        }

        .whatsapp-text {
            display: none; /* Hide text on smaller screens */
        }
    }

    @media (max-width: 480px) {
        .whatsapp-button {
            bottom: 80px;
            right: 15px;
            width: 50px;
            height: 50px;
            font-size: 24px;
        }
    }
    
    body {
    font-family: 'Poppins', sans-serif;
}

.wishlist-item {
    transition: all 0.3s ease;
}

.wishlist-item:hover {
    background-color: #f8f9fa;
}

.wishlist-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.wishlist-details h5 {
    color: #000000;
    font-weight: 500;
}

.wishlist-actions .btn {
    padding: 7px 15px;
    font-size: 0.8rem;
}

.wishlist-actions .icon-hover:hover i {
    color: #a8977b;
    transform: scale(1.1);
}

.btn-outline-gold {
    border-color: #a8977b;
    color: #a8977b;
    font-size: 0.8rem;
    padding: 7px 15px;
}

.btn-outline-gold:hover {
    background-color: #a8977b;
    color: #ffffff;
}

.heart-icon {
    color: #a8977b;
    font-size: 24px;
    transition: all 0.3s ease;
}

.heart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.heart-icon.filled {
    color: #a8977b;
}

.wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.wishlist-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #a8977b;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wishlist-toast.show {
    opacity: 1;
}

.wishlist-toast.error {
    background: #dc3545;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid #a8977b;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 991px) {
    .wishlist-image img {
        width: 50px;
        height: 50px;
    }
    .wishlist-details h5 {
        font-size: 0.9rem;
    }
    .wishlist-details p {
        font-size: 0.75rem;
    }
    .wishlist-actions .btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    .btn-outline-gold {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 80px;
    }
    .wishlist-heart {
        top: 8px;
        right: 8px;
    }
    .heart-icon {
        font-size: 20px;
    }
    .wishlist-toast {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/*
Template Name: Furnitore - Furniture & Interior Template
Author: Pillarix
Author URI: https://wrapbootstrap.com/user/pillarix
Version: 1.0
*/
/*
-- Body
-- Custom Classes
-- Nav
-- Back To Top
-- Sidebar
-- Page Loading
*/

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Regular.woff2') format('woff2'),
       url('fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Medium.woff2') format('woff2'),
       url('fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-SemiBold.woff2') format('woff2'),
       url('fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Bold.woff2') format('woff2'),
       url('fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}


@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* Body */
body {
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.05rem;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins";
	font-weight: 400 !important;

	letter-spacing: 0.05rem;

}
/* Body */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

body{
  overflow-x: hidden;
}
a{
  -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* Custom Classes */
.text-purple{
	color: #a8977b !important;
}
.btn-theme {
	padding: 10px 25px !important;
}
.btn-purple{
	background-color: #a8977b;
	color: #ffffff;
	border: 1px solid #a8977b;
}
.btn-purple:hover, .btn-purple:focus, .btn-outline-purple:hover {
	background-color: #7f715c;
	color: #ffffff;
	border: 1px solid #7f715c;
}
.btn-outline-purple{
	color: #7f715c;
	border: 1px solid #7f715c;
}
.bg-purple{
	background-color: #a8977b;
}
.purple-tab .nav-link {
	color: #a8977b;
}
.bg-opacity-purple {
	background: rgb(139 61 255 / 8%);
}
.shadow {
  box-shadow: 0 10px 40px 0 rgba(47,47,47,.1) !important;
}
.transition-3d-hover {
  transition: all 0.2s ease-in-out;
}
.transition-3d-hover:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.osahan-dropdown-box {
  background-image: url("../img/bg.png") !important;
  background-size: cover;
  background-repeat: no-repeat;
}
.card-osahan-demo .card-img-top {
  border-radius: 18px 0 0 0 !important;
  border-right: 0px !important;
  border-bottom: 0px !important;
}
.card-osahan-demo{
  transition: all .35s;
  -webkit-transition: all .35s;
  -moz-transition: all .35s;
}
.card-osahan-demo:hover {
  box-shadow:0px 0px 40px 10px rgba(0,0,0,0.05);
  transform: translateY(-10px);
}

/* Nav */
.osahan-main-nav{
	-webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
.osahan-main-nav.fixed-top{
  background-color: #ffffff;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.04);
}
.navbar-nav .dropdown-menu {
  box-shadow: 0px 24px 21px rgb(0 0 0 / 11%) !important;
}
.dropdown:hover>.dropdown-menu {
  display: block;
  animation: dropdown-show 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes dropdown-show {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.dropdown-menu:hover .dropdown-item{
  opacity: 0.6;
}
.dropdown-menu .dropdown-item:hover{
  opacity: unset;
  font-weight: 500;
}
.dropdown-item{
  transition: all 0.2s ease-in-out;
  padding-right: 40px;
  font-size: 11px;
}
.dropdown-item:hover{
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.dropdown-item:after {
  content: "\ea6c";
  font-family: remixicon!important;
  font-style: normal;
  position: absolute;
  right: 0;
  font-size: 14px;
  line-height: 24px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.dropdown-item:hover:after{
  opacity: unset;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.dropdown-item {
  position: relative;
}
.single-dropdown-nav .dropdown-menu {
  border: none;
  border-radius: 11px;
  padding: 14px 22px 14px 14px;
  min-width: 270px;
}
.single-dropdown-nav .dropdown-menu .dropdown-item {
  padding: 7px 40px 7px 14px;
  border-radius: 6px;
}
.single-dropdown-nav .dropdown-menu .dropdown-item::after {
  right: 11px;
}
.site-brand  small {
	font-size: 11px;
	letter-spacing: 0.1px;
}
.site-brand .fw-bold {
	line-height: 20px;
}
.site-brand .lh-1 {
  line-height: 12px !important;
}
.osahan-dropdown-box p.lead.mb-5 {
  font-size: 13px;
  margin-bottom: 29px !important;
}
.osahan-dropdown-box  a.btn {
  padding: 10px 23px !important;
  border-radius: 32px;
  font-size: 14px;
  background: #000;
  border: none;
}
.osahan-dropdown-box  h1.text-primary {
  font-size: 25px;
  color: #000 !important;
}
.osahan-dropdown-box h5.text-dark {
  font-size: 15px;
  opacity: 0.7;
  margin-top: 30px !important;
}

/* Back To Top */
#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 1952px;
  box-shadow: 0 10px 40px 0 rgba(47,47,47,.1) !important;
  background-color: #fff;
  color: #2d2a3e;
  width: 50px;
  border-radius: 100px;
  cursor: pointer;
  height: 50px;
  border: 3px solid #ebebeb;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}
#back-to-top:hover {
  box-shadow: 0 10px 40px 0 rgba(47,47,47,.1) !important;
  background-color: #2d2a3e;
  color: #ffffff;
}

/* Sidebar */
#sidebar .offcanvas-header .link-light {
  color: #000 !important;
}
#sidebar .offcanvas-body .nav-item .nav-link {
  text-align: center;
  padding: 15px 20px !important;
}
#sidebar .offcanvas-body .nav-item.dropdown {
  position: unset !important;
}
#sidebar .offcanvas-body .dropdown-menu {
  position: relative !important;
  transform: unset !important;
  box-shadow: none !important;
}
#sidebar .offcanvas-body .dropdown-menu .dropdown-mega-content .col-lg-3 {
  border: none !important;
  padding: 15px 15px !important;
  text-align: center;
}

/* Page Loading */
.page-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s .2s ease-in-out;
  transition: all .4s .2s ease-in-out;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
[data-bs-theme="dark"] .page-loading {
  background-color: #121519;
}
.page-loading.active {
  opacity: 1;
  visibility: visible;
}
.page-loading-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  opacity: 0;
}
.page-loading.active > .page-loading-inner {
  opacity: 1;
}
.page-loading-inner > span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #6f788b;
}
[data-bs-theme="dark"] .page-loading-inner > span {
  color: #fff;
  opacity: .6;
}
.page-spinner {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: .75rem;
  vertical-align: text-bottom;
  background-color: #d7dde2; 
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner .75s linear infinite;
  animation: spinner .75s linear infinite;
}
[data-bs-theme="dark"] .page-spinner {
  background-color: rgba(255,255,255,.25);
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}




