/* Topbar grid layout */


a.arrow {
    transform: rotate(0deg)!important;
}
.product-card:hover a.arrow {
    background-color: #B1E4FA !important;
    transform: rotate(75deg)!important;
}

/* "F" Product Block Custom*/

        
        .h2-container {
            margin-bottom: 0px;
					
        }
        
        .h2-container h2 {
            font-size: 16px;
				
            font-weight: 500;
					color: #5A5F60;
				font-family: "Open Sans", Sans-serif;

            color: #171F20;
            margin-bottom: 5px;
        }
        
        .flex-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 15px 0;
        }
        
        .flex-container h3 {
            font-size: 0px;
            font-weight: 600;
            color: #171f20;
					font-family: "Pathway Extreme", Sans-serif;
        }
        
        .filter-container {
            display: flex;
            list-style: none;
            gap: 16px;
        }
        
        .filter-container li {
            padding: 12px 24px;
            border: 2px solid #171F20;
            border-radius: 16px;
            cursor: pointer;
            font-size: 18px;
            transition:all 0.4s ease-in-out;
        }
        
        .filter-container li:hover {
            background-color: #B1E4FA;
					border: 2px solid #B1E4FA;
            color: white;
					transition: all 0.4s ease-in-out;
           
					
        }
       
        .product-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .product-card {
            width: calc(33.333% - 14px);
            background-color: #fff;
            border-radius: 16px !important;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
            height: 600px;
        }
        
        .product-card:hover {
            
            background-color: #E7E8E8;
					
        }
        
        .product-image {
            width: 100%;
            height: 410px;
            overflow: hidden;
            flex-shrink: 0;
            transition: all 0.3s ease-in-out;
            position: relative;
        }
        
        .product-card:hover .product-image {
            background: linear-gradient(180deg, #e8e8ed 0%, #2a2a2a 100%);
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            
        }
        
        .product-details {
            padding: 24px;
            background-color: #E7E8E8;
					
            transition: all 0.3s ease-in-out;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
					
        }
        
        .product-card:hover .product-details {
            background-color: #1a1a1a;
            color: #fff;
				margin: 0px;
            transform: translateY(-32px);
					transition: all 0.3s ease-in-out;
        }
.product-title{
	margin-top: 16px;
}
        .product-title a {
            font-size:24px;
            font-weight: 500;
            
					line-height: 33px;
					
            color: #000;
            transition: color 0.3s ease-in-out;
					font-family: "Pathway Extreme", Sans-serif;
        }
        
        .product-card:hover .product-title a{
            color: #fff !important;
        }
        
        .Product-Description {
            font-size: 16px;
					line-height: 22px;
            color: #666;
            display: none;
            
        }
        
        .product-card:hover .Product-Description {
            max-height: 100px;
            display: block;
            color: #f5f5f5;
					font-family: "Open Sans", Sans-serif;
					font-weight: 400;
					line-height: 22px;
					transition: all 0.5s ease-in-out;
					margin-top: -12px;
        }
        
        .for-flex-arrow {
            display: flex;
            justify-content: space-between;
            align-items: center;
					margin-top: 9px;
            
        }
        
        .price {
            font-size: 20px;
					line-height: 27px;
            font-weight: 500;
            color: #171F20;
            transition: color 0.3s ease-in-out;
					font-family: "Pathway Extreme", Sans-serif;
        }
        
        .product-card:hover .price {
            color: #f5f5f5;
					margin-bottom: 12px;
        }
        
        .arrow {
            width: 42px;
            height: 42px;
            background-color: #333;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .product-card:hover .arrow {
    background-color: #B1E4FA;
    margin-top: -12px;
    stroke: #000 !important;
    fill: #000 !important;
}
.product-card:hover .arrow svg,
.product-card:hover .arrow path,
.product-card:hover .arrow line,
.product-card:hover .arrow polyline,
.product-card:hover .arrow polygon {
    stroke: #000 !important;
    fill: #000 !important;
}

        
        .h2-container-before {
            display: block;
            font-size: 12px !important;
            font-weight: 400;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 5px;
        }
        
        .h2-container h2 {
            font-size: 40px;
            font-weight: 600;
            color: #171F20;
            margin-bottom: -65px;
        }
.category-label{
	margin: 0px;
}
        
        .category-label a{
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
					
            color: #171f20;
            transition: color 0.3s ease;
        }


        
        .product-card:hover .category-label a{
            color: #fff;
        }
        
        .view-store-btn {
            display: block;
            width: fit-content;
            margin: 48px auto 0;
            padding: 12px 24px;
            background-color: #B1E4FA;
            color: #171f20;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 600;
					font-size: 18px;
            transition: background-color 0.3s ease;
        }
        
        .view-store-btn:hover {
            background-color: #4C91AE;
					color: #fff;
        }
        
        @media (max-width: 769px) {
            .product-card {
                width: calc(50% - 10px);
            }
            
            .flex-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .filter-container {
                flex-wrap: wrap;
            }
			.product-details {
            padding: 24px;
            background-color: #E7E8E8;
					
            transition: all 0.3s ease-in-out;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
					
        }
        
        .product-card:hover .product-details {
            background-color: #1a1a1a;
            color: #fff;
				margin: 0px;
            transform: translateY(-32px);
					transition: all 0.3s ease-in-out;
        }
        }
        
        @media (max-width: 480px) {
            .product-card {
                width: 100%;
				
            }
					.product-flex{
						margin: 15px;
					}
            
            .h2-container h2 {
                font-size: 28px;
							padding: 20px;
            }
					.flex-container {
						display: flex;
						flex-direction: column;
					}
						.filter-container{
					display: flex;
						padding-left: 24px;
						gap: 8px;
						
					}
					.product-title a{
						font-size: 20px;
					}
					.filter-container li{
						padding: 12px 10px;
						
						
					}
			.product-card:hover{
				background-color: #1a1a1a;
			}
					.filter-container li:hover{
						border: 2px solid #b1e4fa;
						border-radius: 16px;
					
					}
					.flex-container h3{
						padding-left: 20px;
					}
			
        }
.elementor-element.elementor-element-718b7f5.elementor-widget.elementor-widget-woocommerce-breadcrumb{
	margin-top: 10px;
}
/* --------------------------------------------------
   TOPBAR GRID LAYOUT
-------------------------------------------------- */
.custom-cat-topbar-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
}

/* Left (dropdown) */
.cat-left {
    position: relative;
}

/* Center (category buttons) */
.cat-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Right (product count or anything you place there) */
.cat-right {
    justify-self: end;
}

/* --------------------------------------------------
   DROPDOWN
-------------------------------------------------- */
.custom-dropdown-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-dropdown-label {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    white-space: nowrap;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
}

.custom-dropdown-button {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    outline: none;
    transition: 0.2s ease;
}

.custom-dropdown-button:hover,
.custom-dropdown.active .custom-dropdown-button {
    color: #5CD2E6;
}

.custom-dropdown-arrow {
    width: 12px;
    height: 8px;
    transition: transform 0.3s ease;
}

.custom-dropdown.active .custom-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu */
.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.custom-dropdown.active .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 14px;
    color: #1A1A1A;
    transition: 0.2s ease;
}

.custom-dropdown-menu a:hover {
    background: #F5F5F5;
}


/* --------------------------------------------------
   CATEGORY BUTTONS
-------------------------------------------------- */
.custom-cat-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.custom-cat-buttons li {
    margin: 0;
    padding: 0;
}

.cat-btn-link {
    display: inline-block;
    padding: 12px 18px;
    border: 2px solid #1A1A1A;
    border-radius: 12px;
    background: #FFF;
    text-decoration: none;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    white-space: nowrap;
}

.cat-btn-link:hover {
    background: #b1e4fa;
    border-color: #b1e4fa;
    color: #171f20;
}

.cat-btn-link.active {
    background: #b1e4fa;
    border-color: #b1e4fa;
    color: #171f20;
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

/* Tablets */
@media (max-width: 1024px) {
    .custom-cat-topbar-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        text-align: center;
        gap: 20px;
    }

    .cat-center {
        justify-content: center;
        width: 100%;
    }

    .custom-cat-buttons {
        justify-content: center;
    }
}

/* Mobile tablets */
@media (max-width: 768px) {
    .custom-dropdown-label,
    .custom-dropdown-button {
        font-size: 15px;
    }

    .custom-cat-buttons {
        gap: 10px;
    }

    .cat-btn-link {
        font-size: 14px;
        padding: 10px 24px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .custom-cat-topbar-grid {
        gap: 15px;
    }

    .custom-dropdown-label,
    .custom-dropdown-button {
        font-size: 14px;
    }

    .custom-cat-buttons {
        justify-content: center;
        gap: 8px;
    }

    .cat-btn-link {
        padding: 9px 20px;
        font-size: 13px;
    }
}

/* Small mobile */
@media (max-width: 340px) {
    .custom-cat-buttons {
        gap: 6px;
    }

    .cat-btn-link {
        padding: 8px 16px;
        font-size: 12px;
    }
}


/* Product Specification Block */



/* Upload box styling */
.cf7-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
  }
  
  #cf7-upload-input {
    display: none;
  }
  
  /* Upload icon after text */
  .cf7-upload-label::after {
    content: "⬆️"; /* Change icon if needed */
    font-size: 18px;
    margin-left: 4px;
  }
  
  /* Hover effect */
  .cf7-upload-label:hover {
    opacity: 0.8;
  }

  
  .cf7-upload-label::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 6px;
    background-image: url("../../assets/images/upload.svg");
}
.upload-row br{
    display: none;
}


.product-accordion h1{
	font-family: "Pathway Extreme", Sans-serif;
	font-weight: 500px;
	color: #000;
	font-size: 40px;
	line-height: 54px;
	
}
  
.accordin-item {
    border-bottom: 2px solid #000;
	
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
	border-bottom: 1px solid #cbcbcb;
	
}



.accordion-title {
    font-size: 24px;
	line-height: 33px;
	font-family: "Pathway Extreme", Sans-serif;
    font-weight: 500;
    color: #000;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.accordion-icon svg {
    width: 100%;
    height: 100%;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
	margin-top: 20px;
}

.accordion-item.active .accordion-content {
    max-height: 2500px;
    padding: 0 32px 32px 32px;
}

.accordion-inner {
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.accordion-item.active .accordion-inner {
    opacity: 1;
    transform: translateY(0);
}


.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 20px;
}

.tech-item {
    text-align: center;
}

.tech-icon {
    width: 54px;
    height: 54px;
    margin: 0px auto;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon img {
    width: 54px;
    height: 54px;
}

.tech-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
	margin-top: 8px;
	line-height: 27px;
    color: #000;
	font-family: "Pathway Extreme", Sans-serif;
}

.tech-description {
    font-size: 14px;
	font-family: "Open Sans", Sans-serif;
	line-height: 22px;
    color: #000;
    line-height: 1.5;
}

.placeholder-text {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}
.pickr{
	margin-bottom: 16px;
	margin-top: 16px;
}
.product-color-picker{
	margin-top: -28px;
}
.deliver-txt{
	margin-top: 44px;
	margin-bottom: 44px;
}
p.custom-price{
	margin-bottom: 32px;
	font-size: 24px;
	font-family: "Pathway Extreme", Sans-serif;
line-height: 33px;
	color: 171f20;
	
}
.woocommerce-product-details__short-description p{
	margin-bottom: 8px;
}
@media (min-width: 300px) and (max-width: 480px) {

    .accordion-header {
        padding: 16px 15px;
    }

    .accordion-title {
        font-size: 15px;
    }

    .accordion-icon {
        width: 20px;
        height: 20px;
    }

    .accordion-content {
        padding: 0 15px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 15px 25px 15px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
    }

    .tech-icon svg {
        width: 25px;
        height: 25px;
    }

    .tech-name {
        font-size: 13px;
    }

    .tech-description {
        font-size: 12px;
    }

    .placeholder-text {
        font-size: 14px;
    }
}


@media (min-width: 481px) and (max-width: 768px) {
    .accordion-header {
        padding: 20px 20px;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 20px 30px 20px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .tech-icon {
        width: 60px;
        height: 60px;
    }

    .tech-icon svg {
        width: 30px;
        height: 30px;
    }

    .tech-name {
        font-size: 14px;
    }

    .tech-description {
        font-size: 13px;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .tech-icon {
        width: 70px;
        height: 70px;
    }

    .tech-icon svg {
        width: 35px;
        height: 35px;
    }
}


@media (min-width: 1025px) and (max-width: 1440px) {
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }
}


@media (min-width: 1441px) {

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 45px;
    }

}


@media (max-width: 768px) {

.footer-content {
    display: none;
}

.footer-active {
    font-weight: bold; /* highlight active title */
}
	.footer-title{
		position:relative;

	}
	.footer-title svg{
		position:absolute;
		top:0px;
		right:5px;
	}
	#toggle-button::after {
    left: 89% !important
	}
	button.single_add_to_cart_button.button.alt{
	background-color: #b1e4fa;
	color: black;
	font-family: "Open Sans", Sans-serif;
	font-size: 18px;
	font-weight: 600px;
	line-height: 25px;
	padding: 12px 24px;
	border-radius: 16px;
	width: 198px;
	transition: all 0.5s ease;
}
button.single_add_to_cart_button.button.alt:hover{
	background-color: #4c91ae;
	color: white;
	
}
	.elementor-element.elementor-element-843cd57.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
}
	.elementor-element.elementor-element-6b2b3b2.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded{
		width: 400px;
		padding-right: 20px;
		padding-left: 20px;
		margin-left: 0px;
	}
}
@media (min-width: 300px) and (max-width: 480px){
	button.single_add_to_cart_button.button.alt{
	background-color: #b1e4fa;
	color: black;
	font-family: "Open Sans", Sans-serif;
	font-size: 18px;
	font-weight: 600px;
	line-height: 25px;
	padding: 12px 24px;
	border-radius: 16px;
	width: 198px;
	transition: all 0.5s ease;
}
button.single_add_to_cart_button.button.alt:hover{
	background-color: #4c91ae;
	color: white;
	
}
	.elementor-element.elementor-element-6b2b3b2.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded{
		width: 370px;
		padding-right: 20px;
		padding-left: 20px;
		margin-left: 0px;
	}
	.elementor-element.elementor-element-843cd57.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
}
	button.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed{
		width: 170px;
	}
	.elementor-1679 .elementor-element.elementor-element-df927f9 .elementor-heading-title{
		width: 240px;
		padding: 0px;
		
	}
	.e-con-inner{
		width: 385px;
	}
	
}
#toggle-button::after {
    content: '';
    background-image: url(../../assets/images/vector-open.svg);
    width: 27.5px;
    height: 15px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 22%;
    top: 42%;
    CURSOR: POINTER;
}
#toggle-button.open::after {
    content: '';
    background-image: url(../../assets/images/vector-close.svg) !important;
}

.flex-div {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.icon-circle img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.woocommerce table.variations,
.woocommerce table.variations tr,
.woocommerce table.variations td,
.woocommerce table.variations th {
    background: transparent !important;
}
a.reset_variations{
	font-size: 0px !important;
}
button.single_add_to_cart_button.button.alt{
	background-color: #b1e4fa;
	color: black;
	font-family: "Open Sans", Sans-serif;
	font-size: 18px;
	font-weight: 600px;
	line-height: 25px;
	padding: 12px 24px;
	border-radius: 16px;
	width: 432px;
	transition: all 0.5s ease;
}
button.single_add_to_cart_button.button.alt:hover{
	background-color: #4c91ae;
	color: white;
	
}
th.label{
	padding: 0px;
	display: flex;
}

.th label pa_color{
	padding-bottom: 5px;
}
span.woo-selected-variation-item-name{
	font-size: 16px;
	font-family: "Open Sans", Sans-serif;
font-weight: 400;
	line-height: 22px;
}
label{
	padding-bottom: 5px;
}
a.woocommerce-product-gallery__trigger
{
	display: none;
}
/* Cart Page */
.e-shop-table.e-cart-section.e-cart-section--no-coupon
{
	
	  background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.03);
	border: none;
}
/* Main cart table */
table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 14px;      /* space between rows like your card spacing */
    background: transparent;
}



/* Each row looks like a card */


/* Cells inside rows update cart ka background*/
table.shop_table tbody td {
    padding: 22px 18px;
    background: transparent !important;
    border-top: none !important;
    font-size: 15px;
    color: #1a1a1a;
}

/* Round first + last cells like your form containers */
table.shop_table tbody td:first-child {
    border-radius: 20px 0 0 20px;
}
table.shop_table tbody td:last-child {
    border-radius: 0 20px 20px 0;
}

/* Product name */
table.shop_table td.product-name a {
    font-weight: 600;
    font-size: 14px;
    color: #1d1d1d;
}

/* Price + subtotal */
table.shop_table td.product-price,
table.shop_table td.product-subtotal {
    font-weight: 600;
    color: #1d1d1d;
}

/* Thumbnail spacing fix */
td.product-thumbnail img {
    border-radius: 12px;
    width: 200px;
    height: auto;
}

/* Remove product (X) icon styling */
table.shop_table td.product-remove a {
    color: #cf0000 !important;
    font-size: 20px;
    transition: 0.2s;
}
table.shop_table td.product-remove a:hover {
    color: #9a0000 !important;
}

/* Quantity input styling to match your form */
.woocommerce .quantity input.qty {
    background: #e9ecef;
    border: none;
    height: 46px !important;
    width: 70px;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
}
.elementor-widget-woocommerce-cart .woocommerce table.shop_table.cart .actions .button{
	border-radius: 14px;
}
/* Update button section */
.cart-collaterals,
.woocommerce-cart-form__cart-item,
.woocommerce .cart_totals {
    border-radius: 20px;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* Proceed to checkout button */
a.checkout-button {
    background: #59b5d9 !important; /* same blue tone as left side */
    color: #ffffff !important;
    padding: 18px 28px !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: 0.25s;
}

a.checkout-button:hover {
    background: #3aa1c9 !important;
}
img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail{
	width: 100% !important;
}
.elementor-widget-woocommerce-cart .woocommerce a:not(.add_to_cart_button):not(.restore-item):not(.wc-backward):not(.wc-forward){
	color: #171f20;
font-size: 16px;
}
.elementor-widget-woocommerce-cart .woocommerce table.cart td span{
	font-size: 16px;
}
.elementor-widget-woocommerce-cart .woocommerce .input-text.qty{
	text-align: center !important;
	padding: 0px;
}