/* Discover Spices Section Styles */
.discover-section {
    display: flex;
    height: 530px;
    background-image: url('../assets/discover_bg.webp');
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    margin-top: 55px;
}

.discover-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Left Side - Content with revealed background */
.discover-content-wrap {
    padding: 10px 8% 100px 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* Premium Brush Stroke Mask */
.discover-content-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    /* Stretch far left */
    right: 0;
    bottom: 0;
    background-color: #fdf6ec;
    /* Warm cream background */
    z-index: -2;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

.discover-content-wrap h2 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #1a2a3a;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    /* Ensure text is above spices */
}

.discover-content-wrap .divider {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.discover-content-wrap p {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 45px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* CTA Button - Premium Pill Style */
.btn-all-products {
    display: inline-block;
    padding: 8px;
    padding-right: 35px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid var(--accent-color, #E88D23);
    text-decoration: none;
    color: #2d3748;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    position: relative;
    z-index: 2;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-all-products .icon-circle {
    width: 42px;
    height: 42px;
    background: var(--accent-color, #E88D23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.btn-all-products .icon-circle svg {
    stroke: white;
}

.btn-all-products:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(241, 178, 178, 0.25);
    border-color: var(--primary-color, #1B3565);
}

.btn-all-products:hover .icon-circle {
    transform: rotate(15deg);
}

/* Floating Decorative Spices */
.scattered-spices {
    position: absolute;
    bottom: 40px;
    left: -240px;
    width: 325px;
    pointer-events: none;
    opacity: 1;
    z-index: 1;
    /* Bring above background but keep below text if needed */
    mix-blend-mode: multiply;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.08));
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

/* Right Side - Empty space to reveal background */
.discover-image-box {
    position: relative;
    height: 100%;
    min-height: 600px;
    background: transparent;
}

/* Responsive */
@media (max-width: 1100px) {
    .discover-content-wrap h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .discover-section {
        background-image: none;
        background-color: #fdf6ec;
        min-height: auto;
    }

    .discover-container {
        grid-template-columns: 1fr;
    }

    .discover-content-wrap {
        padding: 80px 8%;
        text-align: center;
        align-items: center;
    }

    .discover-content-wrap::before {
        mask-image: none;
        -webkit-mask-image: none;
        left: 0;
    }

    .scattered-spices {
        width: 100%;
        left: 0;
        bottom: -20px;
        opacity: 0.5;
    }

    .discover-image-box {
        min-height: 450px;
        background-image: url('../assets/discover_bg.webp');
        background-size: cover;
        background-position: center;
        margin: 0 20px 40px;
        border-radius: 30px;
        display: none !important;
    }
    .discover-content-wrap p {
    color: #000000;
}
}
@media (max-width: 540px) {
    .discover-content-wrap{
        padding: 0px;
    }
}