/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "roboto";
    text-decoration: none;
}

/* home page start */
h2 {
    text-align: center;
}

.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;

}

.container>hr {
    margin-top: 0.4rem;
    margin-bottom: 0.3rem;
    /* header secttion start */
}

/* header secttion start */

.header-main-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 1rem;
    margin: 0 10px;
}

.swiper {
    padding-left: 15px;
    padding-right: 15px;
}
/* col one start */

.col1 {
    flex: 1;
    font-size: 35px;
}

/* col one ends */
/* col two start */
.col2 {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.col2 a {
    color: black;
    text-decoration: none;
}

.col2>div {
    display: inline-block;
}


.col2,
.col3 {
    font-size: 18px;
    font-weight: 400;
}

.col3 {
    align-items: center;
    min-height: 30px;
}

.header-main-wrapper input[type=checkbox] {
    display: none;

}

#categoryd {
    display: none;
}

.drop-content {
    text-align: center;
    background-color: rgb(201, 201, 201);
    width: 150px;
    display: none;
    z-index: 100;
}

.drop-content a {
    padding: .5rem;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    box-sizing: border-box;
}

.drop-content a:nth-child(even) {
    border-bottom: 1px solid black;
    border-top: 1px solid black;

}

#categoryd:checked~.drop-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + .6rem);

}

.category i {
    font-size: 15px;
    padding-left: 2px;
    cursor: pointer;
}

/* col two ends */
/* col three start */

.col3 {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    gap: 10px;
}

.col3 .search-wrapper form input[type=text] {
    width: 150px;
}

.search-wrapper i {
    font-size: 15px;
}

.search-input {
    display: none;
    outline: none;
    padding: 5px;
    opacity: 0;
    transition: all 2s linear;
}

.search-input.active-search {
    opacity: 1;
    display: inline-block;
}

.search-icon {
    cursor: pointer;
}

.col3 .account::after {
    border-left: 1px solid #000;
    height: 100%;
    content: '';
    position: relative;
    top: 0;
}

.col3 div a {
    color: black;

}

.account a {
    margin-right: 10px;
}
/* col three ends */


/* navigation start */
.navigation label {
    margin-bottom: 0;
}
.navigation ul li {
    list-style: none;
    display: inline-block;
    margin: 0 15px;
}

.navigation ul {
    text-align: -webkit-center;
    margin-bottom: 0;
}

.navigation ul li a {
  color: #000000;
}

.navigation  {
    padding: 10px 0;
}
.header-bottom {
    display: none;
}

.header-mobile {
    display: none;
}
/* navigation ends */

span.right-wrapper {
    display: flex;
    gap: 15px;
    min-height: 30px;
    align-items: center;
}


span.mobile-dropdown-btn {
    display: none;
}

.search-wrapper form {
    display: flex;
    align-items: center;
    gap: 15px;
}
.mobile-only-brand {
    display: none;
}
/* media queries for header */
/*mobile-view*/
@media screen and (max-width: 767px) {
    .header-main-wrapper {
        display: flex;
        flex-direction: column-reverse;
        margin: 0 1rem;
    }

    .navigation ul li {
        display: block;
        margin-bottom: 10px;
    }

    .nav {
        display: none;
        width: 100%;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
    }

    .nav.active-nav {
        display: block;
    }

    .mobile-only-brand {
        display: block;
        margin-bottom: 15px;
    }
    span.mobile-dropdown-btn {
        display: block;
    }

    .mobile-hidden-brand {
        display: none;
    }

    .col2 {
        display: none;
    }

    .mobile-header {
        font-size: 24px;
        text-align: center;
        margin-bottom: 1rem;

    }

    .header-mobile {
        display: block;
    }

    .col1 .account span,
    .col1 .cart span {
        display: none;
    }

    .col1 .account i,
    .col1 .cart i {
        display: inline-block;
    }

    #categoryd:checked~.drop-content {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .drop-content a:nth-child(even) {
        border-top: 1px solid black;
        border-bottom: 1px solid black;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-between;
        margin: 0 1rem;
    }

    .mobile-nav-left {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .header-bottom {
        display: block;
        margin-top: 1rem;
    }

    .navigation-mobile {
        text-align: center;
        padding: 10px 0;
        background: #d9d9d9;
    }
    
    .navigation-mobile ul {
        list-style: none;
    }

    .navigation-mobile ul li a {
        color: #000000;
    }

    i.fa-solid.fa-cart-shopping, i.fa-solid.fa-user {
        color: #000000;
    }

    .col1 {
        font-size: 24px;
    }
    .col3 {
        width: 100%;
        justify-content: space-between;
    }
    
}


/*tab-portrait*/
@media (min-width: 768px) and (max-width: 991px) {

    .product-card-wrapper {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }

    .col2 {
        font-size: 24px;
    }

    .col1 .account span,
    .col1 .cart span {
        display: none;
    }

    .col1 .account i,
    .col1 .cart i {
        display: inline-block;
    }

    #categoryd:checked~.drop-content {
        display: flex;
        flex-direction: column;
        position: absolute;
    }


    .drop-content a:nth-child(even) {
        border-top: 1px solid black;
        border-bottom: 1px solid black;
    }

    .navigation ul li {
        margin: 0 7px;
    }
}


/*small pc*/
@media (min-width: 992px) and (max-width: 1200px) {
    .header-main-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .search-wrapper form {
        display: flex;
        gap: 5px;
        align-items: center;
    }

    .account a span, .cart a span {
        white-space: nowrap;
    }
}



/* header section ends */
/* product section start */
.product h2 {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-preview-image-wrapper {
    overflow: hidden;
    padding-top: 5px;
    margin: 1rem;
}

.product-preview-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.product-card {
    flex: 1;
    padding: 1rem;
    min-width: 250px;
}

.product-card-image-wrapper {
    height: 250px;
}

.product-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    text-align: center;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-size: 18px;
}

.product-price {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 18px;
}

.new-product {
    padding-bottom: 50px;
}
/* product section ends */
/* homepage ends */



/* start  product page */
/* product page styling */

.product-customize {
    display: flex;
    margin: 1rem 2rem 0rem 2rem;
}

.product-customize-form-mobile {
    display: none;
}

.product-customize-form {
    display: block;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

/* product preview image */
.customize-image-preview {
    flex: 1;
    width: 100%;
    height: 500px;
}

.customize-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* product customize */
.customize-product {
    flex: 1;
    padding-left: 1.5rem;
    position: relative;
}

.co-product-title {
    text-transform: capitalize;
    font-size: 30px;
    padding-bottom: 1rem;
}

.co-product-price {
    font-size: 20px;
    padding-bottom: 2rem;
    font-weight: bold;
}

.co-product-color-tag {
    font-size: 20px;
    padding-bottom: 0.2rem;
    font-weight: bold;
}

.add-to-cart {
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    padding: 10px 40px;
    text-align: center;
    background-color: black;
    color: #fff;
    font-size: 18px;
}


/* costomize color dropdown */
.custom-select-1 {
    position: relative;
    width: 200px;
}

.custom-select-1 select {
    display: none;
}

.select-selected {
    background-color: rgb(201, 205, 209);
}



/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: rgb(0, 0, 0) transparent transparent transparent;
}


/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
    color: #000000;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: rgb(201, 205, 209);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 0;
}
/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.2);
}


/* media queries for prouct customze*/

/* product page ends */


  .swiper-slide {

    height: 100vh;
   
    display: flex;
    justify-content: space-between;
        

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

.swiper-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.swiper-right {
    flex: 50%;
    width: 50%;
}

/*mobile-view*/
@media screen and (max-width: 767px) {
    .swiper-slide {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 15px;
    }
    .product-customize {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .product-customize-form {
        /* display: none; */
    }

    .product-customize-form-mobile {
        display: block;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .customize-product {
        flex: 1;
        position: static;
        padding: 0;
    }

    .add-to-cart {
        margin-top: 10rem;
        position: static;
        z-index: 1;
    }

    .custom-select {
        width: 100%;
    }

    .navigation-mobile ul li a {
        color: #000000;
    }

    i.fa-solid.fa-cart-shopping, i.fa-solid.fa-user {
        color: #000000;
    }
    
    .product-customize {
        margin: 1rem 0 0 0;
    }

    .customize-product {
        margin: 0 1rem 1rem 1rem;
        padding-top: 15px;
    }

    .swiper-left {
        width: 100%;
        align-items: center;
    }

    .swiper-right {
        width: 100%;
    }

    .swiper-right img {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}



/*tab-portrait*/
@media (min-width: 768px) and (max-width: 991px) {
    .product-customize {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .product-customize-form {
        /* display: none; */
    }

    .product-customize-form-mobile {
        display: block;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .customize-product {
        flex: 1;
        position: static;
        padding: 0;
    }

    .add-to-cart {
        margin-top: 10rem;
        position: static;
        z-index: 1;
        width: max-content;
    }

    .navigation-mobile ul li a {
        color: #000000;
    }

    i.fa-solid.fa-cart-shopping, i.fa-solid.fa-user {
        color: #000000;
    }
    
    .product-customize {
        margin: 1rem 0 0 0;
    }

    .customize-product {
        margin: 0 1rem 1rem 1rem;
    }

    .col1 {
        width: max-content;
        margin-right: 15px;
        flex: unset;
    }


    /* new styles*/
    .header-main-wrapper {
        display: flex;
        flex-direction: column-reverse;
        margin: 0 1rem;
    }

    .navigation ul li {
        display: block;
        margin-bottom: 10px;
    }

    .nav {
        display: none;
        width: 100%;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
    }

    .nav.active-nav {
        display: block;
    }

    .mobile-only-brand {
        display: block;
        font-size: 35px;
        margin-bottom: 15px;
    }
    span.mobile-dropdown-btn {
        display: block;
    }

    .mobile-hidden-brand {
        display: none;
    }

    .col2 {
        display: none;
    }

    .mobile-header {
        font-size: 24px;
        text-align: center;
        margin-bottom: 1rem;

    }

    .header-mobile {
        display: block;
    }

    .col1 .account span,
    .col1 .cart span {
        display: none;
    }

    .col1 .account i,
    .col1 .cart i {
        display: inline-block;
    }

    #categoryd:checked~.drop-content {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .drop-content a:nth-child(even) {
        border-top: 1px solid black;
        border-bottom: 1px solid black;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-between;
        margin: 0 1rem;
    }

    .mobile-nav-left {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .header-bottom {
        display: block;
        margin-top: 1rem;
    }

    .navigation-mobile {
        text-align: center;
        padding: 10px 0;
        background: #d9d9d9;
    }
    
    .navigation-mobile ul {
        list-style: none;
    }

    .navigation-mobile ul li a {
        color: #000000;
    }

    i.fa-solid.fa-cart-shopping, i.fa-solid.fa-user {
        color: #000000;
    }

    .col1 {
        font-size: 24px;
    }
    .col3 {
        width: 100%;
        justify-content: space-between;
    }

    .customize-product {
        padding-top: 15px;
    }
}

