.category-section {
    width: 95%;
    max-width: 100%;
    margin: 0 auto 30px;
    padding-top: 0 !important;
}
@media (max-width: 767px) {
    .category-section {
        width: 95%;
        margin-bottom: 25px;
    }
}
.category-section-mid {
    width: 80%;
    max-width: 100%;
    margin: 0 auto 30px;
    padding-top: 0 !important;
}
@media (max-width: 767px) {
    .category-section-mid {
        width: 95%;
        margin-bottom: 25px;
    }
}


/* =========================================================
Banner
========================================================= */

.category-hero-custom {
    position: relative;
    min-height: clamp(760px, 100vh, 980px);
    padding: 160px 80px 180px;
    border-radius: 30px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
 background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}



.category-hero-custom__content {
    position: relative;
    z-index: 3;
    max-width: 65%;
	padding-top:90px!important;
    transform: translateY(-30px);
}

.category-hero-custom__breadcrumb {
    margin-bottom: 40px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.category-hero-custom__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.category-hero-custom__breadcrumb a:hover {
    color: #47AD23;
}

.category-hero-custom__breadcrumb .breadcrumb-separator {
    margin: 0 8px;
    color: rgba(255,255,255,.65);
}

.category-hero-custom__breadcrumb .breadcrumb-current {
    color: #47AD23;
}

.category-hero-custom h1 {
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 500;
    margin: 0 0 25px;
}

.category-hero-custom h1 span {
    color: #47AD23;
}

.category-hero-custom__text p {
    color:white!important;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 620px;
}

.category-hero-custom__buttons {
    display: flex;
    gap: 18px;
}

.category-hero-custom__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}
.category-hero-custom__btn:hover,.category-hero-custom__btn span:hover {
   
    color: #fff;

}
.category-hero-custom__btn img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}
 .quotebtn.category-hero-custom__btn img {
    width: 22px;
    height: 22px;
   
}
.category-hero-custom__btn:hover {
    transform: translateY(-2px);
}

.category-hero-custom__btn--primary {
    background: linear-gradient(
        90deg,
        #47AD23 0%,
        #9FD448 100%
    );
    color: #fff;
    border: none;
}

.category-hero-custom__btn--secondary {
    background: transparent;
    border: 1px solid rgba(126,211,33,.75);
    color: #fff;
}

/* =========================================================
Feature Bar
========================================================= */

.category-hero-custom__bottom {
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 60px;
    z-index: 3;
}

.category-hero-custom__features {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  
	
	    background: rgba(23, 29, 33, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.05);

    border-radius: 12px;
    padding: 24px 28px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);
}

.category-hero-custom__feature {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 26px;
}

.category-hero-custom__feature:first-child {
    padding-left: 0;
}

.category-hero-custom__feature:last-child {
    padding-right: 0;
}

.category-hero-custom__feature:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 48px;
    transform: translateY(-50%);
    background-image: url("https://optwebdigital.com.au/projects/alpha-new/wp-content/uploads/2026/06/line.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.category-hero-custom__feature img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.category-hero-custom__feature-content {
    display: flex;
    flex-direction: column;
}

.category-hero-custom__feature strong {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;
}

.category-hero-custom__feature span {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    line-height: 1.4;
}

/* =========================================================
Large Screens
========================================================= */

@media (max-width: 1400px) {
    .category-hero-custom {
        min-height: clamp(720px, 100vh, 920px);
        padding: 150px 70px 180px;
    }

    .category-hero-custom__content {
        max-width: 70%;
    }

    .category-hero-custom__features {
        width: 80%;
    }
}

@media (max-width: 1200px) {
    .category-hero-custom {
        min-height: clamp(740px, 100vh, 900px);
        padding: 150px 60px 180px;
    }

    .category-hero-custom__content {
        max-width: 75%;
        transform: translateY(-20px);
		padding-top:90px!important;
    }

    .category-hero-custom h1 {
        font-size: 62px;
    }

    .category-hero-custom__features {
        width: 90%;
    }

    .category-hero-custom__bottom {
        left: 45px;
        right: 45px;
        bottom: 50px;
    }
}

/* =========================================================
Tablet
========================================================= */

@media (max-width: 1024px) {

    .category-hero-custom {
        min-height: auto;
        padding: 130px 40px 45px;
        display: block;
    }

    .category-hero-custom__content {
        max-width: 100%;
        transform: none;
		padding-top:90px!important;
    }

    .category-hero-custom h1 {
        font-size: 52px;
    }

    .category-hero-custom__bottom {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 45px;
        width: 100%;
    }

    .category-hero-custom__features {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-hero-custom__feature:nth-child(2)::after {
        display: none;
    }
}

/* =========================================================
Mobile
========================================================= */

@media (max-width: 767px) {

    .category-section {
        width: 95%;
        margin-bottom: 25px;
    }

    .category-hero-custom {
        min-height: auto;
        padding: 110px 20px 25px;
        border-radius: 20px;
        display: block;

        /* Show image more on the right */
        background-position: 78% center;
        background-size: cover;
    }

    /* Stronger mobile overlay */
    .category-hero-custom__overlay {
        position: absolute;
        inset: 0;
        z-index: 1;

        background: linear-gradient(
            90deg,
            rgba(0,0,0,.96) 0%,
            rgba(0,0,0,.88) 45%,
            rgba(0,0,0,.55) 100%
        );
    }

    .category-hero-custom__content {
        max-width: 100%;
        transform: none;
        padding-top: 110px !important;
        position: relative;
        z-index: 3;
    }

    .category-hero-custom__breadcrumb {
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 1.5;
    }

    .category-hero-custom h1 {
        font-size: 32px;
        line-height: 1.08;
        margin-bottom: 20px;
    }

    .category-hero-custom__text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .category-hero-custom__buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 25px;
    }

    .category-hero-custom__btn {
        width: 100%;
        justify-content: center;
    }

    .category-hero-custom__bottom {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 25px;
        z-index: 3;
    }

    .category-hero-custom__features {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 0;
    }

    .category-hero-custom__feature {
        padding: 0 0 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .category-hero-custom__feature:not(:last-child)::after {
        display: none;
    }

    .category-hero-custom__feature:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
.alpha-category .kt-row-column-wrap {
   width: 80%!important;
}


}
.shop-categories h2 {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 500;
    color: #2f7d32;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 12px;
    padding: 4px;

    background: #fff;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.category-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.category-card span {
    flex: 1;

    min-height: 48px;
    padding: 0 16px;

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

    text-align: center;
    line-height: 1.3;

    font-size: 14px;
    font-weight: 600;
    color: #377a2e;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        rgba(155, 210, 70, 0.15) 0%,
        rgba(137, 202, 63, 0.15) 49%,
        rgba(109, 190, 51, 0.15) 65%,
        rgba(75, 175, 37, 0.15) 100%
    );
}

@media (max-width: 991px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-categories {
        padding: 20px 30px;
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .shop-categories {
        padding: 20px;
    }

    .category-card span {
        font-size: 13px;
    }
}

 
      /* =========================================================
All Products Section
========================================================= */

.alpha-all-products-section {
    padding: 70px 0 100px;
}

.alpha-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 35px;
}

.alpha-products-header h2 {
    margin: 0 0 8px;
    color: #1f7a1f;
    font-size: 28px;
    font-weight: 500;
}

.alpha-products-header p {
    margin: 0;
    color: #555;
    font-size: 16px;
}

/* Toolbar */

.alpha-products-toolbar {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Search */

.alpha-all-search-wrap {
    width: 360px;
    height: 42px;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-radius: 999px;
    overflow: hidden;
}

#alpha-all-product-search {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0 18px;
    outline: none;
    font-size: 14px;
    color: #333;
}

#alpha-all-product-search::placeholder {
    color: #8a8f95;
}

#alpha-all-search-btn {
    height: 100%;
    padding: 0 24px;
    border: none;
    border-radius: 999px;
    background: #218a19;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

#alpha-all-search-btn:hover {
    background: #348816;
}

/* Sort */

.alpha-sort-wrap {
    position: relative;
    width: 190px;
    min-width: 190px;
    height: 42px;
}

#alpha-all-product-sort {
    width: 100%;
    height: 42px;
    padding: 0 42px;
    border: 1px solid #47AD23;
    border-radius: 6px;
    background: #fff;
    color: #2A7B2E;
    font-size: 15px;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
}

.alpha-sort-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    object-fit: contain;
    pointer-events: none;
}

.alpha-sort-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    object-fit: contain;
    pointer-events: none;
}

/* Product Grid */

.alpha-custom-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

#alpha-all-products-grid.is-loading {
    opacity: .55;
    pointer-events: none;
}

/* Product Card */

.alpha-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    transition: .3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.alpha-product-card:hover {
    transform: translateY(-5px);
}

.alpha-product-card__image {
    position: relative;
    display: block;
}

.alpha-product-card__image img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    display: block;
}

.alpha-product-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #7ED321;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.alpha-product-card__content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.alpha-product-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.alpha-product-card__rating .star-rating {
    margin: 0;
    color: #47AD23;
    font-size: 13px;
}

.alpha-product-card__rating span {
    color: #67717c;
    font-size: 13px;
}

.alpha-product-card__title {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
}

.alpha-product-card__title a {
    color: #17212b;
    text-decoration: none;
}

.alpha-product-card__desc {
    font-size: 13px;
    color: #67717c;
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 42px;
    max-height: 42px;
    overflow: hidden;
}

.alpha-product-card__footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
}

/* Price */

.alpha-product-card__price {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.alpha-product-card__amount {
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}

.alpha-product-card__amount .amount,
.alpha-product-card__amount bdi {
    display: inline-flex;
    align-items: baseline;
    color: #17212b;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.alpha-product-card__amount .woocommerce-Price-currencySymbol {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    top: -5px;
    margin-right: 1px;
}

.alpha-product-card__price > span {
    font-size: 11px;
    color: #8a8f95;
}

/* Add To Cart */

.alpha-product-card__cart {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #218a19 !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    line-height: 1 !important;
}

.alpha-product-card__cart:hover {
    background: #4abe6e !important;
    color: #fff !important;
}

.alpha-product-card__cart img {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.alpha-product-card a.added_to_cart {
    display: none !important;
}

/* Mobile */

@media (max-width: 1024px) {
    .alpha-products-header {
        flex-direction: column;
    }

    .alpha-products-toolbar {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .alpha-all-search-wrap,
    .alpha-sort-wrap {
        width: 100%;
        min-width: 100%;
    }

    .alpha-custom-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .alpha-all-products-section {
        padding: 45px 0 70px;
    }

    .alpha-products-header h2 {
        font-size: 28px;
    }

    .alpha-all-search-wrap {
        height: auto;
        flex-direction: column;
        border: none;
        background: transparent;
        gap: 10px;
        border-radius: 0;
    }

    #alpha-all-product-search {
        width: 100%;
        height: 44px;
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        background: #fff;
    }

    #alpha-all-search-btn {
        width: 100%;
        height: 44px;
    }

    .alpha-custom-products-grid {
        grid-template-columns: 1fr;
    }

    .alpha-product-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .alpha-product-card__cart {
        width: 100%;
    }
}
    @media (min-width: 981px) and (max-width: 1900px) {
    .alpha-custom-products-grid {

    grid-template-columns: repeat(3, minmax(0, 1fr));
    
}

}