/* Swiper Custom Styles */
.hero-swiper.custom-slider {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    position: relative;
    background-color: #c9def4; /* Default right bg */
}

.hero-swiper.custom-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-swiper.custom-slider .slide-bg-shape {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 80%;
    height: 160%;
    background-color: #eef3f7; /* Light grey left bg */
    border-radius: 50%;
    z-index: 1;
}

.custom-slider-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

.slider-social {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.slider-social ul li {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.slider-social ul li a {
    color: #111;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.slider-social ul li a:hover {
    color: #555;
}

.slider-social ul li a i {
    transform: rotate(90deg);
    font-size: 15px;
}

.slider-text-area {
    padding-left: 100px; /* Room for social icons */
}

.slider-title {
    font-size: 110px;
    font-weight: 800;
    line-height: 0.95;
    color: #1c2b36;
    letter-spacing: -3.5px;
    margin-bottom: 25px;
}

.slider-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.slider-subtitle strong {
    color: #1c2b36;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.slider-btn {
    background-color: #1a222f;
    color: #fff;
    padding: 16px 35px;
    border-radius: 35px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: background 0.3s;
}

.slider-btn:hover {
    background-color: #333;
    color: #fff;
}

.slider-btn i {
    font-size: 16px;
}

.slider-image {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 3;
}

.slider-image img {
    width: 100%;
    height: auto;
}

.slider-next-box {
    position: absolute;
    left: 200px;
    bottom: 0;
    background: #fff;
    display: flex;
    align-items: center;
    z-index: 10;
    padding: 0 0 0 30px;
}

.slider-next-box .next-text {
    font-size: 14px;
    font-weight: 700;
    margin-right: 30px;
    color: #111;
    letter-spacing: 1px;
}

.slider-next-box .next-img {
    width: 150px;
    height: 100px;
    background: #e8dbd1; /* match the small box color from image */
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-next-box .next-img img {
    max-width: 80%;
    max-height: 80%;
}

.slider-more-info {
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-more-info .info-icon {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(17, 17, 17, 0.4);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-style: italic;
    color: rgba(17,17,17,0.7);
}

/* Caldarra Text Logo */
.caldarra-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #16202c;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.caldarra-brand-text:hover {
    color: #000000;
}

.caldarra-footer-brand {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
    display: inline-block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.caldarra-footer-brand:hover {
    color: rgba(255, 255, 255, 0.85);
}
.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1050;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 28px rgba(18, 140, 126, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 34px rgba(18, 140, 126, 0.45);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #128c7e;
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
        font-size: 27px;
    }
}

.shop-boxed .shop-footer > a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

h1,
h2,
h3,
h4,
h5,
h6,
.tp-caption {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: manual;
}

.promo-title {
    font-size: clamp(2.6rem, 1.2rem + 3vw, 5rem);
    line-height: 1.05;
}
