.cyc-carousel-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
}
.cyc-module {
    padding: 30px 0;
}

.cyc-module-hot {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.cyc-module-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 0 2rem;
    position: relative;
}

.cyc-title-section {
    flex: 1;
    text-align: center;
}

.cyc-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.cyc-subtitle {
    font-size: 14px;
    color: #999;
}

.cyc-arrows {
    display: flex;
    gap: 12px;
    position: absolute;
    top:20px;
    right:0;
}

.cyc-arrow {
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyc-arrow svg {
    width: 22px;
    height: 22px;
    fill: #333;
    transition: all 0.3s ease;
}

.cyc-arrow:hover svg {
    fill: #14B5E1;
}

@media (max-width: 768px) {
    .cyc-module-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 15px;
    }

    .cyc-title-section {
        margin-bottom: 0;
    }

    .cyc-arrows {
        display: none;
    }

    .cyc-mobile-arrows {
        display: flex !important;
        justify-content: center;
        gap: 40px;
        margin-top: 20px;
    }

    .cyc-mobile-arrows .cyc-arrow {
        background: none;
        border-radius: 0;
        box-shadow: none;
        padding: 4px 12px;
    }

    .cyc-mobile-arrows .cyc-arrow:active {
        opacity: 0.6;
        transform: scale(0.95);
    }

    .cyc-mobile-arrows .cyc-arrow svg {
        width: 24px;
        height: 24px;
        fill: #333;
    }
}

.cyc-mobile-arrows {
    display: none;
}

.cyc-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cyc-carousel-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.cyc-product-card {
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.cyc-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cyc-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9f9f9;
}

.cyc-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cyc-product-card:hover .cyc-card-media img {
    transform: scale(1.05);
}

.cyc-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #14B5E1;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    z-index: 10;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cyc-card-info {
    padding: 12px;
}

.cyc-card-vendor {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.cyc-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cyc-card-price {
    font-size: 16px;
    font-weight: bold;
    color: #14B5E1;
}

.cyc-card-price span {
    font-size: 12px;
    font-weight: normal;
    color: #999;
    text-decoration: line-through;
    margin-left: 6px;
}

.cyc-module-hot .cyc-product-card {
    width: calc((100% - 100px) / 6);
}

@media (max-width: 1024px) {
    .cyc-module-hot .cyc-product-card {
        width: calc((100% - 60px) / 4);
    }
}

@media (max-width: 768px) {
    .cyc-module-hot .cyc-product-card {
        width: calc((100% - 20px) / 2);
    }
}

.cyc-module-new .cyc-product-card {
    width: calc((100% - 60px) / 4);
}

@media (max-width: 1024px) {
    .cyc-module-new .cyc-product-card {
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 768px) {
    .cyc-module-new .cyc-product-card {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 480px) {
    .cyc-carousel-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cyc-module-header {
        padding: 0 1rem;
    }
}


.cyc-carousel-wrapper2 {
    background-color: #000;
}
.cyc-carousel-wrapper2 .cyc-title{
    color: #fff;
}

.cyc-carousel-wrapper2 .cyc-arrow svg{
    fill:#fff;
}
.cyc-carousel-wrapper2 .cyc-card-title{
    color: #fff;
    text-align: center;
    font-size: 2em;
}