.product-info a.btn {
    margin-top: 1rem;
}

/* Product Category Template Styles */

.product-category-page, .product-page {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Banner Section */
.banner-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-left {
    width: 35%;
    color: white;
}

.banner-left .logo img {
    height: auto;
    margin-bottom: 20px;
}

.banner-text {
    font-size: 20px;
    line-height: 1.6;
    color: #000;
}
.banner-text h2 {
    color: #E31F27;
    font-size: 2rem;
    font-family: Roboto;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    padding-left: 50px;
}
/* Category Info Section */

.title-container {
    width: fit-content;
    position: relative;
}
.title-container .title {
    color: #fff;
    width: fit-content;
}
.category-info-section {
    padding: 60px 0;
}

.category-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    align-items: start;
    margin-top: 40px;
}
.category-details .title-container {
    grid-row: 1;
    grid-column: 1;
}
.category-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}
.category-description {
    grid-row: 2;
    grid-column: 1;
}
.category-image {
    grid-row: 1/3;
    grid-column: 2;
    margin-top: -50px;
}
.category-image img {
    width: 100%;
    height: auto;
}

/* Products Grid Section */
.products-grid-section {
    padding: 0 0 60px 0;
}

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

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-info {
    padding: 0 0 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Roboto';
    font-weight: 400;
    color: #E31F27 !important;
    padding: 0;
}
h4.product-flavour {
    margin-top: 6px;
}
.product-title a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #e74c3c;
}

.btn {
    display: inline-block;
    background: #E31F27;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #c0392b;
    color: white;
}

/* Other Brands Section */
.other-brands-section {
    padding: 60px 0;
    background: url(https://ptdevelopment.co/70616_Sov_International/wp-content/uploads/2025/04/divider-bg@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
}
.brands-grid.width-sm {
    width: 54%;
    margin: 40px auto 0;
}
.brand-item, .cat-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 100%;
}

.brand-item:hover, .cat-item:hover {
    transform: translateY(-3px);
}
.cat-item h3 {
    text-transform: uppercase;
    font-size: 18px;
    color: #000;
    margin-bottom: 1rem;
}
.cat-item img {
    height: 100px;
    max-width: 100px;
    margin-bottom: 10px;
}
img[alt="Frozen Chips"] {
    max-width: 160px;
}
.brand-item img {
    height: auto;
    max-width: 230px;
    margin-bottom: 10px;
}
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .banner-left {
        width: 100%;
    }
    
    .banner-left .logo img {
        max-width: 150px;
    }
    
    .category-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .banner-section {
        min-height: 550px;
    }
.banner-content-wrapper {
    padding-bottom: 4rem;
}
    .category-info-section,
    .products-grid-section,
    .other-brands-section {
        padding: 40px 0;
    }
.banner-section {
    align-items: flex-end;
}
.product-info a.btn {
    margin-top: 1rem;
    font-size: 12px;
}
section.products-grid-section .container {
    padding: 0;
}
.product-title a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    line-height: 1;
}
.tax-product-category .product-title a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 19px;
    line-height: 1.2;
}
.product-title {
    text-transform: uppercase;
    font-family: 'Roboto';
    font-weight: 400;
    color: #E31F27 !important;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    height: 40px;
}
h4.product-flavour {
    margin-top: 0;
    font-size: 14px;
    padding-bottom: 0;
}
div#our-services .et_pb_column {
    width: 100%;
    padding: 7% 5%;
}
.product-details-table table {
    width: 100%;
}
}

@media (max-width: 480px) {
.products-grid {
    grid-template-columns: 1fr 1fr;
}
.tax-product-category .products-grid {
    grid-template-columns: 1fr;
    margin: 30px;
}    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .brand-item {
        padding: 20px;
    }
    
    .title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}