/***
=============================================
Product
=============================================
***/

.shop-search {
    position: relative;
    display: block;
    background-color: rgba(var(--techguru-white-rgb), .10);
    padding: 30px 30px 30px;
    border-radius: 10px;
}

.shop-search form {
    position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
    width: 100%;
    height: 60px;
    background-color: var(--techguru-black);
    padding-left: 30px;
    padding-right: 60px;
    font-size: 16px;
    color: var(--techguru-gray);
    font-family: var(--techguru-font);
    border: none;
    outline: none;
    font-weight: 500;
}

.shop-search form ::placeholder {
    color: inherit;
    opacity: 1;
}

.shop-search form button[type="submit"] {
    background-color: var(--techguru-base);
    color: var(--techguru-white);
    font-size: 18px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 50px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 3px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.shop-search form button:hover[type="submit"] {
    background-color: var(--techguru-white);
    color: var(--techguru-black);
}


.shop-category {
    position: relative;
    display: block;
    background-color: rgba(var(--techguru-white-rgb), .10);
    padding: 29px 30px 30px;
    border-radius: 10px;
}

.shop-category ul {
    position: relative;
    display: block;
}

.shop-category ul li {
    position: relative;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--techguru-gray);
    margin-bottom: 15px;
}

.shop-category ul li:last-child {
    margin-bottom: 0;
}

.shop-category ul li a {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--techguru-gray);
    font-weight: 500;
    border-radius: 10px;
    background-color: var(--techguru-black);
    padding: 13px 15px 13px;
    transition: all 0.3s ease;
    z-index: 1;
}

.shop-category ul li:hover a {
    color: var(--techguru-base);
}

.shop-category ul li a:after {
    position: absolute;
    right: 5px;
    top: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    background-color: rgba(var(--techguru-white-rgb), 0.05);
    font-family: 'icomoon' !important;
    content: "\e916";
    opacity: 1;
    font-size: 12px;
    color: var(--techguru-white);
    line-height: 30px;
    border-radius: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.shop-product-tags {
    position: relative;
    display: block;
    background: rgba(var(--techguru-white-rgb), .10);
    padding: 25px 20px 30px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.shop-product__tags-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-product__tags-list a {
    font-size: 12px;
    color: var(--techguru-white);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: var(--techguru-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px 5px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-product__tags-list a:hover {
    color: var(--techguru-black);
    background: var(--techguru-base);
}

.shop-product-rating {
    position: relative;
    display: block;
    background: rgba(var(--techguru-white-rgb), .10);
    padding: 25px 30px 30px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.shop-product-recent-products {
    position: relative;
    display: block;
    background-color: rgba(var(--techguru-white-rgb), .10);
    padding: 29px 30px 27px;
    border-radius: 10px;
}

.shop-product-recent-products ul {
    position: relative;
    display: block;
}

.shop-product-recent-products ul li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(var(--techguru-white-rgb), .10);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.shop-product-recent-products ul li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.shop-product-recent-products ul li .img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--techguru-black);
}

.shop-product-recent-products ul li .img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--techguru-black-rgb), 0.5);
    opacity: 0;
    z-index: 1;
    content: "";
}

.shop-product-recent-products ul li:hover .img::before {
    opacity: 1;
}

.shop-product-recent-products ul li .img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.shop-product-recent-products ul li:hover .img img {
    transform: scale(1);
}

.shop-product-recent-products ul li .img a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--techguru-white);
    font-size: 16px;
    line-height: 0;
    transform: translateY(10px) scale(0);
    z-index: 5;
}

.shop-product-recent-products ul li:hover .img a {
    transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .img a:hover {
    color: var(--techguru-base);
    transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .content {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.shop-product-recent-products ul li .content .title {
    position: relative;
    display: block;
}

.shop-product-recent-products ul li .content .title h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.shop-product-recent-products ul li .content .title h5 a {
    color: var(--techguru-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
    color: var(--techguru-base);
}

.product__showing-text-box {
    position: relative;
    display: block;
}



/***
=============================================
   Styled Pagination
=============================================
***/




/***
=============================================
Product Details
=============================================
***/

#shop-details-one__thumb {
    z-index: 10;
}


#shop-details-one__thumb .swiper-slide-thumb-active .product-details__thumb-img:before {
    opacity: 1;
}

/***
=============================================
Product Description
=====***/

.product-details__additional-information-text-1 {
    padding-bottom: 24px;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
    position: relative;
    display: block;
}

.review-one__title {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

.review-one__title h3 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
}

.review-one__content {
    position: relative;
    display: block;
    padding-left: 45px;
    flex: 1;
}

.review-one__content-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.review-one__content-top .info {
    position: relative;
    display: block;
}

.review-one__content-top .info h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.review-one__content-top .info h2 span {
    color: var(--techguru-base);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: capitalize;
    font-family: var(--techguru-font);
}

.review-one__content-bottom {
    position: relative;
    display: block;
}

.review-one__content-bottom p {
    font-size: 16px;
    line-height: 30px;
    margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
    position: relative;
    display: block;
    padding: 16px 0px 0px;
}

.review-form-one__inner {
    position: relative;
    display: block;
}

.review-form-one__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
}

.review-form-one__rate-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 17px;
    margin-bottom: 37px;
}

.review-form-one__rate-text {
    font-size: 18px;
    font-weight: 400;
}

.review-form-one__rate {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 17px;
}

.review-form-one__rate i {
    font-size: 16px;
    color: var(--techguru-base);
}

.review-form-one__rate i+i {
    margin-left: 5px;
}

.review-form-one__form {
    position: relative;
    display: block;
}

.review-form-one__form .row {
}

.review-form-one__input-box textarea {
    font-size: 14px;
    color: var(--techguru-gray);
    height: 160px;
    width: 100%;
    background-color: rgba(var(--techguru-white-rgb), .05);
    padding: 20px 30px 30px;
    border: 1px solid rgba(var(--techguru-white-rgb), .10);
    outline: none;
    margin-bottom: 0px;
    font-weight: 500;
    border-radius: 10px;
}

.review-form-one__input-box.text-message-box {
    height: 160px;
}

.review-form-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
    height: 50px;
    width: 100%;
    border: 1px solid rgba(var(--techguru-white-rgb), .10);
    background-color: rgba(var(--techguru-white-rgb), .05);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--techguru-gray);
    display: block;
    font-weight: 500;
    border-radius: 10px;
}

.review-form-one__form .thm-btn {
    border: none;
}


/*--------------------------------------------------------------
  # Related Products
  --------------------------------------------------------------*/


/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/




/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/

.billing_details_form-btns {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.billing_details_form-btn-1 {
    position: relative;
    display: block;
}

.billing_details_form-btn-1 .thm-btn {
    border: none;
}

.billing_details_form-btn-2 {
    position: relative;
    display: block;
}

.billing_details_form-btn-2 .thm-btn {
    border: none;
}







.sidebar-order-summary__checked {
    position: relative;
    display: block;
    margin-top: 20px;
    ;
}

.sidebar-order-summary__checked label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--techguru-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--techguru-font);
}

.sidebar-order-summary__checked label a {
    color: var(--techguru-base);
}

.sidebar-order-summary__checked input[type="checkbox"] {
    display: none;
}

.sidebar-order-summary__checked input[type="checkbox"]+label span {
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: transparent;
    background: var(--techguru-base);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 0;
}

.sidebar-order-summary__checked label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--techguru-black);
    border-right: 2px solid var(--techguru-black);
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span {
    border-color: var(--techguru-white);
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}



/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
    position: relative;
    display: block;
    background-color: var(--techguru-black);
    padding: 132px 0px 140px;
    z-index: 1;
}

.sign-up-one .container {
    max-width: 620px;
}

.sign-up-one__form {
    position: relative;
    display: block;
}

.sign-up-one__form form {
    position: relative;
    display: block;
    background-color: rgba(var(--techguru-white-rgb), .05);
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
    padding: 60px 50px 52px;
    border-radius: 10px;
}

.sign-up-one__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"] {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(var(--techguru-white-rgb), .10);
    background-color: rgba(var(--techguru-white-rgb), .05);
    width: 100%;
    height: 60px;
    color: var(--techguru-gray);
    font-size: 16px;
    font-family: var(--techguru-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus {
    border-color: var(--techguru-black);
    background-color: var(--techguru-black);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--techguru-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
    color: var(--techguru-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
    color: var(--techguru-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
    color: var(--techguru-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--techguru-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
    color: var(--techguru-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
    color: var(--techguru-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
    color: var(--techguru-gray);
}

.sign-up-one__form form .thm-btn {
    width: 100%;
    justify-content: center;
    border: none;
}



/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/












/***
=============================================
End
=============================================
***/