@import url('https://fonts.cdnfonts.com/css/satoshi');

* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
}

body {
    width: 100%;
}

/* Header Section Start  */
header {
    width: 100%;
}

.top-text {
    width: 100%;
    background-color: black;
    color: #ffffff;
    display: flex;
    padding: 8px 0px;
    font-size: 13px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-weight: 400;
}

.top-text>p>a {
    color: white;
    margin-left: 3px;
}

.top-text>i {
    font-size: 15px;
    cursor: pointer;
    position: relative;
    right: -20%;
}

/* Navbar Start  */
.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    padding: 0px 35px;
    height: 80px;

}

.navbar>#toggle-btn {
    display: none;
    font-size: 16px;
    margin-top: 4px;
    padding: 0px 15px 0px 0px;
    cursor: pointer;


}

.navbar>.brand-logo {
    text-transform: uppercase;
    font-family: 'Integral CF Bold';
    font-weight: bolder;
    cursor: pointer;
}

.navbar>.search-input-box {
    position: relative;
}

.search-input-box>input {
    font-size: 16px;
    width: 350px;
    height: 30px;
    padding: 10px 50px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
}

.search-input-box>i {
    position: absolute;
    left: 0%;
    top: 20%;
    font-size: 18px;
    padding-left: 15px;
    color: rgba(0, 0, 0, 0.4);


}

.navbar>ul {
    display: flex;
    align-items: center;
    text-align: center;
    list-style: none;
}

.navbar>ul>li {
    cursor: pointer;
    margin-right: 20px;
    transition: 0.3s;
}

.navbar>ul>li:hover {
    color: rgba(0, 0, 0, 0.6);
}

.navbar>.header-cart-user>i {
    cursor: pointer;
    margin-left: 8px;
}

/* Main Start  */
main {
    width: 100%;
    overflow-x: hidden;
    background-color: white;
}

/* Hero-Section-Start  */
.hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #F2F0F1;

}

.all-section-links {
    /* border: 1px solid red; */
    padding-top: 10px;
    padding-left: 25px;
}

.all-section-links>a {
    text-decoration: none;
    color: black;
    font-size: 15px;
}

.hero-section>.hero-text-img {
    display: flex;
    height: 90%;
}

.hero-text-img>div {
    width: 50%;

}

.hero-text-img>.hero-text {
    padding: 0px 3%;
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text>.home-heading {
    font-weight: bolder;
    font-family: 'integral CF bold', sans-serif;
    font-size: 35px;
}

.hero-text>p {
    color: #00000099;
    font-size: 13px;
    margin: 20px 0px;
}

.hero-text>button {
    width: 150px;
    padding: 5px 0px;
    border-radius: 14px;
    cursor: pointer;
    outline: none;
    border: 1px solid black;
    transition: 0.4s;
}

.hero-text>button:hover {
    background-color: black;
    color: white;
}

.hero-text-img>.hero-img {
    background-image: url(./images/hero-section-img.jpg);
    height: 100%;
    background-size: cover;
    background-position: top;
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-img>#tiny-star {
    width: 45px;
}

.hero-img>#large-star {
    width: 64px;
    margin-bottom: 60%;
    margin-right: 5%;
}

.brands-name {
    background-color: black;
    width: 100%;
    min-height: 70px;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.brands-name span {
    text-align: center;
    padding: 15px 20px;
}

.brands-name>span>img {
    width: 100px;
}

/* New Arrivals Section Start  */
.new-arrivals {
    padding-top: 20px;
}

.sections {
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    background-color: white;

}

.sections>h1 {
    text-transform: uppercase;
    font-weight: bolder;
    font-family: 'integral CF bold';
    font-size: 28px;
    margin-bottom: 15px;
}

.sections>.items-container {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
    gap: 10px;
    padding: 5px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.items-container>.item-box {
    min-height: 300px;
    padding: 0px 5px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.item-box:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);

}

.item-box>.item-img {
    width: 100%;
    height: 200px;
    padding: 15px 0px;
}

.item-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;

}

.item-box>.item-detail {
    margin-top: 10px;
}

.item-detail>.item-name {
    font-weight: bolder;
    font-size: 15px;
    text-align: left;
}

.item-detail>.stars-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0px;
}

.stars-rating>span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 10px;
}

.item-detail>.item-price {
    font-weight: bolder;
    text-align: left;
}

.sections>.view-items {
    margin-top: 30px;
    cursor: pointer;
    outline: none;
    font-size: 15px;
    padding: 5px 0px;
    width: 160px;
    border-radius: 20px;
    border: 1px solid black;
    transition: 0.3s;
}

.view-items:hover {
    background-color: black;
    color: #ffffff;
}

/* Top Selling Section Start  */

/* Dress Style Section Start  */
.dress-style {
    width: 100%;
    min-height: 30vh;
    padding: 0px 15px 20px;
    background-color: white;
    margin-bottom: 20px;
}

.dress-style>div {
    border-radius: 20px;
    background-color: #F0F0F0;
    padding: 0px 10px 15px;
}

.dress-style>div>h1 {
    font-family: 'integral CF bold';
    text-align: center;
    padding: 20px 0px 15px 0px;
    text-transform: uppercase;
}

.dress-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    grid-template-rows: repeat(2, 200px);
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    width: 86%;
    justify-self: center;
}

.dress-container>.dress-box {
    font-weight: bolder;
    font-size: 17px;
    padding: 10px 15px;
    border-radius: 10px;
    transition: 0.4s;
}

.dress-container>.first-dress {
    background-image: url(./images/casual-dress.png);
    background-position: left;
    background-size: 200%;
    background-repeat: no-repeat;

}

.dress-container>.sec-dress {
    grid-column: 2/4;
    background-image: url(./images/formal-dress.png);
    background-position: left;
    background-repeat: no-repeat;
}

.dress-container>.third-dress {
    grid-column: 1/3;
    background-image: url(./images/party-dress.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.dress-container>.fourth-dress {
    background-image: url(./images/gym-dress.png);
    background-size: 130%;
    background-position: bottom left;
    background-repeat: no-repeat;
}

/* Testimonials Section Start  */
.testimonials {
    width: 100%;
    min-height: 20vh;
    padding-bottom: 20px;
}

.testimonials>div {
    padding: 0px 20px;
}

.testimonials>div>h1 {
    font-family: 'integral CF bold';
    font-size: 28px;
    font-weight: bolder;
    text-transform: uppercase;
    padding-bottom: 20px;

}

.testimonials>div>.review-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 5px;
}

.review-container>.review {
    min-height: 220px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.review:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.reviewer-name {
    display: flex;
    font-size: 20px;
    margin: 5px 0px;
}

.reviewer-name>i {
    font-size: 14px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: green;
    color: white;
    margin-left: 10px;
}

.review>p {
    color: #00000099;
    font-size: 15px;
}

/* Stay-up-to-date Section Start  */
.stay-up-to-date {
    width: 100%;
    min-height: 20vh;
    padding: 10px 4%;
}

.stay-up-container {
    width: 100%;
    min-height: 150px;
    background-color: black;
    border-radius: 20px;
    display: flex;
    padding: 10px 25px;
}

.stay-up-container h1 {
    color: white;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'integral CF bold';
}

.stay-up-container>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stay-up-container>div>input {
    width: 250px;
    padding: 6px 12px;
    border-radius: 15px;
    outline: none;
    border: none;
    font-size: 15px;
}

.stay-up-container>div>input:focus {
    outline: 2px solid rgb(107, 107, 228);

}

.subscribe-btn {
    width: 250px;
    padding: 6px 12px;
    border-radius: 15px;
    outline: none;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    border: 1px solid white;
    background-color: black;
    color: white;
    transition: 0.4s;
}

.subscribe-btn:hover {
    background-color: white;
    color: black;
}

/* Footer Start  */
footer {
    width: 100%;
    padding: 15px 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #F0F0F0;
    overflow: hidden;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-container>.box-1 {
    width: 300px;
}

.box-1>h1 {
    font-family: 'integral CF bold';
}

.footer-box {
    padding: 0px 10px;
}

.footer-box>.sub-heading {
    color: black;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
}

.footer-box>p {
    color: #00000099;
    margin: 15px 0px;

}

.box-1>div {
    margin-top: 20px;
    display: flex;
    gap: 5px;
}

.box-1>div>i {
    cursor: pointer;
    padding: 10px 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    transition: 0.3s;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    font-size: 13px;
}

.box-1>div>i:hover {
    color: white;
    background-color: black;
}
footer>.copywrite-text {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px 0px;
}

.copywrite-text>div>img {
    margin: 0px 5px;
    background-color: white;
    cursor: pointer;
}

.copywrite-text>p {
    font-size: 13px;
    color: #00000099;
}
footer > hr{
    margin: 15px 0px;
}

/* T-Shirt Page Start  */
.T-shirt-section{
    padding: 0px 20px;
    background-color: white;
    width: 100vw;
    min-height: 20vh;
}
.t-shirt-img-info{
    display: flex;
    padding-top: 10px;
}
.shirt-quarter{
    display: flex;
    gap: 10px;
}
.shirt-color-size{
    padding-left: 20px;
}
.shirt-color-size > div > h1{
    font-family: 'integral CF bold';
}
.shirt-color-size > div > .rank-rating{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 7px 0px;
}
.shirt-color-size > div > .t-shirt-price{
    font-weight: bold;
    font-size: 18px;
    margin: 7px 0px;
}
.shirt-color-size > div > .t-shirt-info{
    font-size: 14px;
    color: #00000099;
    margin: 13px 0px;
}
.shirt-color-size > div > hr {
    color: #00000099;  
}
.shirt-color-size > .set-colors p{
      margin: 10px 0px;
      font-size: 14px;
      color: #00000099;
}
.shirt-color-size > .set-colors > .shirt-colors{
    margin: 10px 0px;
}
.shirt-color-size > .set-colors > .shirt-colors > img{
    cursor: pointer;
    transition: scale border 0.3s;
    margin: 0px 10px 0px 0px;
}
.shirt-colors > img:hover{
    scale: 1.1;
    
}
.shirt-color-size > .color-size p{
      margin: 10px 0px;
      font-size: 14px;
      color: #00000099;
}
.shirt-color-size > .color-size > div > button{
    border: none;
    outline: none;
    padding: 6px 16px;
    cursor: pointer;
    margin: 7px 5px 0px 0px;
    background: #F0F0F0;
    color: #00000099;
    border-radius: 14px;
    transition: 0.3s;
}
.color-size > div{
    margin: 15px 0px;
}
.color-size > div > button:hover{
    background-color: black;
    color: white;
}
.increase-and-cart{
    display: flex;
}
.increase-and-cart :nth-child(1) {
    height: 30px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    border-radius: 14px;
    border: none;
    outline: none;
    font-size: 25px;
    margin-right: 10px;
    transition: 0.3s;
}
.increase-and-cart :nth-child(1) > span{
    font-size: 16px;
}
.increase-and-cart :nth-child(1):hover {
    background-color: black;
    color: white;
}
.shirt-color-size > .increase-and-cart button{
    cursor: pointer;
}
.increase-and-cart :nth-child(2){
    height: 30px;
    max-width: 300px;
    width: 80%;
    border:none;
    outline: none;
    border-radius: 14px;
    transition: 0.3s;
}
.increase-and-cart :nth-child(2):hover{
    background-color: black;
    color: white;
}
.shirt-quarter > div > .t-shirt{
    width: 120px;
    height: 140px;
    margin: 5px 0px;
    cursor: pointer;    
}
.t-shirt > img:hover{
    border: 1px solid black;
}
.t-shirt img{
    height: 100%;
    width: 100%;
    border-radius: 20px;
      object-fit: cover;
      transition: 0.3s;
}
.small-tshirt-view{
    height: 100%;
}
.large-tshirt-view{
    width: 300px;
    height: 100%;
    cursor: pointer;
}
.large-tshirt-view > img{
    width: 100%;
    height: 95%;
    object-fit: cover;
    border-radius: 15px;

}
 /* T-shirt Review and Rating Section Start  */
 .rating-and-review{
    padding: 0px 20px;
    background-color: white;
    width: 100vw;
    min-height: 20vh;
    display: flex;
    flex-direction: column;
 }
 .rating-and-review > hr{
    color: #0000001A;
 }
 .rating-and-review > .about-rating-product-faqs{
    width: 100%;
    /* border: 1px solid blue;  */
    display: flex;
    justify-content: space-around;
 }
 .about-rating-product-faqs > a{
    text-decoration: none;
    color: #00000099;
    transition: 0.3s;
 }
 .about-rating-product-faqs > a:hover{
     color: black;
 }
.about-rating-product-faqs > .rating-and-review-link{
    color: black;
    border-bottom: 2px solid black;
    width: 200px;
    text-align: center;
}
.all-review-heading{
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}
.all-review-heading > h3 > span{
    padding-left: 5px;
    font-size: 13px;
    color: #00000099;
}
.latest-and-write-review{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.latest-and-write-review > button{
    padding: 5px 18px;
    border-radius: 14px;
    cursor: pointer;
    border: none;
    outline: none;
    background: #F0F0F0;
    transition: 0.3s;

}
.latest-and-write-review > button:hover{
    background-color: black;
    color: white;
}
.latest-and-write-review > button > i{
    margin-left: 5px;
    cursor: pointer;
}
.users-review-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 10px;
    justify-content: center;
    
}
.users-review-container > .user-review{
    border: 1px solid #0000001A;
    min-width: 400px;
    width: 32%;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.user-review:hover{
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
}
.user-review > p{
    color: #00000099;
    font-size: 16px;
}
.user-review > .post-time{
    color: #00000099;
    font-size: 16px;
    padding-top: 15px;
}
.rating-and-review >  .load-more-review{
    border: 1px solid #0000001A;
    outline: none;
    cursor: pointer;
    padding: 8px 30px;
    border-radius: 15px;
    transition: 0.4s;
    justify-self: center;
    align-self: center;
}
.rating-and-review > .load-more-review:hover{
    background: black;
    color: white;
}
/* Casual section Start  */
.casual-section{
    width: 100%;
    min-height: 50vh;
    padding-bottom: 50px;
}
.casual-section > .filter-casual-products{
    padding: 0px 25px;
    display: flex;
    margin-top: 10px;
    width: 100%;
    min-height: 100vh;

}
.filter-casual-products > .filters{
    border: 1px solid #0000001A;
    width: 25%;
    border-radius: 10px;
    padding: 10px 10px 0px;
}
.filters > .filter-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filters > hr{
    margin-top: 15px;
    color: #0000001A;
}
.filter-type{
    padding-top: 5px;
}
.filter-type > p{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    color:#00000099;
    cursor: pointer;
}
.filter-heading > img{
    height: 22px;
}
.filter-heading > h1{
    font-size: 1.3rem;
}
.filters > .price-range {
    margin-top: 12px;
}
.price-range > div > input{
  -webkit-appearance: none;
  width: 100%;
}
.price-range > div > input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background-color: black;
    border-radius: 50%;
    margin-top: calc((6px - 18px) / 2);
}
.price-range > div > input[type="range"]::-moz-range-thumb{
    height: 20px;
    width: 20px;
    background: black;
    border-radius: 50%;
    }
.price-range > div > input[type="range"]::-webkit-slider-runnable-track{
    height: 6px;
    background: black;
    border-radius: 10px;

}
.price-range > .range-inp > p{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.filters > .price-range > .price-range-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-range-heading > h1{
    font-size: 1.3rem;
}
.filter-casual-products > .casual-main{
    width: 75%;
    padding: 0px 5px 0px 15px;

}
.casual-size .size-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 12px;

}
.size-heading > h1{
    font-size: 1.3rem;
}

.casual-size-type > button{
   padding: 5px 15px;
   border-radius: 18px;
   outline: none;
   border: none;
   cursor: pointer;
   margin: 8px 5px 0px 0px;
   transition: 0.3s;
}
.casual-size-type > button:hover{
    background-color: black;
    color: white;
}

 .casual-dress-style > .apply-filter{
    cursor: pointer;
    border: none;
    outline: none;
    padding: 5px 10px;
    margin: 15px 0px 20px 0px;
    width: 100%;
    border-radius: 14px;
    transition: 0.4s;
 }
 .apply-filter:hover{
    background-color: black;
    color: white;
 }
.casual-dress-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}
.casual-dress-heading > h1{
    font-size: 1.3rem;
}
.casual-main > .casual-main-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.casual-main-heading > .latest-respo{
    display: none;
}
.casual-main-heading > div{
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #00000099;
}
.casual-main-heading > div > p{
    margin-left: 10px;
}
.casual-main-heading > div > p > span{
    color: black;
    cursor: pointer;
}
.casual-shirt-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}
.casual-shirt-container {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
    gap: 10px;
    padding: 5px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.casual-shirt-container>.item-box {
    min-height: 300px;
    padding: 0px 5px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.1);

}
/* Cart Section Start  */
.cart-section{
    min-height: 50vh;
    width: 100%;
}
.cart-section > .cart-container{
    display: flex;
    padding: 10px 25px;
    gap: 17px;
}
.cart-container > .cart-item-container{
    width: 55%;
}
.cart-products > .cart-item{
    border: 1px solid #0000001A;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    border-radius: 10px;
}
.cart-item-container > h1{
    font-size: 26px;
    text-transform: uppercase;
    font-family: 'integral CF bold';
    padding: 10px 0px;
}
.cart-item .cart-info-btns{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
}
.cart-products > .cart-item > .cart-item-pic{
    height: 120px;
    width: 100px;
}
.cart-item-count-delete{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.cart-item > .cart-item-pic > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.cart-container > .order-summary-container{
    width: 40%;
    border: 1px solid #0000001A;
    margin-top: 52px;
    border-radius: 10px;
    padding: 5px 10px;
}
.order-summary-container > p{
    color: #00000099;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.order-summary-container > p > .red-price{
    color: red;
}
.order-summary-container > .total{
    color: black;
}
.order-summary-container > hr{
    margin-top: 10px;
}
.cart-item-count-delete > .counting{
width: 120px;
padding: 0px 10px;
font-size: 22px;
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 18px;
cursor: pointer;
outline: none;
border: none;
transition: 0.4s;
}

.counting:hover{
    background-color: black;
    color: white;
}
.counting > span{
font-size: 16px;

}
.cart-item-count-delete > #delete-btn{
    cursor: pointer;
    color: red;
}
.add-promotion-code {
    padding: 0px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.add-promotion-code > input{
    width: 70%;
    padding: 8px 7px;
    border-radius: 20px;
    outline: none;
    border: none;
    background-color: #F0F0F0;
}
.add-promotion-code > button{
    background-color: black;
    color: white;
    border: none;
    outline: none;
    width: 25%;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}
.add-promotion-code > button:hover{
    background-color: #F0F0F0;
    color: black;

}
.order-summary-container > .go-to-checkout-btn{
    width: 100%;
    cursor: pointer;
    padding: 7px 0px;
    border-radius: 15px;
    outline: none;
    border: 1px solid #0000001A;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.go-to-checkout-btn > i{
    font-size: 17px;
    margin-left: 5px;
    transition: 0.5s;

    
}
.go-to-checkout-btn:hover i{
    margin-left: 20px;
}
.go-to-checkout-btn:hover{
    background-color: black;
    color: white;
}

/* Media Query Start  */

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

    /* Header Start  */
    .search-input-box>input {
        width: 200px;
    }
    .dress-container{
        width: 95%;

    }
    /* T-shirt Section Start  */
    .t-shirt-img-info{
     padding-bottom: 20px;
    }
    .large-tshirt-view{
    width: 300px;
    height: 460px;
    cursor: pointer;
}
/* T-Shirt Review and Rating Section Start  */
.users-review-container > .user-review{
    min-width: 270px;
    width: 45%;
}
.users-review-container{
    padding: 20px 5px;

}
/* Casual Page Section Start  */

}

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

    /* Header Start  */
    .navbar>ul>li {
        font-size: 14px;
        margin-right: 10px;
    }
    /* Dress Style Section Start  */
    .dress-container {
        width: 100%;
    }
       /* T-shirt Section Start  */
     .t-shirt-img-info {
        flex-direction: column;
     }
     .shirt-quarter > .large-tshirt-view{
        width: 100%;
     }
     .color-size > div > p{
        margin: 0px 0px;
     }
     .color-size > div{
    margin: 0px 0px 15px 0px;
}
/* Casual Page Section Start  */
.casual-shirt-container{
    grid-template-columns: repeat(auto-fit, minmax(100px, 200px));
}
.casual-main-heading > div{
    font-size: 12px;
}


}

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

    /* Hero Section Start  */
    .hero-img>#large-star {
        display: none;
    }

    .hero-img>#tiny-star {
        display: none;
    }

    .hero-text>.home-heading {
        font-size: 25px;
    }

    /* Dress Style Section Start  */
    .dress-container {
        grid-template-columns: 200px 200px;
        grid-template-rows: repeat(2, 170px);
        width: 100%;
    }

    .dress-container>.first-dress {
        grid-column: auto;
    }

    .dress-container>.third-dress {
        grid-column: auto;
    }

    /* Footer Section Start  */
   .footer-container{
    flex-direction: column;
   }
   .footer-container > .box-1{
     width: 100%;
   }
   /* T-shirt Review and Rating Section Start  */
   .users-review-container{
    gap: 10px;
   }
.users-review-container > .user-review{
    min-width: 270px;
    width: 100%;
}
/* Casual Page Section Start  */
.filter-casual-products > .filters{
    display: none;
}
.filter-casual-products > .casual-main{
    width: 100%;
}
.casual-shirt-container{
    grid-template-columns: repeat(auto-fit, minmax(100px, 170px));
}
.casual-main-heading > div{
    display: none;
}
.casual-main-heading > .latest-respo{
    display: initial;
}
 /* Cart Section Start  */

 .cart-section > .cart-container{
    display: flex;
    flex-direction: column;

}
.cart-container > .cart-item-container{
    width: 100%;
}
.cart-container > .order-summary-container{
    width: 100%;
    margin-top: 0px;
}
.cart-item-info > h3{
    font-size: 16px;
    width: fit-content;
}
.cart-products > .cart-item{
    margin-top: 10px;
}
}

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

    /* Header Start  */
    .top-text {
        font-size: 11px;
    }

    .top-text>i {
        display: none;
    }

    .navbar {
        padding: 0px 20px;
        height: 60px;
    }

    .navbar>.brand-logo {
        font-size: 17px;
    }

    .navbar>ul {
        display: none;
    }

    .search-input-box>input {
        font-size: 15px;
        width: 180px;
        height: 25px;
        padding: 10px 50px;
        border-radius: 15px;
    }

    .search-input-box>i {
        font-size: 14px;
        top: 25%;
    }

    /* Hero Section Start  */
    .hero-text>.home-heading {
        font-size: 20px;
    }

    /* Testimonials Section Start  */
    .testimonials>div>.review-container {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    /* Stay Up To Date Section Start  */

    .stay-up-container {
        flex-direction: column;
        gap: 20px;
    }

    .stay-up-container>h1 {
        width: 100%;
    }

    .stay-up-container>div {
        width: 100%;
        margin-top: 10px;
        padding-bottom: 10px;
    }
    /* T-shirt Review and Rating Section Start  */
    .about-rating-product-faqs > .rating-and-review-link{
    width: 150px;
}
.latest-and-write-review > .latest-btn{
    display: none;
}
.all-review-heading{
    padding-top: 8px;
}
/* Casual Page Section Start  */
.casual-shirt-container{
    grid-template-columns: repeat(auto-fit, minmax(140px, 160px));
}

}

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

    /* Hero Section Start  */
    .hero-section>.hero-text-img>.hero-text {
        width: 100%;
        height: fit-content;
        padding: 20px 10px 0px;
        margin: 0%;
    }

    .hero-section>.hero-text-img {
        flex-direction: column;
        margin: 0%;
        padding: 0%;
        min-height: 90%;
    }

    .hero-section>.hero-text-img>.hero-img {
        height: 70vh;
        width: 100%;
        margin: 0px;
        padding: 10px;
    }

    .brands-name>span>img {
        width: 60px;
    }

    .brands-name span {
        text-align: center;
        padding: 10px 10px;
    }

    /* New Arrivals Section Start  */
    .new-arrivals {
        padding-top: 60px;
    }

    .sections>.view-items {
        width: 100%;
    }

    /* Stay Up To Date Section Start  */
    .stay-up-container {
        padding: 20px 15px;
    }

    .stay-up-container>div>input {
        width: 100%;
    }

    .stay-up-container>div>.subscribe-btn {
        width: 100%;
    }
    /* Footer Section Start  */
    .copywrite-text{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 10px;
    }
        /* Dress Style Section Start  */
    .dress-container {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 5px;
    }
        
    .dress-container>.dress-box {
        background-size: 120%;
        background-position: left;
        height: 150px;
        padding: 5px 10px;
    }

    .dress-container>.sec-dress,
    .dress-container>.third-dress {
        grid-column: auto;
    }

    /* T-Shirt Section Start  */

    .shirt-quarter{
        flex-direction: column;
        flex-direction: column-reverse;
    }
    .shirt-quarter > .small-tshirt-view{
        display: flex ;
    }
    .shirt-quarter > .large-tshirt-view{
        width: 100%;
        height: 300px;
    }
    .small-tshirt-view{
        gap: 10px;
    }
    .shirt-quarter > div > .t-shirt{
    width: 90px;
    height: 100px;
    margin: 5px 0px;
    cursor: pointer;    
}
.t-shirt > img{
    background-position: center;
    background-size: cover;
}
    /* T-shirt Review and Rating Section Start  */
    .about-rating-product-faqs > .rating-and-review-link{
    width: fit-content;
}
.all-review-heading > h3{
    font-size: 15px;
}
.all-review-heading > h3 > span{
    font-size: 9px;
}
  .latest-and-write-review > .latest-img{
    width: 18px;
   }
   /* Casual Page Section Start  */
.casual-shirt-container{
    grid-template-columns: repeat(auto-fit, minmax(120px, 150px));
}
}

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

    /* Header Start  */
    .top-text {
        font-size: 10px;
        padding: 0px 15px;
    }

    .navbar>#toggle-btn {
        display: flex;
    }

    .search-input-box {
        position: static;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: right;
    }

    .search-input-box>input {
        display: none;
    }

    .search-input-box>i {
        color: black;
        position: relative;
        padding-right: 15px;
        font-size: 16px;

    }

    /* Hero Section Start  */
    .hero-text>.home-heading {
        font-size: 19px;
    }

    .hero-text>button {
        width: 100%;
    }

    .hero-img>#tiny-star {
        display: flex;
        width: 40px;
    }

    .hero-img>#large-star {
        display: flex;
        width: 55px;
    }

    .brands-name {
        overflow: hidden;
    }

    .brands-name span {
        text-align: center;
        padding: 5px 5px;
    }
    /* T-Shirt Section Start  */  
    .increase-and-cart :nth-child(1) {
    width: 100px;
}
    /* T-shirt Review and Rating Section Start  */
    .about-rating-product-faqs > a{
     font-size: 12px;
}
.casual-shirt-container{
    grid-template-columns: repeat(auto-fit, minmax(100%, 100%));
}


}