/********** Template CSS **********/
:root {
    --primary: #942420;
    --secondary: #f9f9f9;
    --light: #f8f3f2;
    --dark: #942420;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #901b17;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(145, 31, 27,);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
    position: relative;
    min-height: 700px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    #header-carousel .carousel-item {
        min-height: 250px;
    }
}
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(145, 31, 27, 0.7), rgba(145, 31, 27, 0.7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/*** Products ***/
.product {
    background: linear-gradient(rgba(254, 254, 254), rgba(254, 254, 254)), url(../img/product-bg.pn) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}


/*** About ***/
.video {
    background: linear-gradient(rgba(78, 146, 180, 0.85), rgba(136, 180, 78, .85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #450707;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #2f0606;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #942420;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(21, 2, 73, 0.3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient, url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 30px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}


/*** Footer ***/
.footer {
    color: #FFFFFF;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #FFFFFF;
}

.copyright {
    background: #942420;
}

.copyright a:hover {
    color: #FFFFFF !important;
}
/* ===== Navbar Color ===== */
.navbar {
    background-color: #1F2937 !important;
}

.navbar .nav-link {
    color: #FFFFFF !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #D4AF37 !important;
}

.navbar .nav-link.active {
    color: #D4AF37 !important;
}
/* Sticky navbar background color */
.navbar,
.navbar.sticky-top,
.sticky-top,
.header-sticky,
.fixed-top {
    background-color: #901b17 !important;
}

/* Menu text */
.navbar .nav-link {
    color: #FFFFFF !important;
    font-weight: 500;
}

/* Hover and active */
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #D4AF37 !important;
}
/* Responsive navbar logo */
.navbar-brand img {
    height: 60px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

/* Sticky navbar logo */
.navbar.sticky-top .navbar-brand img,
.fixed-top .navbar-brand img {
    height: 52px;
}

/* Tablet */
@media (max-width: 992px) {
    .navbar-brand img {
        height: 50px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 15px;
    }

    .navbar-brand img {
        height: 42px;
        width: auto;
        max-width: 180px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .navbar-brand img {
        height: 36px;
        max-width: 150px;
    }
}
/* Keep desktop logo unchanged */
.navbar-brand img {
    height: auto;
    width: auto;
    max-height: 80px; /* adjust to your original logo size */
}




/* Very small mobile */
@media (max-width: 480px) {
    .navbar-brand img {
        max-height: 40px;
        max-width: 150px;
    }
}
/* Keep desktop logo unchanged */
.navbar-brand img {
    height: auto;
    width: auto;
    max-height: 135px; /* adjust to your original logo size */
}

/* Only mobile responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 15px;
    }

    .navbar-brand img {
        max-height: 60px;
        width: auto;
        max-width: 170px;
    }
}

/* Very small mobile */
@media (max-width: 580px) {
    .navbar-brand img {
        max-height: 50px;
        max-width: 170px;
    }
}
/* Remove white line between menu bar and slider */
.navbar,
.header,
.header-area,
.main-header,
.sticky-header {
    border-bottom: none !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
    background: #901b17 !important; /* Same red color */
}

/* Remove gap above slider */
.hero-section,
.slider-area,
.banner-area,
.carousel,
.carousel-inner {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    background: #8B1111 !important;
}

/* Remove any thin divider line */
header + section,
.navbar + section {
    border-top: none !important;
    margin-top: 0 !important;
}

/* Mobile logo height */
@media only screen and (max-width: 991px) {
    .mobile-logo img,
    .mean-logo img,
    .logo img,
    .navbar-brand img {
        height: 70px !important;
        width: auto !important;
        max-height: 70px !important;
        object-fit: contain;
    }

    /* Increase mobile header height */
    .mobile-menu,
    .mobile-header,
    .navbar {
        min-height: 80px !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

/* Center logo on desktop and mobile */
.navbar {
    position: relative;
    justify-content: center !important;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
    z-index: 1000;
}

.navbar-brand img {
    height: 70px !important;
    width: auto !important;
}

/* Keep menu button on the right in mobile */
.navbar-toggler {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Desktop menu spacing */
@media (min-width: 992px) {
    .navbar-collapse {
        justify-content: center;
    }
}
.product-img{
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.product-img:hover{
    transform: scale(1.08);
}
.banner-image{
    width:100%;
    height:150px;
    object-fit:cover;
}
}/* Instagram Reel Style */
.reel-card{
    border-radius:20px;
    overflow:hidden;
    background:#000;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.reel-card video{
    width:100%;
    aspect-ratio:9/16;
    object-fit:cover;
    display:block;
}

.reel-card:hover{
    transform:translateY(-5px);
    transition:0.3s ease;
}
/* Premium Offer Scrolling Bar */
.offer-ticker{
    width:100%;
    background:#8B1111;
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    padding:14px 0;
    position:relative;
}

.offer-track{
    display:inline-block;
    white-space:nowrap;
    animation:scrollOffer 25s linear infinite;
}

.offer-track span{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;
    letter-spacing:0.5px;
    margin-right:60px;
}

@keyframes scrollOffer{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Mobile */
@media (max-width:768px){
    .offer-track span{
        font-size:14px;
        margin-right:40px;
    }
}
.tea-offer-bar {
    background:#901B17;
    color:#ffffff;
    height:42px;
    overflow:hidden;
    display:flex;
    align-items:center;
    font-family:'Poppins', sans-serif;
}


.tea-offer-track {
    display:flex;
    width:max-content;
    animation:teaSlide 22s linear infinite;
}


.tea-offer-item {
    font-size:15px;
    font-weight:500;
    letter-spacing:1px;
    padding:0 45px;
    white-space:nowrap;
}


@keyframes teaSlide {

from {
    transform:translateX(0);
}

to {
    transform:translateX(-50%);
}

}


/* Mobile */
@media(max-width:768px){

.tea-offer-bar{
    height:38px;
}

.tea-offer-item{
    font-size:13px;
    padding:0 25px;
}

}
/* TeaAmore About Section */

.about-teaamore{
    background:#ffffff;
    padding:90px 0;
    color:#1a0202;
}


.about-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:10px;
}


.about-content{
    padding-left:40px;
}


.small-title{
    color:#c8a45d;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}


.about-content h2{
    font-family:'Playfair Display',serif;
    font-size:45px;
    line-height:1.2;
    margin:20px 0;
}


.about-content p{
    color:#0e0101;
    font-size:17px;
    line-height:1.8;
}


.about-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 35px;
    background:#c8a45d;
    color:#111;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}


.about-btn:hover{
    background:#ffffff;
    color:#111;
}


/* Mobile */

@media(max-width:768px){

.about-teaamore{
    padding:50px 15px;
}

.about-image img{
    height:350px;
}

.about-content{
    padding-left:0;
    margin-top:30px;
}

.about-content h2{
    font-size:32px;
}

}/* ===== Fixed Mobile Header Size ===== */
@media (max-width: 991px) {

    .navbar {
        height: 80px !important;
        min-height: 80px !important;
        padding: 0 15px !important;
        display: flex;
        align-items: center;
    }

    .navbar .navbar-brand {
        width: auto !important;
        height: auto !important;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar .navbar-brand img {
        height: 55px !important;
        max-height: 55px !important;
        width: auto !important;
    }

    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        padding: 6px 8px;
    }

    .navbar-collapse {
        margin-top: 80px !important;
        background: #901b17;
    }
}
.slider-image {
  width: 100%;
  height: auto;
  /* Keeps images rendering sharp when resized */
  image-rendering: -webkit-optimize-contrast;
}