/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider__container {
    width: 100%;
    height: 100%;
}

.hero-slider__wrapper {
    height: 100%;
}

.hero-slider__slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slider__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    object-fit: cover;
}

.hero-slider__content-container {
    position: relative;
    z-index: 2;
}

.hero-slider__text-wrap {
    position: relative;
    justify-content: flex-end;
    padding-right: 40px;
}

/* .hero-slider__vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 140px;
    color: var(--hero-rose);
    opacity: 0.6;
    line-height: 1;
    margin-right: 30px;
    text-transform: capitalize;
} */

.hero-slider__subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-slider__title {
    font-size: 65px;
    line-height: 1.1;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-slider__btn {
    background-color: var(--white);
    color: var(--black);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid var(--white);
    border-radius: 0;
    letter-spacing: 1px;
}

.hero-slider__btn:hover {
    background-color: var(--transparent);
    border: 2px solid var(--white);
    color: var(--white);
}

/* Controls */
.hero-slider__controls {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-slider__nav {
    background: var(--transparent);
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    padding: 2px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.hero-slider__nav:hover {
    opacity: 1;
}

.hero-slider__pagination {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .hero-slider {
        height: 70vh;
    }

    .hero-slider__vertical-text {
        font-size: 120px;
    }

    .hero-slider__title {
        font-size: 60px;
    }
}

@media (max-width: 991.98px) {

    .hero-slider__title {
        font-size: 50px;
    }

    .hero-slider__vertical-text {
        font-size: 100px;
    }

    .hero-slider__controls {
        right: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-slider {
        height: 50vh;
        min-height: 300px;
    }

    .hero-slider__vertical-text {
        display: none;
    }

    .hero-slider__title {
        font-size: 40px;
    }

    .hero-slider__text-wrap {
        justify-content: center;
        text-align: center;
        padding-right: 0;
    }

    .hero-slider__content {
        padding-left: 0 !important;
    }

    .hero-slider__content-container .justify-content-end {
        justify-content: center !important;
    }

    /* .hero-slider__controls {
    display: none;
  } */
}

/* ==========================================================================
   Features Bar
   ========================================================================== */
.features-bar {
    background-color: var(--white);
    padding: 40px 0;
}

.features-bar__row {
    align-items: center;
}

.features-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

.features-bar__icon {
    font-size: 24px;
    color: var(--hero-gold);
    /* Golden/Beige color */
    margin-right: 15px;
}

.features-bar__text {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for Features Bar */
@media (max-width: 767.98px) {
    .features-bar__item {
        justify-content: center;
    }
}

/* ==========================================================================
   Home Banners
   ========================================================================== */
.home-banners__item {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.home-banners__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* .home-banners__item:hover img {
    transform: scale(1.05);
} */

.home-banners__content {
    position: absolute;
    z-index: 2;
}

/* Positions */
.home-banners__content--left {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.home-banners__content--top-left {
    top: 10%;
    left: 10%;
}

.home-banners__content--bottom-center {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.home-banners__content--right-center {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.home-banners__content--top-center {
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

/* Typography */
.home-banners__title {
    font-size: 23px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2;
}

.home-banners__title--sans {
    font-family: var(--bs-body-font-family);
    font-weight: 400;
}

.home-banners__title--small {
    font-size: 16px;
}

.home-banners__title--xs {
    font-size: 11px;
    color: var(--hero-brown);
}

.home-banners__link {
    font-size: 12px;
    font-family: var(--bs-body-font-family);
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    letter-spacing: 1px;
}

.home-banners__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.3s ease;
}

.home-banners__link:hover::after {
    width: 0;
}

/* feature-product-section */
.feature-product-section {
    padding: 50px 0;
}

.feature-product-section .container {
    max-width: 100%;
    padding-inline: 80px;
}

.feature-product-section .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .home-banners__title {
        font-size: 22px;
    }

    .home-banners__title--small {
        font-size: 16px;
    }

    .home-banners__content {
        padding: 20px;
    }

    .home-banners__item {
        height: 500px;
    }

    .feature-product-section .container {
        padding-inline: 10px;
    }
}

@media (max-width: 767.98px) {
    .home-banners__content--right-center {
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }

    .home-banners__content--left {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
    width: 100%;
}

.newsletter-section .row {
    align-items: stretch;
}

.newsletter-section__image {
    height: 100%;
    min-height: 400px;
    position: relative;
}
.newsletter-section__image .newsletter-section__image-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.newsletter-section__center {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.newsletter-section__image--top {
    height: 50%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-section__collection {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.newsletter-section__line {
    width: 15px;
    height: 1px;
    background-color: var(--white);
    display: block;
}

.newsletter-section__collection-text {
    color: var(--white);
    font-size: 16px;
    font-family: var(--bs-body-font-family, sans-serif);
    line-height: 1.4;
}

.newsletter-section__content {
    background-color: var(--accent-brown);
    /* Brown color derived from image */
    height: 50%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.newsletter-section__badge {
    background-color: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
}

.newsletter-section__title {
    color: var(--white);
    font-size: 26px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 40px;
}

.newsletter-section__form {
    width: 100%;
    max-width: 350px;
}

.newsletter-section__input-group {
    display: flex;
    border-bottom: 1px solid var(--black-20);
    padding-bottom: 10px;
    align-items: center;
}

.newsletter-section__input {
    background: var(--transparent);
    border: none;
    color: var(--offblack-333);
    font-size: 12px;
    flex-grow: 1;
    padding: 5px 0;
}

.newsletter-section__input::placeholder {
    color: var(--black-60);
}

.newsletter-section__input:focus {
    outline: none;
}

.newsletter-section__submit {
    background: var(--transparent);
    border: none;
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    padding: 5px 0 5px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-section__submit svg {
    margin-top: -2px;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .newsletter-section__title {
        font-size: 22px;
    }
}

@media (max-width: 991.98px) {
    .newsletter-section__image {
        min-height: 500px;
    }
}

@media (max-width: 767.98px) {
    .newsletter-section__image {
        min-height: 350px;
    }

    .newsletter-section__image--top,
    .newsletter-section__content {
        height: auto;
        min-height: 300px;
    }
}

/* ==========================================================================
   Trending Section
   ========================================================================== */
.trending-section {
    padding: 80px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
    align-items: center;
}

.section-head h2,
.section-head h3 {
    font-size: 26px;
    line-height: 32px;
    color: var(--text-primary);
    margin: 0;
    padding: 0 30px;
    font-weight: 500;
    position: relative;
}

.section-head h2::before,
.section-head h2::after,
.section-head h3::before,
.section-head h3::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 1px;
    background-color: var(--gold-color);
}

.section-head h2::after,
.section-head h3::after {
    left: auto;
    right: 0;
}

.section-head p {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin: 0;
}

.trending-slider__container {
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.trending-slider__pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.trending-slider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--border-color-4);
    opacity: 1;
    margin: 0 !important;
}

.trending-slider__pagination .swiper-pagination-bullet-active {
    background-color: var(--text-primary);
}

/* ==========================================================================
   Recent Blogs
   ========================================================================== */
.recent-blogs {
    padding: 50px 0;
    background-color: var(--surface-f7f7f7);
}

.recent-blogs .container {
    max-width: 1240px;
}

.recent-blogs .section-head {
    margin-bottom: 70px;
}

.recent-blogs .recent-blogs__row {
    gap: 24px 0;
}

.blog-card {
    background-color: var(--white);
    height: 100%;
}

.blog-card .blog-card__thumb {
    width: 100%;
    aspect-ratio: 1.2;
    overflow: hidden;
    display: flex;
}

.blog-card .blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card__thumb img {
    transform: scale(1.05);
    filter: grayscale(1);
}

.blog-card .blog-card__body {
    position: relative;
    padding: 40px;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-secondary);
}

.blog-card .blog-card__category {
    position: absolute;
    background-color: var(--text-primary);
    right: 0;
    top: -14px;
    margin: 0;
    padding: 0 16px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--white);
    line-height: 15px;
    text-transform: uppercase;
}

.blog-card .blog-card__title {
    display: flex;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 20px;
    transition: all 0.3s;
}

.blog-card .blog-card__title:hover {
    color: var(--gold-color);
}

.blog-card .blog-card__meta-data {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--border-color-2);
    font-size: 10px;
    line-height: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 15px;
}

.blog-card .blog-card__date {
    position: relative;
}

.blog-card .blog-card__date:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -8px;
    width: 1px;
    background-color: var(--text-secondary);
}

@media (max-width: 1199.98px) {
    .recent-blogs {
        padding: 100px 0;
    }
}

@media (max-width: 991.98px) {
    .recent-blogs {
        padding: 80px 0;
    }
}

/*  */
.free-shipping {
    padding-block: 40px;
    background-color: var(--accent-brown) !important;
}

.free-shipping .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-shipping__sub {
    margin: 0;
    padding: 0 0 0 45px;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-primary);
    font-weight: 400;
    vertical-align: middle;
}

.free-shipping__title {
    margin: 0;
    padding: 0 45px 0 0;
    font-size: 34px;
    line-height: 44px;
    color: var(--text-primary);
    font-weight: 600;
    vertical-align: middle;
}

.free-shipping .btn {
    vertical-align: middle;
    margin-left: 45px;
    font-size: 12px;
}

.free-shipping__separator {
    margin: 0;
    padding: 0;
    display: flex;
    width: 1px;
    background-color: var(--white-40);
    vertical-align: middle;
    height: auto;
    align-self: stretch;
}

@media (max-width: 767.98px) {
    .free-shipping .container {
        flex-direction: column;
        gap: 10px;
    }

    .free-shipping__title {
        font-size: 20px;
        line-height: 28px;
        width: 100%;
        display: inline-block;
        text-align: center;
        padding: 0;
        margin-bottom: 0;
    }

    .free-shipping__separator {
        display: none;
    }

    .free-shipping__sub {
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .free-shipping .btn {
        margin: 0;
        text-align: center;
    }
}