.main-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

.expo-container {
    width: 100%;
    overflow-x: hidden;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 760px;
}

.hero-section {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    height: auto;
    background-color: transparent;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

    .hero-section .slide::before {
        content: none;
    }

.category-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    height: auto;
    background-color: transparent;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
    border-radius: 10px;
}

.slides-wrapper {
    display: flex;
    transition: transform 0.25s ease;
    width: 100%;
    height: 100%;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    flex-wrap: nowrap;
}

.slide {
    min-width: 100%;
    flex: 0 0 100%;
    position: relative;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    width: 100%;
    aspect-ratio: 4 / 1;
}

    .slide::before {
        content: none;
    }

.banner-image {
    width: 100%;
    height: 100%;
    display: block;
    /*object-fit: cover;*/
    object-position: center center;
    transition: transform 0.4s ease-out;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    border-radius: 10px;
}

.slide:hover .banner-image {
    transform: none;
}

.hero-section .slide:hover .banner-image {
    transform: none;
}

.slide-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    z-index: 10;
    pointer-events: none;
}

.slide-arrow {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 30px;
    width: 36px;
    height: 36px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: auto;
    opacity: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slides-container:hover .slide-arrow {
    opacity: 1;
}

.slide-arrow:hover {
    background-color: rgba(255, 140, 66, 0.9);
    color: white;
    transform: scale(1.1);
}

.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.slide-indicator {
    width: 30px;
    height: 3px;
    border-radius: 1.5px;
    background-color: rgb(231 231 231 / 90%);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

    .slide-indicator.active {
        background-color: rgba(255, 140, 66, 0.9);
        width: 40px;
    }

.section-header {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 3rem;
    position: relative;
    padding: 0 2rem;
}

.supplier-section-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2rem;
}

.section-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, rgba(243, 156, 18, 0.1) 0%, rgba(243, 156, 18, 0.8) 20%, rgba(230, 126, 34, 0.8) 80%, rgba(243, 156, 18, 0.1) 100% );
    margin: 0 auto;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

    .section-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100% );
    }

.section-container {
    margin-bottom: 3rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.add-to-cart {
    margin: 1rem;
    width: calc(100% - 2rem);
}

.category-banner .banner-image {
    object-position: center center;
}

.category-banner .slide-indicators {
    display: flex;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    transition: font-size 0.3s ease, margin-bottom 0.3s ease;
}

    .section-title .orange-text {
        color: #F6861F;
    }

    .section-title .purple-text {
        color: #482875;
        transition: margin-left 0.3s ease;
    }

.view-all-container {
    text-align: center;
    margin: 50px 0 80px 0;
}

.view-all-button {
    background-color: #F6861F;
    color: #fff;
    border: 2px solid black;
    padding: 10px 80px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0 0 black;
    text-decoration: none !important;
}

    .view-all-button:hover {
        background-color: #fff;
        color: #1a1a1a;
    }

/* Son Haberler Bölümü CSS */
.news-section {
    background-color: white;
    padding-bottom: 65px;
    width: 100%;
    overflow-x: hidden;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.news-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.news-card-item {
    text-align: center;
}

.news-card {
    display: inline-block;
    background-color: #fff;
    border: 1px solid black;
    border-radius: 10px;
    margin-bottom: 12px;
    position: relative;
    width: 100%;
    box-shadow: 5px 5px 0 0 black;
    transition: all 0.2s ease;
}

    .news-card:hover {
        transform: translate(-4px, -4px);
        box-shadow: 9px 9px 0 0 black;
    }

.news-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 10px;
}

.news-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: black;
    margin-bottom: 2rem;
    min-height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.news-card-button {
    background: #ff8006;
    color: white;
    border-color: #ff8006;
    box-shadow: 3px 3px 0 0 black;
    border: 1px solid black;
    padding: 0.6rem 2.5rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .news-card-button:hover {
        color: black;
        background: white;
    }


/* Partner Section */
.partner-section {
    background: #482875;
    width: 100%;
    padding: 2rem 0;
    margin-bottom: 3rem;
    overflow-x: hidden;
}

.partner-section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.partner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.partner-scroller {
    position: relative;
    overflow: hidden;
    cursor: grab;
    margin-bottom: 1rem;
}

    .partner-scroller.active-drag {
        cursor: grabbing;
        cursor: -webkit-grabbing;
        user-select: none;
    }

    .partner-scroller::before,
    .partner-scroller::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        z-index: 2;
        pointer-events: none;
    }

    .partner-scroller::before {
        left: 0;
        background: linear-gradient(to right, #482875 0%, #482875 10%, rgba(72, 40, 117, 0.9) 20%, rgba(72, 40, 117, 0.7) 35%, rgba(72, 40, 117, 0.5) 50%, rgba(72, 40, 117, 0.3) 65%, rgba(72, 40, 117, 0.1) 80%, transparent 100% );
    }

    .partner-scroller::after {
        right: 0;
        background: linear-gradient(to left, #482875 0%, #482875 10%, rgba(72, 40, 117, 0.9) 20%, rgba(72, 40, 117, 0.7) 35%, rgba(72, 40, 117, 0.5) 50%, rgba(72, 40, 117, 0.3) 65%, rgba(72, 40, 117, 0.1) 80%, transparent 100% );
    }

.partner-scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
    gap: 15px;
}

.partner-scroller.is-dragging .partner-card {
    pointer-events: none;
}

.partner-slider-static {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Partner Slide Item */
.partner-slide-item {
    flex: 0 0 auto;
    width: 220px; 
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.partner-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

    .partner-card:hover {
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }

.partner-image {
    position: relative;
    height: 0;
    padding-bottom: 70%;
    overflow: hidden;
    background-color: white;
}

.partner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
    pointer-events: none;
    cursor: grab !important;
}

.partner-content {
    padding: 12px;
}

.partner-description {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
}

.supplier-slider-section {
    background: white;
    width: 100%;
    padding: 0;
    overflow-x: hidden;
}

.supplier-bg-icon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.icon-kutu {
    width: 120px;
    bottom: 0;
    right: 3%;
}

.icon-search-kutu {
    width: 120px;
    top: -5%;
    right: 10%;
}

.icon-load-kutu {
    width: 150px;
    top: 25%;
    left: 2%;
}

.supplier-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    position: relative;
}

/* Supplier Scroller Styles */
.supplier-scroller {
    position: relative;
    overflow: hidden;
    cursor: grab;
    padding: 0.5rem;
}

.supplier-scroller.active-drag {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    user-select: none;
}

/* Sol ve sağ gradient fade efekti */
.supplier-scroller::before,
.supplier-scroller::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.supplier-scroller::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.supplier-scroller::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.supplier-scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
    gap: 15px;
}

.supplier-scroller.is-dragging .supplier-slide-card {
    pointer-events: none;
}

.supplier-slider-static {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Supplier Slide Item */
.supplier-slide-item {
    flex: 0 0 auto;
    width: 220px;
    padding-bottom: 10px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.supplier-slide-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

    .supplier-slide-card:hover {
        box-shadow: 0 8px 10px rgba(0, 0, 0, 0.12);
    }

.supplier-slide-image {
    position: relative;
    height: 0;
    padding-bottom: 70%;
    overflow: hidden;
    background-color: white;
}

.supplier-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
    pointer-events: none;
    cursor: grab !important;
}

.supplier-slide-content {
    padding: 12px;
}

.supplier-slide-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .supplier-slide-name:hover {
        color: #ff8006;
    }

.supplier-slide-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #666;
}

    .slide-info-item i {
        color: #ff8006;
        font-size: 0.75rem;
    }

/* Shimmer animation */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Kategoriler Section */
.categories-section {
    margin: 3rem 0 2.2rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 2.5rem 2rem;
}

.category-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-item a.category-card-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.category-card {
    display: block;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    position: relative;
    width: 100%;
    box-shadow: 5px 5px 0 0 black;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-item a:hover .category-card {
    transform: translate(-4px, -4px);
}

.category-item a:hover .category-card::after {
    transform: translate(4px, 4px);
}

.category-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 10px;
}

.category-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.expo-etiket-section {
    margin: 2rem auto 3rem auto;
    max-width: 1400px;
    padding: 0 1rem;
}

/* Banner Section - Özel Grid Banner Bölümü */
.expo-banner-section {
    margin: 3rem auto 3rem auto;
    max-width: 1400px;
    padding: 0 1rem;
}

.expo-banner-grid-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expo-banner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.expo-banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 1;
    transition: all 0.3s ease;
}

    .expo-banner-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
    }

    .expo-banner-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .expo-banner-card:hover img {
        transform: scale(1.02);
    }

.expo-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .news-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    .popular-categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 1.5rem;
    }
    .loading-container {
        min-height: 800px;
    }
    .news-cards-container {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1.5rem;
        padding: 1rem 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        cursor: grab;
    }
    .news-cards-container::-webkit-scrollbar {
        display: none;
    }
    .news-cards-container.active {
        cursor: grabbing;
    }
    .news-card-item {
        flex: 0 0 30%;
    }
    .news-card-title {
        min-height: 35px;
    }
    .supplier-scroller {
        margin-bottom: 0;
    }
    .supplier-slide-item {
        width: 200px;
    }
    .partner-slide-item {
        width: 200px;
    }
    .news-container {
        padding: 0;
    }
    .news-subtitle {
        font-size: 1rem;
    }
    .popular-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 0;
    }
    .expo-container {
        padding: 0.5rem;
    }
    .section-container {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    .supplier-section-header {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    .section-header {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    .news-header {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    .buttons-container {
        flex-direction: row;
        gap: 0.5rem;
    }
    .view-all-container {
        text-align: center;
        margin: 30px 0 30px 0;
    }
    .view-all-button {
        padding: 10px 40px;
        font-size: 0.8rem;
    }
    .hero-section,
    .category-banner {
        border-radius: 10px;
        overflow: hidden;
        padding: 0 0.5rem;
    }
    .news-card-item {
        flex: 0 0 48%;
    }
    .news-card-title {
        min-height: 35px;
    }
    .partner-section {
        margin-bottom: 0;
    }
    .news-cards-container {
        padding: 0 0.5rem 1rem 0;
        gap: 1.2rem;
    }
    .supplier-slide-item {
        width: 150px;
    }
    .supplier-scroller::before,
    .supplier-scroller::after {
        width: 60px;
    }
    .partner-slide-item {
        width: 180px;
    }
    .partner-section-header {
        padding: 0 1rem;
    }
    .partner-scroller::before,
    .partner-scroller::after {
        width: 60px;
    }
    .news-section {
        border-radius: 15px;
    }
    .news-subtitle {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    .news-card-content {
        padding: 1.3rem;
    }
    .news-card-date {
        left: 0.2rem;
    }
    .date-circle {
        width: 50px;
        height: 50px;
    }
    .news-wave-top,
    .news-wave-bottom {
        height: 40px;
    }
    .popular-categories-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.5rem;
        margin: 0 -0.5rem;
        gap: 1rem;
        justify-content: flex-start;
        cursor: grab;
    }
    .popular-categories-grid::-webkit-scrollbar {
        display: none;
    }
    .popular-categories-grid.active {
        cursor: grabbing;
    }
    .popular-category-card {
        flex: 0 0 120px;
        width: 120px;
    }
    .popular-category-name {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    .categories-section {
        margin: 1rem 0;
        padding: 0 15px;
        overflow: hidden;
    }
    .categories-grid {
        display: flex;
        flex-direction: row;
        gap: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 5px 15px 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #999 #f1f1f1;
    }
    .categories-grid::-webkit-scrollbar {
        height: 6px;
    }
    .categories-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .categories-grid::-webkit-scrollbar-thumb {
        background: #999;
        border-radius: 10px;
    }
    .categories-grid::-webkit-scrollbar-thumb:hover {
        background: #777;
    }
    .category-item {
        flex: 0 0 120px;
        width: 120px;
        min-height: auto;
    }
    .category-item a:hover .category-card {
        transform: none;
    }
    .category-item a:hover .category-card::after {
        transform: none;
    }
    .expo-banner-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .expo-banner-section {
        margin: 0 auto 30px auto;
        padding: 0 0.5rem;
    }

    .expo-etiket-section {
        margin: 0 auto 30px auto;
        padding: 0 0.5rem;
    }
    .expo-banner-grid-container {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .main-container {
        padding: 0;
    }
    .expo-container {
        padding: 0.4rem;
    }
    .loading-container {
        min-height: 700px;
    }
    .section-container {
        margin-bottom: 1.5rem;
        padding: 0 0.4rem;
    }
    .section-header {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }
    .supplier-section-header {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }
    .news-header {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    .section-title {
        font-size: 1.25rem;
    }
    .hero-section,
    .category-banner {
        border-radius: 10px;
        overflow: hidden;
    }
    .slide-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
        opacity: 1;
    }
    .slide-arrow:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        transform: none !important;
    }
    .slide-indicators {
        bottom: 8px;
    }
    .slide-indicator {
        width: 20px;
        height: 2px;
    }
    .slide-indicator.active {
        width: 30px;
    }
    .news-cards-container {
        gap: 1rem;
    }
    .news-card-button {
        padding: 0.5rem 2rem;
        font-size: 0.7rem;
    }
    .supplier-slide-item {
        width: 160px;
    }
    .supplier-slider-static {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .supplier-scroller::before,
    .supplier-scroller::after {
        width: 40px;
    }
    .partner-section {
        padding: 1rem 0;
    }
    .partner-slide-item {
        width: 160px;
    }
    .partner-slider-static {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .partner-scroller::before,
    .partner-scroller::after {
        width: 40px;
    }
    .news-section {
        border-radius: 12px;
        margin: 0 auto;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    .news-cards-container {
        grid-template-columns: 1fr;
    }
    .news-subtitle {
        font-size: 0.85rem;
    }
    .news-card-content {
        padding: 1.2rem;
    }
    .news-card-date {
        left: 0.15rem;
    }
    .date-circle {
        width: 45px;
        height: 45px;
    }
    .news-card-link i {
        margin-left: 0.6rem;
    }
    .news-all-link {
        padding: 0.8rem 1.3rem;
        font-size: 0.9rem;
    }
    .news-card {
        border-radius: 15px;
    }
    .news-wave-top,
    .news-wave-bottom {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 0;
    }
    .expo-container {
        padding: 0.3rem;
    }
    .section-container {
        margin-bottom: 1rem;
        padding: 0 0.3rem;
    }
    .section-header {
        padding: 0 0.3rem;
        margin-bottom: 0.8rem;
        margin-top: 0.8rem;
    }
    .supplier-section-header {
        padding: 0 0.3rem;
        margin-bottom: 0.8rem;
        margin-top: 0.8rem;
    }
    .news-header {
        padding: 0 0.3rem;
        margin-bottom: 0.8rem;
        margin-top: 0.8rem;
    }
    .section-title {
        padding: 0 0.5rem;
    }
    .hero-section,
    .category-banner {
        margin-bottom: 1rem;
        border-radius: 10px;
        overflow: hidden;
        padding: 0 0.3rem;
    }
    .slide-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
        opacity: 1;
    }
    .slide-arrow:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        transform: none !important;
    }
    .slide-indicators {
        bottom: 8px;
    }
    .slide-indicator {
        width: 20px;
        height: 2px;
    }
    .slide-indicator.active {
        width: 30px;
    }
    .supplier-slide-item {
        width: 140px;
    }
    .supplier-slide-content {
        padding: 8px;
    }
    .supplier-slide-name {
        font-size: 0.85rem;
    }
    .supplier-scroller::before,
    .supplier-scroller::after {
        width: 30px;
    }
    .partner-slide-item {
        width: 140px;
    }
    .partner-content {
        padding: 8px;
    }
    .partner-description {
        font-size: 0.85rem;
    }
    .partner-scroller::before,
    .partner-scroller::after {
        width: 30px;
    }
    .news-section {
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }
    .news-subtitle {
        font-size: 0.8rem;
    }
    .news-card-title {
        font-size: 0.7rem;
        margin-bottom: 1rem;
        min-height: 27px;
    }
    .news-card-text {
        font-size: 0.85rem;
    }
    .news-card-link {
        font-size: 0.8rem;
    }
    .news-all-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    .news-wave-top,
    .news-wave-bottom {
        height: 30px;
    }
    .popular-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .popular-category-card {
        flex: 0 0 100px;
        width: 100px;
    }
    .popular-category-name {
        font-size: 0.7rem;
        padding: 0.7rem;
    }
    .category-item {
        flex: 0 0 100px;
        width: 100px;
    }
    .category-name {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .news-card-content {
        padding: 1.1rem;
    }
    .news-card-date {
        top: 1rem;
        left: 0.3rem;
    }
    .date-circle {
        width: 40px;
        height: 40px;
        margin-left: 0;
    }
    .date-day {
        font-size: 1.1rem;
    }
    .date-month {
        font-size: 0.7rem;
    }
    .news-card {
        border-radius: 12px;
    }
    .news-all-link {
        width: 90%;
        justify-content: center;
    }
    .categories-section {
        padding: 0 10px;
        margin: 1rem 0 0 0;
    }
    .category-item {
        flex: 0 0 90px;
        width: 90px;
    }
    .expo-banner-section {
        padding: 0 0.3rem;
    }

    .expo-etiket-section {
        padding: 0 0.3rem;
    }
}

@media (max-width: 350px) {
    .main-container {
        padding: 0;
    }
    .expo-container {
        padding: 0.25rem;
    }
}
