:root {
    --zombie-primary: #555555;
    --zombie-secondary: #000000;
    --zombie-light: #ffffff;
    --zombie-dark: #333333;
    --zombie-success: #27ae60;
}

body {
    font-family: 'Anek Bangla', sans-serif;
    background-color: #ffffff;
    color: var(--zombie-primary);
}

.zombie-product-card {
    border: none;
    overflow: hidden;
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    /* margin-bottom: 2rem; */
}

.zombie-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.zombie-product-img-container {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    position: relative;
}

.zombie-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zombie-product-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f8f9fa;
    color: #999;
    font-family: 'Anek Bangla', sans-serif;
    font-size: 14px;
    padding: 15px;
    text-align: center;
}

.zombie-product-title {
    font-family: 'Anek Bangla', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--zombie-primary);
    margin-bottom: 0.1em;
    margin-top: 0.1em;
    box-sizing: border-box;
}

.zombie-product-price {
    color: var(--zombie-primary);
    font-weight: 400;
    font-size: 14px;
    margin: 0.5rem 0;
}

.zombie-original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.zombie-discounted-price {
    color: var(--zombie-primary);
    font-weight: 600;
}

.zombie-btn-group {
    display: flex;
    margin-top: 1rem;
    /* gap: 0; */
}

.zombie-btn-buy,
.zombie-btn-cart {
    flex: 1;
    padding: 10px 5px;
    border: none;
    font-family: 'Anek Bangla', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.zombie-btn-buy {
    background-color: #f39c12;
    color: white !important;
}

.zombie-btn-buy:hover {
    background-color: #e67e22;
    color: white !important;
}

.zombie-btn-cart {
    background-color: var(--zombie-secondary);
    color: white !important;
}

.zombie-btn-cart:hover {
    background-color: #333;
    color: white !important;
}

.zombie-box-text {
    /* padding: 15px; */
    position: relative;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.zombie-box-text a {
    text-decoration: none;
    color: inherit;
}

.zombie-cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--zombie-success);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    animation: zombie-fadeIn 0.5s ease;
}

@keyframes zombie-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zombiecoder-section-title {
    background-color: #2c2c2c;
    color: #f4c430;
    padding: 15px 40px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 30px 100%);
}

.zombie-brand-card {
    border: none;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 15px;
    height: 100px;
}

.zombie-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.zombie-brand-image {
    max-height: 70px;
    object-fit: contain;
}

/* Sale badge */
.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .zombie-box-text {
        font-size: 85%;
        padding: 10px;
    }

    .zombie-product-img-container {
        height: 250px;
    }

    .zombie-btn-buy,
    .zombie-btn-cart {
        font-size: 12px;
        padding: 8px 3px;
    }

    .zombie-product-card {
        margin-bottom: 20px;
    }

    .zombiecoder-section-title {
        font-size: 1.2rem;
        padding: 10px 25px;
        margin-bottom: 20px;
    }

    .zombie-brand-card {
        height: 80px;
    }

    .zombie-brand-image {
        max-height: 50px;
    }
}

.zombie-product-card {
    border: none;
    overflow: hidden;
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    /* margin-bottom: 2rem; */
}

.zombie-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.zombie-product-img-container {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    position: relative;
}

.zombie-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zombie-product-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f8f9fa;
    color: #999;
    font-family: 'Anek Bangla', sans-serif;
    font-size: 14px;
}

.zombie-product-title {
    font-family: 'Anek Bangla', sans-serif;
    /* font-size: 14px; */
    font-size: 18px;
    font-weight: 500;
    color: var(--zombie-primary);
    margin-bottom: 0.1em;
    margin-top: 0.1em;
    box-sizing: border-box;
}

.zombie-product-price {
    color: var(--zombie-primary);
    font-weight: 400;
    font-size: 14px;
    margin: 0.5rem 0;
}

.zombie-original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.zombie-discounted-price {
    color: var(--zombie-primary);
    font-weight: 600;
}

.zombie-btn-group {
    display: flex;
    margin-top: 1rem;
    /* gap: 0; */
}

.zombie-btn-buy,
.zombie-btn-cart {
    flex: 1;
    padding: 10px 5px;
    border: none;
    font-family: 'Anek Bangla', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.zombie-btn-buy {
    background-color: #f39c12;
    color: white;
}

.zombie-btn-buy:hover {
    background-color: #e67e22;
    color: white;
}

.zombie-btn-cart {
    background-color: var(--zombie-secondary);
    color: white;
}

.zombie-btn-cart:hover {
    background-color: #333;
    color: white;
}

.zombie-box-text {
    padding-top: 0.7em;
    position: relative;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.zombiecoder-section-title {
    background-color: #2c2c2c;
    color: #f4c430;
    padding: 15px 40px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 30px 100%);
}

/* Responsive adjustments */
@media (max-width: 549px) {
    .zombie-box-text {
        font-size: 85%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .zombie-product-img-container {
        height: 250px;
    }

    .zombie-btn-buy,
    .zombie-btn-cart {
        font-size: 12px;
        padding: 8px 3px;
    }

    .zombie-product-card {
        margin-bottom: 30px;
    }

    .zombiecoder-section-title {
        font-size: 1.2rem;
        padding: 10px 25px;
        margin-bottom: 30px;
    }
}