/* Ochaka Intro Section */
.ochaka-title {
    font-size: 16vw;
    line-height: 1.1;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
}

.ochaka-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.ochaka-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    max-width: 800px;
    width: 100%;
}

/* First Store Section */
.first-store-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.first-store-content img:nth-child(1) {
    grid-column-start: 2;
    grid-column-end: 3;
}

.first-store-text {
    grid-column-start: 3;
    grid-column-end: 5;
    padding: 0 30px;
}

.first-store-content img:nth-child(4) {
    grid-column-start: 3;
    grid-column-end: 4;
}

.spinning-badge {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 40px;
}

.spinning-circle {
    animation: spin 5s linear infinite;
}

.spinning-text {
    font-size: 18px;
    font-weight: 400;
    fill: var(--black);
    letter-spacing: 12px;
    font-weight: 600;
}

.spinning-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinning-arrow svg {
    color: var(--black);
}

.first-store-text h4 {
    line-height: 1.3;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .first-store-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .first-store-content img:nth-child(1) {
        grid-column-start: unset;
        grid-column-end: unset;
    }

    .first-store-text {
        grid-column-start: 2;
        grid-column-end: 4;
    }

    .first-store-content img:nth-child(4) {
        grid-column-start: unset;
        grid-column-end: unset;
    }
}

@media (max-width: 768px) {
    .first-store-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .first-store-text {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        padding: 0;
    }
}







/* Brand Story Section */
.brand-story-main {
    text-align: center;
    margin-bottom: 60px;
}

.brand-story-main h4 {
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.brand-story-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    /* max-width: 900px; */
    margin: 0 auto 60px;
}

.brand-story-images {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2%;
    margin-bottom: 80px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    anchor-name: --carousel;
    scroll-snap-type: x mandatory;
    scroll-marker-group: after;

    &::-webkit-scrollbar {
        display: none;
    }

    &::scroll-marker-group {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }
}

.story {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    width: 32%;
    flex-shrink: 0;
}

.story::scroll-marker {
    content: '';
    height: 10px;
    width: 10px;
    background-color: gray;
    border-radius: 50%;
    display: none;
}

.story::scroll-marker:target-current {
    background-color: var(--primary);
    transform: scale(1.3);
}

.story-image {
    width: 100%;
    height: 400px;
    overflow: hidden;

    &:hover img {
        transform: scale(1.05);
    }
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-value {
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.brand-value h3 {
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 12px;
}


@media (max-width: 800px) {
    .story {
        width: 49%;
    }
    .story::scroll-marker {
        display: flex;
    }

    .story:nth-child(2)::scroll-marker {
        display: none;
    }
}

@media (max-width: 600px) {
    .story {
        width: 100%;
    }
        .story:nth-child(2)::scroll-marker {
        display: block;
    }
}

.line {
    height: 1px;
    background-color: var(--line);
    width: 70%;
    margin: 40px auto;
}

/* Customer Reviews Section */
.review-card {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reviews {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.review {
    width: 100%;
    flex-shrink: 0;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background-color: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.quote-icon svg {
    height: 32px;
    width: auto;
    color: var(--white);
}

.reviewer-info {
    margin-bottom: 30px;
}

.reviewer-name {
    line-height: 1.4;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verified-badge {
    color: var(--success);
    font-size: 16px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.stars svg {
    color: #e69600;
    height: 14px;
}

.review-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 40px;
}

.reviewer-avatars {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 3px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.avatar.active {
    border-color: var(--primary);
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar:hover {
    border-color: var(--primary);
    cursor: pointer;
}


@media (max-width: 768px) {
    .quote-icon {
        height: 40px;
        width: 40px;
        margin: 0 auto 25px;

        svg {
            height: 26px;
        }
    }

    .review-text {
        font-size: 18px;
    }

    .avatar {
        height: 50px;
        width: unset;
        /* aspect-ratio: 1; */
    }
}
@media (max-width: 500px) {
    .review-text {
        font-size: 16px;
    }
}



.posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.post {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    img {
        height: 100%;
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .overlay {
        position: absolute;
        inset: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, .2);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .overlay .icon {
        height: 50px;
        width: 50px;
        border-radius: 50%;
        background-color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
    }

    .overlay .icon::before {
        position: absolute;
        content: 'View Product';
        padding: 5px 10px;
        border-radius: 6px;
        white-space: nowrap;
        background-color: var(--black);
        color: var(--white);
        bottom: 130%;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }

    .overlay .icon::after {
        position: absolute;
        content: '';
        border: 10px solid;
        border-color: var(--black) transparent transparent transparent;
        bottom: calc(110% - 8px);
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
    }

    .icon svg {
        height: 60%;
    }

    .overlay .icon:hover {
        background-color: var(--black);

        svg {
            background-color: var(--black);
            fill: var(--white);
        }

        &::before,
        &::after {
            opacity: 1;
            transform: translateY(0);
        }
    }

    ;
}

/* Mobile Responsiveness */
/* @media (max-width: 991px) {
    .first-store-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .first-store-text {
        padding-left: 0;
        text-align: center;
    }

    .brand-story-images {
        grid-template-columns: 1fr;
    }

    .brand-values {
        grid-template-columns: 1fr;
        gap: 40px;
    }
} */

/* @media (max-width: 767px) {
    .ochaka-intro {
        padding: 60px 0;
    }

    .first-store,
    .brand-story,
    .customer-reviews {
        padding: 60px 0;
    }

    .first-store-images {
        height: 400px;
    }

    .secondary-images {
        grid-template-rows: 1fr 1fr;
    }

    .secondary-image:last-child {
        display: none;
    }

    .spinning-badge {
        margin: 0 auto 30px;
    }
} */