@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

.highlight-products-section {
    background-color: #f9943f;
    /* Vibrant Purple */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Background Pattern */
.highlight-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../theme/img/core-img/logo-x.png');
    background-repeat: repeat;
    background-size: 80px;
    opacity: 0.1;
    filter: brightness(0) invert(1);
    transform: rotate(-15deg) scale(1.5);
    z-index: 1;
}

.highlight-products-section .container {
    position: relative;
    z-index: 2;
}

.highlight-title-wrapper {
    margin-bottom: 2rem;
}

.highlight-subtitle {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    color: #222222;
    /* Cyan */
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.highlight-main-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 6rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.highlight-description {
    font-size: 1.1rem;
    color: #F3F4F6;
    max-width: 450px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Rotated Card */
.highlight-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-card-rotated {
    /* background: #fff; */
    padding: 15px;
    border-radius: 30px;
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); */
    transform: rotate(5deg);
    transition: transform 0.3s ease;
    max-width: 550px;
    width: 100%;
}

.highlight-card-rotated:hover {
    transform: rotate(2deg) scale(1.02);
}

.highlight-card-rotated img {
    border-radius: 20px;
    width: 100%;
    display: block;
}

/* Nav & Pagination */
.highlight-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

.highlight-nav-btn {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    /* Bright Yellow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    border: none;
    transition: transform 0.2s, background-color 0.2s;
}

.highlight-nav-btn:hover {
    transform: scale(1.1);
    background-color: #ffffff;
}

.highlight-nav-btn i {
    font-size: 24px;
    color: #1F2937;
}

.highlight-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.highlight-dot {
    width: 40px;
    height: 8px;
    background-color: #4B5563;
    /* Darker bg */
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
}

.highlight-dot.active {
    background-color: #f86300;
    width: 80px;
}

/* Store Buttons */
.store-btns-row {
    display: flex;
    gap: 15px;
}

.store-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    background: #fff;
    color: #4B5563;
    border: 2px solid transparent;
}

.store-btn:hover {
    background: #f9943f;
    color: #fff;
    border-color: #fff;
}

@media (max-width: 991px) {
    .highlight-main-title {
        font-size: 4rem;
    }

    .highlight-card-rotated {
        margin-top: 50px;
        transform: rotate(0deg);
    }
}