
.top-header {
    background-color: #2b1f19;
    text-align: center;
    padding: 6px;
    position: relative;
    height: 40px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header p {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease;
    letter-spacing: 1px;
    margin: 0;
    font-size: 13px;
}

.top-header p.active {
    opacity: 1;
}
.logo-wrap img {
    height: 70px;
    padding: 5px 0;
}
.logo-black {
    display: none;
}

.sticky-header.sticky .logo-white {
    display: none;
}

.sticky-header.sticky .logo-black {
    display: inline-block;
}
.single-product-wrap .product-details p {
    margin-bottom: 5px;
    font-size: 13px;
}
.single-product-wrap .product-thumb:hover {

    border-bottom: 4px solid black;
}
.restaurant-about-area{
    background-color:#f7f2e7
    
}
.restaurant-about-content{
    text-align: center;
}
.restaurant-about-content span {
    color: black;
    font-size: 22px;
    font-weight: 300;
}
.discover img{
        width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: bottom;
}
.discover h2{
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Popins', sans-serif;
}
.discover h2 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Popins', sans-serif;
    margin-bottom: 0;
}
.discover span {
    font-size: 12px;
    color: #3c3c3c;
}
.discover i{
    margin-left: 10px;
}
.discover-content{
    padding-bottom: 10px;
}
.discover-card {
    position: relative;
    overflow: hidden;
    /* background: #fff; */

    transition: transform 0.4s ease;
}

/* ENTIRE CARD MOVES UP */
.discover-card:hover {
    transform: translateY(-35px);
}

/* IMAGE */
.discover-image {
    overflow: hidden;
    border-radius: 20px;
}

.discover-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

/* OPTIONAL IMAGE ZOOM */
.discover-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.discover-content {
    /* padding: 25px; */
    text-align: left;

    opacity: 0;
    transform: translateY(20px);

    transition: 0.4s ease;
}

/* SHOW CONTENT */
.discover-card:hover .discover-content {
    opacity: 1;
    transform: translateY(0);
}
/* Woshe Testimonial */
.woshe-testimonial {
  background: #f7f2e7;
}

.woshe-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 10px;
}

.woshe-title {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #111;
}

.woshe-testimonial-item {
  padding: 0 12px;
}

.woshe-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.woshe-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.woshe-content {
  padding: 18px;
}

.woshe-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4d9e4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #222;
}

.woshe-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.woshe-verified {
  font-size: 10px;
  margin-left: 4px;
}

.woshe-date {
  font-size: 12px;
  color: #666;
}

.woshe-review {
  font-size: 15px;
  color: #222;
  margin: 14px 0 18px;
}

.woshe-product {
  display: inline-block;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  background: #fafafa;
  transition: 0.3s;
}

.woshe-product:hover {
  background: #f1f1f1;
  color: #000;
}

/* Slick */
.woshe-testimonial-slider .slick-track {
  display: flex;
}

.woshe-testimonial-slider .slick-slide {
  height: inherit;
}

.woshe-testimonial-slider .slick-prev,
.woshe-testimonial-slider .slick-next {
  z-index: 10;
}

.woshe-testimonial-slider .slick-prev:before,
.woshe-testimonial-slider .slick-next:before {
  color: #111;
}

@media (max-width: 991px) {
  .woshe-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .woshe-image img {
    height: 220px;
  }
}
/* Remove default text */
.woshe-testimonial-slider .slick-prev:before,
.woshe-testimonial-slider .slick-next:before {
  content: '';
}

/* Arrow Buttons */
.woshe-testimonial-slider .slick-prev,
.woshe-testimonial-slider .slick-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  /* border: 1px solid #ddd; */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  font-size: 0;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Left Arrow */
.woshe-testimonial-slider .slick-prev {
  left: -70px;
}

/* Right Arrow */
.woshe-testimonial-slider .slick-next {
  right: -70px;
}

/* Arrow Icons */
.woshe-testimonial-slider .slick-prev::after,
.woshe-testimonial-slider .slick-next::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 500;
  font-size: 16px;
  color: #111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.woshe-testimonial-slider .slick-prev::after {
  content: "\f053";
}

.woshe-testimonial-slider .slick-next::after {
  content: "\f054";
}

/* Hover */
.woshe-testimonial-slider .slick-prev:hover,
.woshe-testimonial-slider .slick-next:hover {
  background: #111;
  border-color: #111;
}

.woshe-testimonial-slider .slick-prev:hover::after,
.woshe-testimonial-slider .slick-next:hover::after {
  color: #fff;
}

/* Mobile */
@media (max-width: 991px) {
  .woshe-testimonial-slider .slick-prev {
    left: -15px;
  }

  .woshe-testimonial-slider .slick-next {
    right: -15px;
  }
}
.btn.btn-sm {
    border: 2px solid #eed166;
    padding: 10px;
    font-size: 12px;
}
.feature-product-area .discover-card:hover {
    transform: none;
}
.feature-product-area .discover-content{
    opacity: 1;
    transform: none;
}
.feature-product-area .discover-image img{
    height: 300px;
}
.feature-product-area .discover-image{
    border-radius: 0;
}
.single-parallax-wrap .parallax-image-wrap{
    position: relative;
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

/* Black overlay */
.single-parallax-wrap .parallax-image-wrap::before{
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.35); */
    z-index: 1;
}

/* Content above overlay */
.single-parallax-wrap .container{
    position: relative;
    z-index: 2;
}
.banner-content-wrap{
    padding-top: 150px;
}
/* Optional white text */
.banner-content-wrap h4,
.banner-content-wrap p{
    color: #fff;
    font-weight: 300;
}
/* Shared */
.single-parallax-wrap .parallax-image-wrap{
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 750px;
    display: flex;
    align-items: center;
}

/* Rosewater Section */
.rosewater-section{
    background-position: bottom center !important;
    text-align: center;
}

/* Store Section */
.store-section{
    background-position: top center !important;
}

/* Overlay only for store */
.store-section .overlay-dark, .single-creative-shop-banner .overlay-dark{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
.single-creative-shop-banner .banner-content{
    z-index: 1;
}
/* Content */
.single-parallax-wrap .container{
    position: relative;
    z-index: 2;
}

/* Card */
.woshe-store-card {
    background: #ffffff96;
    padding: 55px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.woshe-store-card .woshe-subtitle {
    display: inline-block;
    font-size: 17px;
    letter-spacing: 0px;
    /* color: #000000; */
    margin-bottom: 0;
    /* font-family: 'Great Vibes'; */
    margin-top: 30px;
}
.woshe-store-card h5{
    font-size: 26px;
    color: black;
    margin-bottom: 0;
}
.woshe-store-card h2{
    font-size: 60px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
    color: #111;
    font-family: 'Great Vibes';
    margin-top: 30px;
}

.woshe-store-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.woshe-btn{
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Store text white because overlay exists */
.store-section h4,
.store-section p{
    color: #fff;
}

/* Mobile */
@media(max-width:991px){

    .single-parallax-wrap .parallax-image-wrap{
        min-height: 650px;
    }

    .woshe-store-card{
        padding: 35px;
    }

    .woshe-store-card h2{
        font-size: 32px;
    }
}
.text-theme{
    color: #895a35;
}
.rosewater-section h2{
    color: #895a35;
    border-bottom: 2px solid #895a35;
}
/* Slider spacing */
.woshe-video-slider .slick-slide{
    padding: 0 5px;
}


/* Video Card */
.woshe-video-item{
    overflow: hidden;
    border-radius: 0px;
    position: relative;
}

.woshe-video-item video{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}


/* Mobile */
@media(max-width:767px){

    .woshe-video-item video{
        height: 420px;
    }

}
.woshe-horizontal-scroll{
    position: relative;
    overflow: hidden;
}

.woshe-panels{
    display: flex;
    width: 300%;
    min-height: 100vh;
}

.woshe-panel {
    width: 100vw;
    min-height: calc(100vh - 100px);
    flex-shrink: 0;
    position: relative;
    margin-top: 100px;
    background: #f7f2e7;
}
.woshe-panel img{
    height: calc(100vh - 100px);
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
}

.pin-spacer{
    overflow: hidden !important;
}
.next-section{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}
/* Side Navigation */
/* Bottom Nav */
.woshe-scroll-nav {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 18px 40px;
    border-radius: 100px;
    /* background: rgba(255,255,255,0.75); */
    /* backdrop-filter: blur(12px); */
}

/* Numbers */
.woshe-scroll-nav .nav-dot {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    transition: 0.3s ease;
    cursor: pointer;
}

/* Active */
.woshe-scroll-nav .nav-dot.active {
    transform: scale(1.25);
    font-weight: 600;
}
/* Arrows */
.woshe-scroll-nav .nav-arrow{
    border: none;
    background: transparent;

    font-size: 12px;
    color: #222;

    cursor: pointer;
    transition: 0.3s ease;
}

.woshe-scroll-nav .nav-arrow:hover,
.woshe-scroll-nav .nav-dot:hover{
    opacity: 0.6;
}

/* Mobile */
@media(max-width:767px){

    .woshe-scroll-nav{
        gap: 22px;
        padding: 14px 22px;
        bottom: 20px;
    }

    .woshe-scroll-nav .nav-dot{
        font-size: 22px;
    }

    .woshe-scroll-nav .nav-arrow{
        font-size: 22px;
    }

}
 .woshe-panel .overlay-dark{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
/* Overlay */
.woshe-panel .overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, #000000a3);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
/* Bottom Center Content */
.woshe-panel .overlay-dark .content{
    text-align: center;
    margin-bottom: 40px;
}

/* Heading */
.woshe-panel .overlay-dark h2 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 300;
}

/* Link */
.woshe-panel .overlay-dark a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.woshe-panel .overlay-dark a i{
    margin-left: 8px;
}
.woshe-script {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #000;
    display: block;
    margin-bottom: 15px;
    line-height: 34px;
}
.woshe-info-card {
    padding: 30px;
    max-width: 100%;
}

.woshe-info-card h2{
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 25px;
}
.woshe-info-card h2 span{
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
}
.woshe-info-card p{
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}

.woshe-info-card a{
    color: #111;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.woshe-full-image,
.woshe-founder-image{
    height: 100%;
}

.woshe-full-image img,
.woshe-founder-image img{
    width: 100%;
    object-fit: cover;
}

.woshe-year{
    margin-top: 30px;
}

.woshe-year strong{
    font-size: 80px;
    display: block;
}

.woshe-grid-symbols{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    height: 100%;
}

.symbol-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    padding: 40px;
}

.symbol-item img{
    width: 100px;
    margin-bottom: 20px;
}

.woshe-list{
    margin-top: 30px;
    padding-left: 20px;
}

.woshe-list li{
    margin-bottom: 12px;
    font-size: 17px;
}
.woshe-index-list li{
    font-size: 13px;
    font-family: 'Cinzel', serif;
}
.woshe-panel .logo{
    width: 150px ;
    height: 100%;
    padding-bottom: 60px;
}
.woshe-element-image img{
    height: 300px;
    width: 100%;
    object-fit: contain;
}
.nav-dots-wrap{
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-ellipsis{
    font-size: 26px;
    color: #555;
    line-height: 1;
}
.btn-add-wishlist {
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    background: #00000021;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.single-product-wrap .product-thumb:hover .btn-add-wishlist{
    opacity: 1;
}
.btn-add-wishlist.active{
    opacity: 1;
    color: #e01515;
    background-color: #fff1f1;
}
.btn-add-cart {
    font-size: 12px;
    color: #525252;
    border-bottom: 1px solid black;
    font-family: 'TT Interphases Pro Bold', sans-serif;
    letter-spacing: 1px;
    padding-bottom: 2px;
}
.port-details-page-wrap{
    margin-top: 110px;
}
.port-thumb-item img{
        height: calc(100vh - 110px);
    width: 100%;
    object-fit: cover;
}
.action-top {
    display: flex;
    justify-content: space-between;
}
.product-details-info-content-wrap{
    margin-right: 30px;
}
.buy-btn{
    display: flex;
    justify-content: space-between;
    gap: 2;
}
.buy-btn button{
    width: 48%;
}
.price-wrapper{
    display: flex;
    justify-content: space-between;
}
.price-wrapper .share-item a {
    color: #222222;
    margin-right: 15px;
}
/* ACCORDION */
.woshe-product-accordion{
    border-top: 1px solid #d9d9d9;
    margin-top: 30px;
}

/* ITEM */
.woshe-product-accordion .accordion-item{
    border: none;
    border-bottom: 1px solid #d9d9d9;
    background: transparent;
}

/* BUTTON */
.woshe-product-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0;
}
/* REMOVE BS ICON */
.woshe-product-accordion .accordion-button::after{
    background-image: none;
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 16px;
    transform: rotate(0deg);
}

/* OPEN */
.woshe-product-accordion .accordion-button:not(.collapsed)::after{
    transform: rotate(90deg);
}

/* BODY */
.woshe-product-accordion .accordion-body{
    padding: 0 0 35px;
    text-align: left;
}

/* TEXT */
.woshe-product-accordion p, .woshe-product-accordion li {
    font-size: 13px;
    line-height: 1.4;
    color: #7f7f7f;
}

/* SUBTITLE */
.woshe-product-accordion h5 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 16px;
}

/* IMAGE */
.woshe-product-accordion img{
    border-radius: 8px;
}

/* LIST */
.woshe-dimension-list{
    padding-left: 18px;
}

/* MOBILE */
@media(max-width:767px){

    .woshe-product-accordion .accordion-button{
        font-size: 24px;
    }

}
.port.is-affixed .inner-wrapper-sticky {
    bottom: 20px !important;
}