.home {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 150px);
}

.home-col {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    transition: 0.2s ease;
}

.home-col-link {
    width: calc(100% / 3);
    height: 100%;
    text-decoration: none;
}

.home-col-white {
    background-color: #cecece;
    width: 1px;
    height: 100%;
}

.home-col-text {
    font-size: 50px;
    font-weight: 700;
    color: white;
    z-index: 1;
    text-shadow: 0 0 20px black;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.7);
    border: 2px solid white;
    border-radius: 15px;
    padding: 0 15px;
    background-color: rgb(0, 0, 0, 0.2);
    position: relative;
    transition: 0.2s ease;
}

.home-col-text::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 15px;
    width: 15px;
    border-radius: 20%;
    background-color: rgb(0, 0, 0, 0.3);
    border: 2px solid white;
}

.home-col-text::before {
    content: "";
    position: absolute;
    right: -38px;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 15px;
    width: 15px;
    border-radius: 20%;
    background-color: rgb(0, 0, 0, 0.3);
    border: 2px solid white;
}

.home-col-dark {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.home-col:hover .home-col-dark {
    background-color: rgb(0, 0, 0, 0.5);
}

.home-col:hover .home-col-text {
    font-size: 60px;
}

.home-col:hover {
    background-size: 110%;
}

/* ==================== TEA PAGE STYLES ==================== */

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.tea-hero {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.tea-hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.tea-hero-slide {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tea-hero-slide.active {
    opacity: 1;
    position: relative;
}

.tea-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.tea-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(95, 71, 62, 0.02) 2px, rgba(95, 71, 62, 0.02) 4px);
    opacity: 0.5;
}

.tea-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 5%;
}

.tea-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #be9c8d;
    margin: 0;
    line-height: 1.1;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    text-shadow: 0 0 20px black;
}

.tea-hero-subtitle {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    text-shadow: 0 0 10px black;
}

.tea-hero-btn {
    margin-top: 0;
    width: 160px;
    height: 50px;
    background-color: #682f2f;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.2s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 0 10px black;
}

.tea-hero-btn:hover {
    background-color: #633a3a;
    transform: scale(1.1);
}

.tea-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgb(255, 255, 255, 0.7);
    font-size: 30px;
}

.tea-hero-nav:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.tea-hero-nav-left {
    left: 10px;
}

.tea-hero-nav-right {
    right: 10px;
}

.tea-hero-nav:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.tea-hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.tea-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.tea-hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.tea-hero-dot.active {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    width: 30px;
    border-radius: 6px;
}


/* Products Section */
.tea-products {
    width: 100%;
    padding: 60px 6% 100px 6%;
    background-color: #ffffff;
}

.tea-products-header {
    text-align: center;
    margin-bottom: 45px;
}

.tea-products-title {
    font-size: 45px;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: 0.5px;
}

.tea-products-underline {
    width: 175px;
    height: 3px;
    background: linear-gradient(90deg, #682f2f 0%, #8b6f5e 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.tea-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tea-product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tea-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #e8e0dc;
}

.tea-product-image-container {
    width: 100%;
    height: 240px;
    background-color: #f8f8f8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tea-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tea-product-card:hover .tea-product-image {
    transform: scale(1.05);
}

.tea-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #bbb;
    font-size: 50px;
}

.tea-product-name {
    padding: 20px 20px 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    min-height: 70px;
}

.tea-product-link {
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    margin: 0 20px 20px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #682f2f;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tea-product-link:hover {
    background-color: #25D366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.tea-product-link i {
    font-size: 18px;
}

/* Promotional Banner Section */
.tea-promo {
    width: 100%;
    display: flex;
    height: 450px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tea-promo-left,
.tea-promo-right {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tea-promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

@media (max-width: 768px) {

    .tea-promo-image,
    .tea-contact-image {
        object-fit: cover;
        height: 100%;
    }
}

.tea-promo-right {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 50px;
    position: relative;
}

.tea-promo-label {
    color: #682f2f;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tea-promo-title {
    font-size: 40px;
    font-weight: 700;
    color: #2a2a2a;
    position: relative;
    z-index: 2;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.tea-promo-title-watermark {
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 80px;
    color: rgba(95, 71, 62, 0.03);
    z-index: 1;
    font-weight: 900;
    white-space: nowrap;
}

.tea-promo-subtitle {
    color: #682f2f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.tea-promo-btn {
    padding: 14px 45px;
    background-color: #682f2f;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
}

.tea-promo-btn:hover {
    background-color: #4a362f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(95, 71, 62, 0.4);
}

/* Contact Section */
.tea-contact {
    width: 100%;
    display: flex;
    height: 450px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tea-contact-left,
.tea-contact-right {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tea-contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tea-contact-left {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 50px;
    position: relative;
}

.tea-contact-label {
    color: #682f2f;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tea-contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #2a2a2a;
    position: relative;
    margin-bottom: 5px;
    z-index: 2;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.tea-contact-title-watermark {
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 80px;
    color: rgba(95, 71, 62, 0.03);
    z-index: 1;
    font-weight: 900;
    white-space: nowrap;
}

.tea-contact-subtitle {
    color: #682f2f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.tea-contact-btn {
    padding: 14px 45px;
    background-color: #682f2f;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
}

.tea-contact-btn:hover {
    background-color: #4a362f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(95, 71, 62, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tea-hero {
        height: 500px;
    }

    .tea-hero-title {
        font-size: 36px;
        letter-spacing: 1.5px;
    }

    .tea-hero-subtitle {
        font-size: 52px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .tea-hero-nav {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .tea-hero-nav-left {
        left: 30px;
    }

    .tea-hero-nav-right {
        right: 30px;
    }

    .tea-features {
        padding: 60px 5%;
        gap: 30px;
    }

    .tea-products {
        padding: 80px 5%;
    }

    .tea-promo,
    .tea-contact {
        height: auto;
    }

    .tea-promo-left,
    .tea-promo-right,
    .tea-contact-left,
    .tea-contact-right {
        height: auto;
    }

    .tea-promo-title,
    .tea-contact-title {
        font-size: 32px;
    }

    .tea-promo-title-watermark,
    .tea-contact-title-watermark {
        font-size: 60px;
    }

    .tea-promo-right,
    .tea-contact-left {
        padding: 45px 40px;
    }

    .tea-promo-subtitle,
    .tea-contact-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .tea-hero {
        height: 450px;
    }

    .tea-hero-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .tea-hero-subtitle {
        font-size: 40px;
        letter-spacing: 1.5px;
        margin-bottom: 35px;
    }

    .tea-hero-btn {
        width: 160px;
        height: 50px;
    }

    .tea-hero-btn-line {
        width: 50px;
    }

    .tea-hero-btn:hover .tea-hero-btn-line {
        width: 65px;
    }

    .tea-hero-nav {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .tea-hero-nav-left {
        left: 20px;
    }

    .tea-hero-nav-right {
        right: 20px;
    }

    .tea-features {
        padding: 60px 5%;
        gap: 25px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .tea-feature-item {
        padding: 30px 25px;
    }

    .tea-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .tea-products {
        padding: 50px 5%;
    }

    .tea-products-title {
        font-size: 30px;
    }

    .tea-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    .tea-promo,
    .tea-contact {
        flex-direction: column;
        height: auto;
    }

    .tea-promo-left,
    .tea-promo-right,
    .tea-contact-left,
    .tea-contact-right {
        width: 100%;
        height: auto;
    }

    .tea-promo-left {
        order: 2;
        min-height: 300px;
        max-height: 400px;
    }

    .tea-promo-right {
        order: 1;
        padding: 40px 35px;
        min-height: auto;
    }

    .tea-contact-left {
        order: 1;
        padding: 40px 35px;
        min-height: auto;
    }

    .tea-contact-right {
        order: 2;
        min-height: 300px;
        max-height: 400px;
    }

    .tea-promo-title,
    .tea-contact-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .tea-promo-title-watermark,
    .tea-contact-title-watermark {
        font-size: 50px;
        top: -20px;
    }

    .tea-promo-subtitle,
    .tea-contact-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .tea-promo-label,
    .tea-contact-label {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .tea-promo-btn,
    .tea-contact-btn {
        padding: 12px 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tea-hero {
        height: 400px;
    }

    .tea-hero-title {
        font-size: 24px;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .tea-hero-subtitle {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }

    .tea-hero-btn {
        width: 140px;
        height: 45px;
    }

    .tea-hero-btn-line {
        width: 45px;
    }

    .tea-hero-btn:hover .tea-hero-btn-line {
        width: 55px;
    }

    .tea-hero-nav {
        width: 50px;
        height: 50px;
        font-size: 16px;
        border-width: 1.5px;
    }

    .tea-hero-nav-left {
        left: 15px;
    }

    .tea-hero-nav-right {
        right: 15px;
    }

    .tea-hero-dots {
        bottom: 20px;
        gap: 10px;
    }

    .tea-hero-dot {
        width: 10px;
        height: 10px;
    }

    .tea-hero-dot.active {
        width: 25px;
    }

    .tea-features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 50px 4%;
    }

    .tea-feature-item {
        padding: 30px 20px;
    }

    .tea-products {
        padding: 40px 4%;
    }

    .tea-products-title {
        font-size: 28px;
    }

    .tea-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tea-product-image-container {
        height: 220px;
    }

    .tea-promo,
    .tea-contact {
        height: auto;
    }

    .tea-promo-left,
    .tea-promo-right,
    .tea-contact-left,
    .tea-contact-right {
        width: 100%;
        height: auto;
    }

    .tea-promo-left,
    .tea-contact-right {
        min-height: 250px;
        max-height: 350px;
    }

    .tea-promo-right,
    .tea-contact-left {
        min-height: auto;
    }

    .tea-promo-right,
    .tea-contact-left {
        padding: 35px 25px;
    }

    .tea-promo-title,
    .tea-contact-title {
        font-size: 24px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .tea-promo-title-watermark,
    .tea-contact-title-watermark {
        font-size: 40px;
        top: -15px;
    }

    .tea-promo-subtitle,
    .tea-contact-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .tea-promo-label,
    .tea-contact-label {
        font-size: 10px;
        margin-bottom: 6px;
        letter-spacing: 1px;
    }

    .tea-promo-btn,
    .tea-contact-btn {
        padding: 11px 30px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
}

/* -------------------------- RESPONSIVE QUERIES FOR HOME GRID -------------------------- */

@media (max-width: 991px) {
    .home {
        flex-direction: column;
        height: auto;
    }

    .home-col-link {
        width: 100%;
        height: 350px;
        /* Fixed height for each stacked column */
    }

    .home-col-white {
        display: none;
        /* Hide vertical separators */
    }

    .home-col-text {
        font-size: 40px;
    }
}