/* ==============================
   WRAPPER
============================== */
.gf-product-showcase {
    width: 100%;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

/* ==============================
   HEADING
============================== */
.gf-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ==============================
   CATEGORY MENU
============================== */
.gf-category-menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    margin-bottom: 24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.gf-category-menu::-webkit-scrollbar {
    display: none;
}

.gf-category {
    flex: 0 0 auto;
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #ffffff;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gf-category:hover {
    background: #1f6d3d;
    color: #ffffff;
    border-color: #1f6d3d;
}

.gf-category.active {
    background: #1f6d3d;
    color: #ffffff;
    border-color: #1f6d3d;
}

/* ==============================
   SWIPER WRAPPER
============================== */
.gf-swiper-wrap {
    position: relative;
}

/* ==============================
   SWIPER
============================== */
.gf-products-swiper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px;
}

.gf-products-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.gf-products-swiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* ==============================
   NAVIGATION ARROWS
============================== */
.gf-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1f6d3d;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s, color 0.2s;
}

.gf-swiper-btn:hover {
    background: #1f6d3d;
    color: #fff;
}

.gf-swiper-prev {
    left: -20px;
}

.gf-swiper-next {
    right: -20px;
}

.gf-swiper-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ==============================
   PRODUCT CARD
============================== */
.gf-product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.25s;
}

.gf-product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.gf-product-image {
    display: block;
    overflow: hidden;
}

.gf-product-image img {
    width: 100%;
    aspect-ratio: 10 / 16;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gf-product-card:hover .gf-product-image img {
    transform: scale(1.04);
}

.gf-product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px;
}

.gf-product-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
    flex: 1;
}

.gf-product-title a {
    color: #222;
    text-decoration: none;
}

.gf-product-title a:hover {
    color: #1f6d3d;
}

.gf-product-price {
    font-weight: 700;
    color: #1f6d3d;
    margin-bottom: 12px;
    font-size: 15px;
}

.gf-add-cart {
    display: block;
    padding: 10px;
    text-align: center;
    background: #1f6d3d;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.2s;
}

.gf-add-cart:hover {
    background: #174f2d;
    color: #fff;
}

/* ==============================
   FOOTER ROW
============================== */
.gf-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 12px;
}

.gf-pagination {
    position: static !important;
}

.gf-see-all {
    color: #1f6d3d;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.gf-see-all:hover {
    text-decoration: underline;
}

/* ==============================
   LOADING STATE
============================== */
.gf-product-showcase.gf-loading .gf-swiper-wrap {
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.2s;
}

/* ==============================
   NO PRODUCTS
============================== */
.gf-no-products {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    color: #666;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
    .gf-heading {
        font-size: 24px;
    }

    .gf-category {
        font-size: 13px;
        padding: 8px 16px;
    }

    .gf-swiper-prev { left: -10px; }
    .gf-swiper-next { right: -10px; }
}