/* Container Spacing */
.teas-slider {
    padding: 0 40px; /* Space for arrows */
}

/* Slide Item Style */
.tea-slide-item {
    margin: 0 15px; /* Gap between slides */
    text-align: center;
}

.tea-content-wrapper {
    background: #fff;
    padding: 20px;
}

/* Image */
.tea-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 15px;
    border-radius: 50%; /* Optional: matches circular style if any */
}

/* Typography */
.tea-title {
    font-size: 18px;
    font-family: serif; /* Matches the brand's classic look */
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000;
}

.tea-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Button */
.tea-link {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #000;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 12px;
    color: #000;
    transition: all 0.3s ease;
}

.tea-link:hover {
    background: #000;
    color: #fff;
}

/* Slick Dots Customization */
.slick-dots li button:before {
    font-size: 12px;
    color: #000;
}