.dralys-container {

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding-left: 20px;
    padding-right: 20px;
}

.dralys-section {

    margin-bottom: 28px;
}

/* =========================
   TRUST BAR
========================= */

.dralys-trust-bar {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: #fff;

    border: 1px solid #f1f1f1;

    border-radius: 14px;

    padding: 14px 20px;

    overflow-x: auto;

    scrollbar-width: none;
}

.dralys-trust-bar::-webkit-scrollbar {
    display: none;
}

.trust-item {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    flex: 1;

    white-space: nowrap;

    font-size: 13px;
    font-weight: 500;

    color: #333;
}

.trust-icon {

    font-size: 14px;
}

/* =========================
   CATEGORIES
========================= */

.dralys-categories-wrapper {

    display: flex;

    gap: 14px;

    overflow-x: auto;

    scrollbar-width: none;

    padding: 6px 0;
}

.dralys-categories-wrapper::-webkit-scrollbar {
    display: none;
}

.dralys-category-card {

    min-width: 88px;

    text-decoration: none;

    text-align: center;

    flex-shrink: 0;
}

.category-image {

    width: 68px;
    height: 68px;

    margin: 0 auto 8px;

    border-radius: 50%;

    background: #fff5f7;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid #f3f3f3;

    transition: 0.25s ease;
}

.category-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.dralys-category-card:hover .category-image {

    transform: translateY(-3px);
}

.category-title {

    font-size: 12px;
    font-weight: 500;

    color: #333;

    line-height: 1.3;
}

/* =========================
   SECTION HEADER
========================= */

.dralys-section-header {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 14px;
}

.section-header-left {

    display: flex;
    flex-direction: column;

    gap: 3px;
}

.section-title {

    font-size: 18px;
    font-weight: 700;

    color: #111;

    margin: 0;
}

.section-count {

    font-size: 12px;

    color: #777;
}

.section-see-more {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;

    border-radius: 999px;

    background: #0A3B6E;

    color: #fff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition: 0.25s ease;
}

.section-see-more:hover {

    background: #082c52;
}

/* =========================
   PRODUCT WRAPPER
========================= */

.dralys-products-wrapper {

    gap: 14px;
}

/* =========================
   GRID MODE
========================= */

.dralys-products-wrapper.grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);
}

/* =========================
   SLIDER MODE
========================= */

.dralys-products-wrapper.slider {

    display: flex;

    overflow-x: auto;

    scrollbar-width: none;

    scroll-snap-type: x mandatory;

    padding-bottom: 4px;
}

.dralys-products-wrapper.slider::-webkit-scrollbar {

    display: none;
}

/* =========================
   SLIDER CARD WIDTH
========================= */

.dralys-products-wrapper.slider .dralys-product-card {

    min-width: 180px;

    flex-shrink: 0;

    scroll-snap-align: start;
}

/* =========================
   PRODUCT CARD
========================= */

.dralys-product-card {

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    text-decoration: none;

    border: 1px solid #f1f1f1;

    transition: 0.25s ease;

    position: relative;
}

.dralys-product-card:hover {

    transform: translateY(-3px);
}

/* =========================
   PRODUCT IMAGE
========================= */

.product-image {

    position: relative;

    height: 180px;

    overflow: hidden;

    background: #fafafa;
}

.product-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* =========================
   SALE BADGE
========================= */

.sale-badge {

    position: absolute;

    top: 8px;
    left: 8px;

    background: #ff4d4f;

    color: #fff;

    font-size: 10px;
    font-weight: 700;

    padding: 3px 7px;

    border-radius: 20px;

    z-index: 2;
}

/* =========================
   PRODUCT CONTENT
========================= */

.product-content {

    padding: 8px;
}

/* =========================
   PRODUCT TITLE
========================= */

.product-title {

    font-size: 12px;
    font-weight: 500;

    color: #222;

    line-height: 1.4;

    margin-bottom: 6px;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    min-height: 34px;
}

/* =========================
   PRICE ROW
========================= */

.product-price-row {

    display: flex;
    align-items: center;

    gap: 5px;

    margin-bottom: 5px;
}

.sale-price {

    font-size: 16px;
    font-weight: 700;

    color: #ff4d4f;

    line-height: 1;
}

.regular-price {

    font-size: 11px;

    color: #999;

    text-decoration: line-through;
}

/* =========================
   PRODUCT META
========================= */

.product-meta {

    font-size: 11px;

    color: #777;
}

.sold-count {

    display: flex;
    align-items: center;

    gap: 4px;
}

/* =========================
   MOBILE
========================= */

@media(max-width: 768px) {

    .dralys-container {

        padding-left: 12px;
        padding-right: 12px;
    }

    .dralys-products-wrapper.grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .dralys-products-wrapper.slider .dralys-product-card {

        min-width: 150px;
    }

    .product-image {

        height: 150px;
    }

    .product-title {

        font-size: 11px;
    }

    .sale-price {

        font-size: 15px;
    }

    .section-title {

        font-size: 16px;
    }

    .section-see-more {

        padding: 7px 14px;

        font-size: 11px;
    }

    .dralys-trust-bar {

        gap: 16px;

        padding: 12px 14px;
    }
}