/* .jewellery-category-section {
    padding: 50px 20px;
    background: #faf7fc;
}

.category-container {
    max-width: 1300px;
    margin: auto;
}

.category-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.category-heading h2 {
    font-size: 26px;
    font-weight: 600;
    color: #3a235f;
}

.category-icon {
    font-size: 28px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
}

.category-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.category-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: #eee;
    transition: transform 0.35s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card:hover .category-image {
    transform: translateY(-6px);
}

.category-title {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #4b2b72;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .category-heading h2 {
        font-size: 22px;
    }
} */


.wrapped-love-section {
    padding: 25px;
    background: #e6e5e7;
    /* border: 1px solid #e6defa; */
    /* border-radius: 14px; */
}

.wrapped-love-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* LEFT LABEL */
.wrapped-label {
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gift-icon {
    /* width: 54px;
    height: 54px; */
    border-radius: 12px;
    background: linear-gradient(135deg, #f3c2ff, #e6b7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.gift-icon img{
        width: 154px;
    height: 100px;
}

.wrapped-label h3 {
    font-size: 18px;
    font-weight: 600;
    color: #020202;
    line-height: 1.2;
}

/* CATEGORY ROW */
.wrapped-categories {
    display: flex;  
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
}

.wrapped-categories::-webkit-scrollbar {
    display: none;
}

.wrapped-item {
    text-decoration: none;
    text-align: center;
    min-width: 120px;
    color: #020202;
}

.wrapped-img {
    width: 110px;
    height: 110px;
    border-radius: 18px;
    overflow: hidden;
    background: #eee;
}

.wrapped-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapped-item span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
    .wrapped-love-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .wrapped-categories {
        width: 100%;
    }
    .wrapped-label {
        margin-bottom: 10px;
    }

    .wrapped-img {
        width: 95px;
        height: 95px;
    }
}

