*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

button,
a
{
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.push-down
{
    width: 100%;
    height: 53px;
}

body
{
    width: 100%;
    height: 100vh;
    display: block;
    background: #fff;
    position: relative;
    overflow: auto;
    scroll-behavior: smooth;
}

/* SLIDESHOW STARTS */
.slideshow-container 
{
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    padding-top: 45px;
    display: block;
}

.slide 
{
    display: none;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.slide img 
{
    width: 100%;
    height: 70vh;
    filter: brightness(0.6);
}

.slide h1
{
    position: absolute;
    top: 20%;
    bottom: 15%;
    left: 25%;
    right: 25%;
    width: auto;
    color: #fff;
    font-weight: bold;
    font-size: 4em;
    font-family: sans-serif;
}

@media screen and (max-width: 700px)
{

    .slide h1
    {
        font-size: 3em;
    }
}


@media screen and (max-width: 425px)
{

    .slide h1
    {
        font-size: 2em;
        top: 25%;
        bottom: 10%;
    }
}

.prev, .next 
{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next 
{
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover 
{
    background-color: rgba(0, 0, 0, 0.8);
}
/* SLIDESHOW ENDS */

/* HOME DESIGN STARTS */
.home-category
{
    width: 100%;
    gap: 10px;
	overflow: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 4px 8px;
	scroll-snap-type: x mandatory;
	scroll-padding: 10px;
	margin: 6px 0;
}

.home-category a
{
    text-decoration: none;
    outline: none;
    border: none;
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 11.9%;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	outline: none;
    border: 1px solid #ccc;
}


@media screen and (max-width: 768px) 
{
    .home-category::-webkit-scrollbar
    {
        display: none;
    }

    .home-category a
    {
        flex: 0 0 auto;
    }
}


.home-category a img
{
    width: 100%;
    height: 100%;
    filter: brightness(0.6);
    transition: 0.7s;
}

.home-category a:hover img
{
    transform: scale(1.1);
}

.home-category a h5
{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    top: 35px;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: bold;
    width: auto;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    padding: 8px;
}


.thumbnail
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(243px, 0.2fr));
    padding: 10px;
    gap: 8px;
    background: rgba(0, 0, 0, 0.01);
    justify-content: flex-start;
    align-items: center;
}


.thumbnail .product
{
    position: relative;
    height: 300px;
    background: #fff;
    border-radius: 6px;
    display: grid;
    grid-template-areas: 'image' 'title';
    overflow: hidden;
    align-content: flex-start;
    justify-items: center;
    gap: 4px;
    outline: none;
    text-decoration: none;
    box-shadow: 0px 1px 1px rgba(3, 7, 18, 0.00),
                0px 5px 4px rgba(3, 7, 18, 0.00),
                0px 12px 9px rgba(3, 7, 18, 0.01),
                0px 20px 15px rgba(3, 7, 18, 0.01),
                0px 32px 24px rgba(3, 7, 18, 0.01);
}


@media screen and (max-width: 765px)
{
    .thumbnail
    {
        grid-template-columns: repeat(auto-fit, minmax(195px, 0.5fr));
    }


    .thumbnail .product
    {
        height: 293px;
    }
}

@media screen and (max-width: 418px)
{
    .thumbnail
    {
        grid-template-columns: repeat(auto-fit, minmax(172px, 0.5fr));
    }


    .thumbnail .product
    {
        height: 293px;
    }
}

@media screen and (max-width: 375px)
{
    .thumbnail
    {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }


    .thumbnail .product
    {
        height: 293px;
    }
}

.thumbnail .product .special-offer
{
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    padding: 6px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: red;
    border-bottom-right-radius: 4px;
    z-index: 1000;
}

.thumbnail .product .special-offer h1,
.thumbnail .product .percentage h1
{
    font-size: 12px;
    letter-spacing: 1.0px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: capitalize;
}

.thumbnail .product .percentage h1
{
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}

.thumbnail .product .percentage
{
    position: absolute;
    z-index: 1000;
    border-bottom-left-radius: 4px;
    top: 0;
    right: 0;
    width: auto;
    width: auto;
    padding: 6px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: green;
}

.thumbnail .product .image
{
    grid-area: image;
    width: 100%;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #eeeeee;
    border-radius: 6px;
}

.thumbnail .product:hover .image img
{
    transform: scale(1.1);
}

.thumbnail .product .image img
{
    width: 100%;
    height: 100%;
    transition: 0.9s;
}

.thumbnail .product .title
{
    grid-area: title;
    width: 100%;
    height: 60px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3px;
}

.thumbnail .product .title h1
{
    font-size: 14px;
    letter-spacing: 1.1px;
    text-align: center;
    color: #000;
    font-weight: 500;
    font-family: sans-serif;
    text-transform: capitalize;
	overflow: hidden;
}

.thumbnail .product .title h1:last-child
{
    font-size: 14px;
    text-align: center;
    color: green;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: capitalize;
}
/* HOME DESIGN ENDS */

/* SEARCH DESIGN PHP STARTS */
.search-page
{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.search-page input
{
    width: 50%;
    padding: 16px;
    outline: 1px solid #888;
    border: none;
    font-size: 13px;
    border-radius: 30px;
}

.search-page input::placeholder
{
    font-weight: bold;
    color: #aaa;
    text-align: center;
}

.search-page input:valid,
.search-page input:focus
{
    outline: 1px solid rgb(12, 197, 12);
}


@media screen and (max-width: 991px)
{
    .search-page input
    {
        width: 100%;
    }
}
/* SEARCH DESIGN PHP ENDS */


/* ABOUNT US DESIGN PHP STARTS */
.about-us
{
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    height: auto;
    gap: 20px;
}


.about-us .intro,
.about-us .contact,
.about-us .socials,
.about-us .location
{
    display: block;
    text-align: center;
}


.about-us .intro h1,
.about-us .contact h1,
.about-us .socials h1,
.about-us .location h1
{
    font-size: 18px;
    letter-spacing: 1.1px;
    text-align: center;
    color: #000;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: capitalize;
}


.about-us .intro p,
.about-us .location p
{
    font-size: 14px;
    letter-spacing: 1.1px;
    text-align: center;
    color: #444;
    font-weight: 500;
    font-family: sans-serif;
}

.about-us .contact .contact-links
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    gap: 8px;
    margin: 0 auto;
    padding: 10px;
}

.about-us .contact .contact-links a
{
    text-decoration: none;
    border: 1px solid grey;
    color: #000;
    outline: none;
    padding: 8px;
    border-radius: 8px;
}

.about-us .contact .contact-links a i
{
    font-size: 18px;
}

.about-us .contact .contact-links a:nth-child(1)
{
   color: green;
   border: 1px solid green;
}

.about-us .contact .contact-links a:nth-child(2)
{
   color: blue;
   border: 1px solid blue;
}

.about-us .contact .contact-links a:nth-child(3)
{
   color: orange;
   border: 1px solid orange;
}

.about-us .socials .social-links
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    gap: 8px;
    margin: 0 auto;
    padding: 10px;
}

.about-us .socials .social-links a
{
    text-decoration: none;
    border: 1px solid grey;
    color: #000;
    outline: none;
    padding: 8px;
    border-radius: 50%;
}

.about-us .socials .social-links a i
{
    font-size: 18px;
}

.about-us .location iframe
{
    width: 400px;
    height: 220px;
    background: #000;
    border-radius: 8px;
    margin-top: 4px;
    cursor: pointer;
}

@media screen and (max-width: 425px) 
{
    .about-us .location iframe
    {
        width: 380px;
    }
}

@media screen and (max-width: 395px) 
{
    .about-us .location iframe
    {
        width: 350px;
    }
}

@media screen and (max-width: 365px) 
{
    .about-us .location iframe
    {
        width: 320px;
    }
}

@media screen and (max-width: 335px) 
{
    .about-us .location iframe
    {
        width: 305px;
    }
}
/* ABOUNT US DESIGN PHP ENDS */

/* CATEGORY DESIGN PHP STARTS */


 .categ-sublist
{
    width: 100%;
    height: auto;
    background: #fff;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 6px;
    align-content: flex-start;
    border-radius: 6px;
}

 .categ-sublist a
{
    text-decoration: none;
    outline: 1px solid #ddd;
    border: none;
    height: 135px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

 .categ-sublist a img
{
    width: 100%;
    height: 100%;
    filter: brightness(0.7);
}

 .categ-sublist a p
{
    color: #fff;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: bold;
    position: absolute;
}


/* CATEGORY DESIGN PHP ENDS */


/* VIEW PRODUCT DESIGN PHP STARTS */
.product-itself
{
    width: 80%;
    margin: 0 auto;
    background: #fff;
    height: 80vh;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    padding: 8px;
    gap: 4px;
    overflow: hidden;
    position: relative;
    outline: none;
    box-shadow: 0px 1px 1px rgba(3, 7, 18, 0.00),
                0px 5px 4px rgba(3, 7, 18, 0.00),
                0px 12px 9px rgba(3, 7, 18, 0.01),
                0px 20px 15px rgba(3, 7, 18, 0.01),
                0px 32px 24px rgba(3, 7, 18, 0.01);
    border-radius: 8px;
    margin-top: 4px;
}

.product-itself .section-one
{
    /* background: blue; */
    height: 78vh;
    overflow: hidden;
}


.product-itself .section-one .pics
{
    display: grid;
    grid-template-columns: 75% 25%;
    height: 50vh;
    background-color: #fff;
    overflow: hidden;
}


.product-itself .section-one .pics .pic-one
{
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    border-radius: 6px;
}

.product-itself .section-one .pics .pic-one img
{
    width: 100%;
    height: 100%;
    transform: scale(0.9);
    border-radius: 6px;
}

.product-itself .section-one .pics .pic-two
{
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    flex-direction: column;
    padding: 6px;
    gap: 8px;
}

.product-itself .section-one .pics .pic-two .small-pic
{
    width: 64px;
    height: 64px;
    border: 1px solid #ccc;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.product-itself .section-one .pics .pic-two .small-pic img
{
    width: 100%;
    height: 100%;
}


.product-itself .section-one .text
{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 26vh;
    overflow: hidden;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    border-top: 1px solid #ccc;
}

.product-itself .section-one .text .promo
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 8px;
}


.product-itself .section-one .text .promo .special-offer,
.product-itself .section-one .text .promo .percentage
{
    width: auto;
    padding: 6px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: red;
    border-radius: 6px;
}


.product-itself .section-one .text .promo .percentage
{
    background: green;
}

.product-itself .section-one .text .promo .special-offer h1,
.product-itself .section-one .text .promo .percentage h1
{
    font-size: 12px;
    letter-spacing: 1.0px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: capitalize;
}





.product-itself .section-one .text .btns
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.product-itself .section-one .text .btns a
{
    display: flex;
    justify-content: center;
    gap: 4px;
    align-items: center;
    width: auto;
    padding: 10px 10px;
    color: #fff;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 6px;
    background: orange;
    text-transform: capitalize;
}

.product-itself .section-one .text .btns a:last-child
{
    background: rgb(105, 195, 105);
}

.product-itself .section-one .text h3,
.product-itself .section-one .text h1,
.product-itself .section-one .text span
{
    color: #000;
    font-family: sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 15px;
    text-transform: capitalize;
}

.related
{
    color: #555;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 6px;
    padding: 10px;
}

.product-itself .section-one .text h3
{
    font-weight: bold;
    color: #111;
}

.product-itself .section-one .text span
{
    font-size: 12px;
    color: grey;
    font-weight: bold;
}

.product-itself .section-one .text h1
{
    font-size: 18px;
    font-weight: bold;
}


.product-itself .section-two
{
    border-left: 1px solid #ccc;
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}


.product-itself .section-two .deliver,
.product-itself .section-two .details
{
    width: 100%;
    text-align: center;
}

.product-itself .section-two .deliver h1,
.product-itself .section-two .details h1
{
    color: #000;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 22px;
    text-transform: capitalize;
}


.product-itself .section-two .deliver p,
.product-itself .section-two .details p
{
    color: #000;
    font-family: sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
}


.product-itself .section-two .details p
{
    text-align: left;
}


.thumbnail.relate 
{
    width: 100%;
    gap: 10px;
	overflow: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 4px 8px;
	scroll-snap-type: x mandatory;
	scroll-padding: 10px;
	margin: 6px 0;
}


.thumbnail.relate a
{
    width: 243px;
    height: 300px;
	flex: 0 0 auto;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	outline: none;
    border: 1px solid #ccc;
}


@media screen and (max-width: 1024px)
{
    .product-itself
    {
        width: 100%;
    }
}

@media screen and (max-width: 768px)
{
    .product-itself
    {
        grid-template-columns: 100%;
        overflow: auto;
        height: auto;
    }

    .product-itself .section-one
    {
        margin: 0 auto;
    }

    .product-itself .section-two .deliver h1,
    .product-itself .section-two .details h1
    {
        font-size: 18px;
    }


    .product-itself .section-two .deliver p,
    .product-itself .section-two .details p
    {
        font-size: 12px;
    }
}


@media screen and (max-width: 425px)
{

    .product-itself .section-one .pics
    {
        justify-content: center;
        align-items: center;
    }


    .product-itself .section-one .pics .pic-one
    {
        display: block;
        height: 40vh;
    }


    .product-itself .section-one .pics .pic-one img
    {
        max-width: 100%;
    }

    .product-itself .section-one .pics .pic-two
    {
        height: 50vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        flex-direction: column;
        gap: 8px;
    }

    .product-itself .section-one .pics .pic-two .small-pic
    {
        width: 65px;
        height: 65px;
        border: 1px solid #ccc;
        display: block;
        border-radius: 10px;
    }

    .product-itself .section-one .pics .pic-two .small-pic img
    {
        width: 100%;
        height: 100%;
        transform: scale(0.7);
    }
}

/* VIEW PRODUCT DESIGN PHP ENDS */


/* ADMIN DESIGN STARTS */
table tbody td img
{
    width: 55px;
    height: 55px;
    border-radius: 8px;
}

table tbody .action
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

table tbody td .edit,
table tbody td .delete
{
    font-family: sans-serif;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-decoration: none;
    padding: 6px;
}


table tbody td .delete
{
    color: indianred;
}


table tbody td .edit
{
    color: blue;
}

.delete-form
{
    width: 310px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 200px;
    padding: 10px;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 30px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.delete-form h1,
.delete-form p
{
    color: #000;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    font-family: sans-serif;
}


.delete-form p
{
    font-weight: 500;
    font-size: 14px;
}

.delete-form .del-btn
{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.delete-form .del-btn a,
.delete-form .del-btn button
{
    width: 100px;
    background: green;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    font-family: sans-serif;
    text-decoration: none;
    outline: none;
    border: none;
    padding: 10px 10px;
    cursor: pointer;
}

.delete-form .del-btn button
{
    background: indianred;
}

.dash
{
    width: 100%;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.dash a
{
    height: 150px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
    text-decoration: none;
    outline: none;
    border: 1px solid #ccc;
    padding: 10px 10px;
}

.dash a i
{
    color: grey;
    font-size: 18px;
}

.dash a h5,
.dash a p
{
    color: #444;
    font-weight: bold;
    font-size: 14px;
    font-family: sans-serif;
    text-transform: capitalize;
}
/* ADMIN DESIGN STARTS */