.sliderArea {
  width: 100vw;
  height: calc(100vh - 9rem);
}
.carousel-cell {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flickity-page-dots {
  bottom: 20px;
}
.flickity-page-dots .dot {
  width: 20px;
  height: 4px;
  margin: 0 5px;
  border-radius: 0;
  background: #ccc;
  opacity: 1;
  transition:all 0.3s ease;
}
.flickity-page-dots .dot.is-selected {
    width: 40px;
  background: var(--primary-color);
}

.flickity-button {
    width: 35px;
    height: 80px;
    border-radius: 5px;
}


.flickity-button svg {
    top: 50%!important;
    left: 50%!important;
    transform: translate(-50%, -50%);
    width: 15px!important;
    height: 20px!important;
}



/* banner Grid */

.bannerGrid {
    height: auto;

}

.bannerGrid .container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: -5rem;
    padding: 0 2rem;
    position: relative;
    height: auto;
}


.bannerGrid .column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    grid-column: span 2;
}

.bannerGrid .column .gridItem {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.bannerGrid .column .gridItem:first-child {
    height: 550px;
}


.bannerGrid .column .gridItem .image {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.bannerGrid .column .gridItem .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.bannerGrid .gridItem.product {
    position: relative;
    height: 350px;
}

.bannerGrid .gridItem.product .image {
    padding: 1rem;
    padding-right:2rem;
    position: relative;
    width: 100%;
    height: 100%;
}

.bannerGrid .gridItem.product .image img {
    border-radius: 20px 100px 20px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.bannerGrid .gridItem.product .image .imageLines {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 100px;
    height: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bannerGrid .gridItem.product .image .imageLines .line {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    margin-bottom: 3px;
}

.bannerGrid .gridItem.product .image .imageLines .line span {
    width: 100%;
    height: 7px;
    background: var(--primary-color);
    border-radius: 2px;

}

.bannerGrid .gridItem.product .image .imageLines .line span.s1 {
    grid-column:span 4;
    clip-path: polygon(0 0, 93% 0, 100% 100%, 7% 100%);
}

.bannerGrid .gridItem.product .image .imageLines .line span.s2 {
    grid-column:span 2;
    clip-path: polygon(0 0, 87% 0, 100% 100%, 13% 100%);
}

.bannerGrid .gridItem.product .textBox {
    position: absolute;
    bottom: 10px;
    left: 0px;
    width: 120px;
    height: 90px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    border-radius: 5px 20px 5px 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
}

.bannerGrid .gridItem.product .textBox span {
    font-size: 1.1rem;
    font-weight: 600;
}

.bannerGrid .gridItem.product .textBox::after {
    content: '';
    position: absolute;
    top: 0;
    left: 105%;
    width: 30px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 20px 5px 50px 5px;
}




.bannerGrid .gridSide {
    display: flex;
    flex-direction: column;
    grid-column: span 4;
}

.bannerGrid .gridSide .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.bannerGrid .gridSide .griddedSlider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.bannerGrid .gridSide .griddedSlider .sliderArea {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.bannerGrid .gridSide .griddedSlider .sliderArea .sliderItem {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    width: 100%;
    height: 100%;
}

.bannerGrid .gridSide .griddedSlider .sliderArea .gridColumn {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bannerGrid .gridSide .griddedSlider .sliderArea .gridItem {
    height: 560px;
}

.bannerGrid .gridSide .griddedSlider .sliderArea .gridColumn .gridItem.product {
    height: 270px
}

.bannerGrid .gridSide .griddedSlider .sliderArea .gridColumn .gridItem.product .image img {
    border-radius: 0px 100px 20px 0px
}

.bannerGrid .gridSide .griddedSlider .sliderArea .textBox {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: auto;
    justify-content: start;
    background: none;
}

.bannerGrid .gridSide .griddedSlider .sliderArea .textBox .title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bannerGrid .gridSide .griddedSlider .sliderArea .textBox .title span {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.2rem 0.2rem;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.3rem;
}

.bannerGrid .gridSide .griddedSlider .sliderArea .textBox p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 0.5rem;
    text-align: center;
}

.bannerGrid .gridSide .griddedSlider .sliderArea .textBox .btn {
    width: max-content;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bannerGrid .gridSide .griddedSlider .sliderArea .textBox .btn:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.bannerGrid .gridSide .griddedSlider .sliderArea .textBox::after {
    display: none;
}


/* Section Title */

.sectionTitle {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sectionTitle h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.sectionTitle h2 span {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 600;
    height: 35px;
    position: relative;
    top: -2px;
}




/* product Slider Area */

.productSlider {
    width: 100%;
    height: auto;
    margin-top: 5rem;
}

.productSlider .container {
    width: 100%;
    height: 100%;
    padding: 0 2rem;
}

.productSlider .container .pSliderArea {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 2rem;
}

.productSlider .container .pSliderArea::before,
.productSlider .container .pSliderArea::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, var(--bg-color) 20%, transparent 100%);
    z-index: 1;
}

.productSlider .container .pSliderArea::before {
    left: 0;
}

.productSlider .container .pSliderArea::after {
    right: 0;
    transform: rotate(180deg);
}

.productSlider .container .pSliderArea .flickity-button {
    z-index: 2;
}

.productSlider .container .pSliderArea .flickity-page-dots {
    bottom: 5px;
}

.productSlider .container .pSliderArea .pItem {
    width: 18%;
    border-radius: 10px;
    overflow: hidden;
    background: var(--card-bg);
    padding: 0.5rem;
    margin: 0 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.02);
}

.productSlider .container .pSliderArea .pItem .image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.productSlider .container .pSliderArea .pItem .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.productSlider .container .pSliderArea .pItem .imageSlider {
    width: 100%;
    height: 200px;
    position: relative;
}

.imageSlider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 5px;
}


.imageSlider img.active {
    opacity: 1;
    transition: all 0.3s ease;
}

.imageSlider .dotArea {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dotArea .dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.dotArea .dot.active {
    opacity: 1;
    background: var(--primary-color);
}

.productSlider .container .pSliderArea .pItem .imageSlider .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


.productSlider .container .pSliderArea .pItem .content {
    width: 100%;
    height: 30%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.productSlider .container .pSliderArea .pItem .content .title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;

    /* max 1 line */
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 1.2rem;
}

.productSlider .container .pSliderArea .pItem .content .price {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.productSlider .container .pSliderArea .pItem .content .price .oldPrice {
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.2rem;
}

.productSlider .container .pSliderArea .pItem .content .price .newPrice {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* image Section */


.imageSection {
    width: 100%;
    height: auto;
}

.imageSection .container {
    width: 100%;
    height: 100%;
}

.imageSection .container svg {
    width: 100%;
    height: 100%;
}


/* chance Section */

.chanceSection {
    width: 100%;
    height: auto;
    margin-top: 5rem;
}

.chanceSection .container {
    width: 100%;
    height: 100%;
}

.chanceSection .sliderArea {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.chanceSection .sliderArea .sliderItem {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    padding: 0 5%;
}

.chanceSection .sliderArea .sliderItem .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;

    width: 80%;
    padding-left: 6rem;
}

.chanceSection .sliderArea .sliderItem .content .title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    width: 80%;
}

.chanceSection .sliderArea .sliderItem .content .title::after {
    content: '';
    width: 40%;
    height:1px;
    background: linear-gradient(to right, var(--primary-color) 0%, transparent 100%);
    border-radius: 5px;
    margin-top: 0.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

.chanceSection .sliderArea .sliderItem .content .price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.chanceSection .sliderArea .sliderItem .content .price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.7;
}

.chanceSection .sliderArea .sliderItem .content .price span i {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 0.5rem;
}


.chanceSection .sliderArea .sliderItem .content .price span.priceBox {
    width: 100%;
    background: var(--card-bg);
    color: var(--text-dark);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
}

.chanceSection .sliderArea .sliderItem .content .price span.priceBox:hover {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.chanceSection .sliderArea .sliderItem .content .btnBox {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.chanceSection .sliderArea .sliderItem .content .btnBox .btn {
    width: max-content;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 80px;
}

.chanceSection .sliderArea .sliderItem .content .btnBox .btn:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

.chanceSection .sliderArea .sliderItem .imageSlider {
    width: 100%;
    height: 100%;
    position: relative;
    height: 500px;
}

.chanceSection .sliderArea .sliderItem .imageSlider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.2s ease;
    border-radius: 5px;
}


/* category Cards */

.categoryCards {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    overflow-x: clip;
}

.categoryCards .container {
    width: 100%;
    height: 100%;
    padding: 0 2rem;
}

.categoryCards .gridArea {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}


.categoryCards .gridArea .card {
    width: 100%;
    background-color: #ebebeb;
    height: 160px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 5px;
    position: relative;
}

.categoryCards .gridArea .card .content {
    width: 70%;
}

.categoryCards .gridArea .card .title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.categoryCards .gridArea .card .price {
    font-size: 1.5rem;
    font-weight: 600;
    
    background: linear-gradient(to right, var(--primary-color) 0%, var(--text-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categoryCards .gridArea .card .priceSub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.categoryCards .gridArea .card .btn {
    width: max-content;
    background: var(--card-bg);
    color: var(--text-dark);
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.5rem;
}


.categoryCards .gridArea .card .btn i {
    font-size: 0.8rem;
    margin-right: 0.5rem;
    color: var(--text-dark);
}

.categoryCards .gridArea .card .image {
    position: absolute;
    top: 0;
    right: 20px;
    width: 40%;
    height: 100%;
}

.categoryCards .gridArea .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}




/* blogSection */

.blogSection {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    padding-bottom: 5rem;
}

.blogSection .container {
    width: 100%;
    height: 100%;
    padding: 0 2rem;
}

.blogSection .blogGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.blogSection .blogItem {
    width: 100%;
    height: auto;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
}

.blogSection .blogItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blogSection .blogItem .image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blogSection .blogItem .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blogSection .blogItem:hover .image img {
    transform: scale(1.05);
}

.blogSection .blogItem .image .badgeArrow {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    width: max-content;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogSection .blogItem .content {
    padding: 1rem;
}

.blogSection .blogItem .content .meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.blogSection .blogItem .content .meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blogSection .blogItem .content .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    height: calc(1.2rem * 1.4 * 2);
}

.blogSection .blogItem .content .text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    height: calc(0.9rem * 1.5 * 3);
}

.blogSection .blogCta {
    width: 100%;
    height: auto;
    margin-top: 1rem;
    text-align: end;
}



.blogSection .blogCta .btn {
    width: max-content;
    color: var(--text-dark);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.blogSection .blogCta .btn span {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    margin-right: 0.1rem;
}

/* Responsive Styles */

/* Landing Slider Section */
@media screen and (max-width: 1200px) {
    .landingSlider {
        height: auto;
        margin-bottom: 5rem;
    }

    .sliderArea {
        height: calc(75vh - 6rem);
    }

}

@media screen and (max-width: 768px) {
    .sliderArea {
        height: calc(50vh - 6rem);
    }

    .flickity-button {
        width: 30px;
        height: 60px;
    }
    .flickity-page-dots .dot {
        width: 15px;
        height: 3px;
        margin: 0 3px;
    }
    .flickity-page-dots .dot.is-selected {
        width: 30px;
    }
}

@media screen and (max-width: 480px) {

    .landingSlider {
        height: calc(35vh - 6rem);
        margin-bottom: 2rem;
    }
    .sliderArea {
        height: calc(35vh - 6rem);
    }
    .flickity-button {
        width: 25px;
        height: 50px;
    }
    .flickity-page-dots {
        bottom: 10px;
    }
    .flickity-page-dots .dot {
        width: 12px;
        height: 3px;
        margin: 0 2px;
    }
    .flickity-page-dots .dot.is-selected {
        width: 24px;
    }

    .bannerGrid .gridItem.product .image {
        padding-right: 0.5rem;
    }
}

/* Banner Grid Section */
@media screen and (max-width: 1200px) {
    .bannerGrid .container {
        padding: 0 1rem;
        margin-top: -4rem;
        gap: 0.8rem;
    }
    .bannerGrid .column .gridItem:first-child {
        height: 450px;
    }
    .bannerGrid .gridItem.product {
        height: 300px;
    }
    .bannerGrid .gridSide .griddedSlider .sliderArea .gridItem {
        height: 460px;
    }
    .bannerGrid .gridSide .griddedSlider .sliderArea .gridColumn .gridItem.product {
        height: 220px;
    }

    .bannerGrid .container {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -3rem;
    }

    .bannerGrid .column {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .bannerGrid {
        height: auto;
    }

    
    .bannerGrid .gridSide .griddedSlider {
        height: 500px;
    }
}


@media screen and (max-width: 768px) {
    .bannerGrid .container {
        grid-template-columns: 1fr;
        margin-top: -2rem;
        padding: 0 1rem;
    }
    .bannerGrid .column .gridItem:first-child {
        height: 350px;
    }
    .bannerGrid .gridItem.product {
        height: 220px;
    }

    .bannerGrid .gridItem.product .image img {
        border-radius: 10px 70px 20px 0px;
    }

    .bannerGrid .gridItem.product .textBox {
        width: 100px;
        height: 80px;
        border-radius: 5px 15px 5px 40px;
        font-size: 0.9rem;
    }

    .bannerGrid .gridItem.product .textBox span {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .bannerGrid .gridItem.product .textBox::after {
        left: 103%;
        width: 25px;
        border-radius: 15px 5px 40px 5px;
    }

    .gridItem.product .imageLines {
        width: 80px!important;
        right: 35px!important;
    }

    .gridItem.product .imageLines .line {
        margin-bottom: 2px!important;
    }

    .gridItem.product .imageLines .line span {
        height: 5px!important;
    }

    .bannerGrid .gridSide .griddedSlider .sliderArea .textBox .title {
        font-size: 1.1rem;
    }

    .bannerGrid .gridSide .griddedSlider .sliderArea .textBox .title span {
        font-size: 1rem;
    }

    .bannerGrid .gridSide .griddedSlider .sliderArea .textBox p {
        font-size: 0.9rem;
    }

    .bannerGrid .gridSide .griddedSlider .sliderArea .textBox .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .bannerGrid .gridSide .griddedSlider .sliderArea .textBox::after {
        left: 100%;
        width: 20px;
        border-radius: 5px 5px 40px 5px;
    }

    .bannerGrid .column {
        display: none;
    }

    .bannerGrid .gridSide .griddedSlider {
        height: 400px;
    }

    .bannerGrid .gridSide .griddedSlider .flickity-viewport {
        height: 400px;
        padding: 0.5rem 0;
    }

    .bannerGrid .gridSide .griddedSlider .sliderArea .gridColumn {
        display: none;
    }

    .bannerGrid .gridSide .griddedSlider .sliderArea .gridItem.product {
        grid-column: span 2;
    }
    
}

@media screen and (max-width: 480px) {
    .bannerGrid .container {
        padding: 0 0.5rem;
        margin-top: -1rem;
    }
    .bannerGrid .column .gridItem:first-child {
        height: 300px;
    }
    .bannerGrid .gridItem.product {
        height: 180px;
    }

    .bannerGrid .gridItem.product .textBox {
        width: 80px;
        height: 60px;
        border-radius: 5px 10px 5px 30px;
        font-size: 0.6rem;
    }

    .bannerGrid .gridItem.product .textBox span {
        font-size: 0.8rem;
        font-weight: 600;
    }

    .bannerGrid .gridItem.product .textBox::after {
        left: 103%;
        width: 10px;
        border-radius: 5px 5px 30px 5px;
    }

    .gridItem.product .imageLines {
        width: 60px!important;
        right: 25px!important;
    }

    .gridItem.product .imageLines .line span {
        height: 4px!important;
    }

    .bannerGrid .gridSide .griddedSlider {
        height: auto;
    }
}



/* Section Title */
@media screen and (max-width: 768px) {
    .sectionTitle h2 {
        font-size: 1.5rem;
    }
    .sectionTitle h2 span {
        font-size: 1.2rem;
        height: 30px;
    }
}

@media screen and (max-width: 480px) {
    .sectionTitle h2 {
        font-size: 1.3rem;
    }
    .sectionTitle h2 span {
        font-size: 1rem;
        height: 25px;
    }
}

/* Product Slider Section */
@media screen and (max-width: 1200px) {
    .productSlider .container .pSliderArea .pItem {
        width: 22%;
    }
}

@media screen and (max-width: 992px) {
    .productSlider .container .pSliderArea .pItem {
        width: 30%;
    }
    .productSlider .container .pSliderArea .pItem .image,
    .productSlider .container .pSliderArea .pItem .imageSlider {
        height: 180px;
    }
}

@media screen and (max-width: 768px) {
    .productSlider {
        margin-top: 3rem;
    }
    .productSlider .container {
        padding: 0 1rem;
    }
    .productSlider .container .pSliderArea .pItem {
        width: 45%;
    }
    .productSlider .container .pSliderArea .pItem .image,
    .productSlider .container .pSliderArea .pItem .imageSlider {
        height: 160px;
    }
}

@media screen and (max-width: 480px) {
    .productSlider {
        margin-top: 2rem;
    }
    .productSlider .container {
        padding: 0 0.5rem;
    }
    .productSlider .container .pSliderArea .pItem {
        width: 70%;
        margin: 0 0.3rem;
    }
    .productSlider .container .pSliderArea .pItem .content .title {
        font-size: 0.9rem;
    }
    .productSlider .container .pSliderArea .pItem .content .price .oldPrice {
        font-size: 0.8rem;
    }
    .productSlider .container .pSliderArea .pItem .content .price .newPrice {
        font-size: 1rem;
    }
}

/* Image Section */
@media screen and (max-width: 768px) {
    .imageSection .container svg {
        height: auto;
    }
}

/* Chance Section */
@media screen and (max-width: 1200px) {
    .chanceSection .sliderArea .sliderItem {
        width: 95%;
        padding: 0 2%;
    }
    .chanceSection .sliderArea .sliderItem .content {
        padding-left: 4rem;
    }
    .chanceSection .sliderArea .sliderItem .imageSlider {
        height: 450px;
    }
}

@media screen and (max-width: 992px) {
    .chanceSection .sliderArea .sliderItem {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .chanceSection .sliderArea .sliderItem .content {
        padding-left: 2rem;
        width: 90%;
    }
    .chanceSection .sliderArea .sliderItem .content .btnBox .btn {
        margin-left: 0;
    }
    .chanceSection .sliderArea .sliderItem .imageSlider {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .chanceSection {
        margin-top: 3rem;
    }
    .chanceSection .sliderArea .sliderItem .content {
        padding-left: 1rem;
        width: 95%;
    }
    .chanceSection .sliderArea .sliderItem .content .title {
        font-size: 1.6rem;
    }
    .chanceSection .sliderArea .sliderItem .imageSlider {
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .chanceSection {
        margin-top: 2rem;
    }
    .chanceSection .sliderArea .sliderItem .content {
        padding-left: 0.5rem;
        width: 100%;
    }
    .chanceSection .sliderArea .sliderItem .content .title {
        font-size: 1.3rem;
    }
    .chanceSection .sliderArea .sliderItem .content .price span.priceBox {
        padding: 0.5rem 1rem;
    }
    .chanceSection .sliderArea .sliderItem .content .btnBox .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    .chanceSection .sliderArea .sliderItem .imageSlider {
        height: 300px;
    }
}

/* Category Cards */
@media screen and (max-width: 1200px) {
    .categoryCards .gridArea {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .categoryCards .gridArea {
        grid-template-columns: repeat(2, 1fr);
    }
    .categoryCards .gridArea .card {
        height: 150px;
    }
}

@media screen and (max-width: 768px) {
    .categoryCards {
        margin-top: 3rem;
    }
    .categoryCards .container {
        padding: 0 1rem;
    }
    .categoryCards .gridArea .card {
        height: 140px;
    }
    .categoryCards .gridArea .card .title {
        font-size: 1rem;
    }
    .categoryCards .gridArea .card .price {
        font-size: 1.3rem;
    }
    .categoryCards .gridArea .card .priceSub {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .categoryCards {
        margin-top: 2rem;
    }
    .categoryCards .container {
        padding: 0 0.5rem;
    }
    .categoryCards .gridArea {
        grid-template-columns: 1fr;
    }
    .categoryCards .gridArea .card {
        height: 130px;
    }
    .categoryCards .gridArea .card .image {
        right: 10px;
    }
    .categoryCards .gridArea .card .btn {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Blog Section */
@media screen and (max-width: 1200px) {
    .blogSection .blogGrid {
        grid-template-columns: repeat(3, 1fr);
    }
    .blogSection .blogItem .image {
        height: 220px;
    }
}

@media screen and (max-width: 992px) {
    .blogSection .blogGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blogSection .blogItem .image {
        height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .blogSection {
        margin-top: 3rem;
    }
    .blogSection .container {
        padding: 0 1rem;
    }
    .blogSection .blogItem .image {
        height: 180px;
    }
    .blogSection .blogItem .content .title {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .blogSection {
        margin-top: 2rem;
        padding-bottom: 3rem;
    }
    .blogSection .container {
        padding: 0 0.5rem;
    }
    .blogSection .blogGrid {
        grid-template-columns: 1fr;
    }
    .blogSection .blogItem .image {
        height: 220px;
    }
    .blogSection .blogCta .btn {
        font-size: 0.9rem;
    }
    .blogSection .blogCta .btn span {
        padding: 0.1rem 0.3rem;
    }
}
