/*
 Theme Name:   CustomStrap
 Theme URI:    https://www.livecanvas.com/customstrap/
 Description:  A child theme for UnderStrap, bringing some cool options in the Customizer and a built in SCSS compiler to roll your own BootStrap
 Author:       LiveCanvas.com
 Author URI:   https://www.livecanvas.com
 Template:     understrap
 Version:      2.7.0
 Text Domain:  customstrap
 License: GPL-2.0
 License URI: http://www.opensource.org/licenses/gpl-license.php
*/

.woocommerce-page .woocommerce-message .button, .btn-default a, .wc-block-components-button {
    font-family: 'Archivo', sans-serif;
    border-radius: 0px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
    background-color: #142C54;
    border: 3px solid #142C54;
    color: #DCDCE0;
	text-decoration: none;
}
.woocommerce-page .woocommerce-message .button:hover, .btn-default a:hover, .wc-block-components-button:hover {
    border-color: #21D9C3;
    background-color: #21D9C3;
    color: #1F2024;
}

.woocommerce_hero {
    background-color: rgba(20, 44, 84, 0.9);
}
.clearfix:after {
	content: "";
    display: block;
    clear: both;
}
.product-grid {
	width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background-color: #fff;
    border: 1px solid #e8eceb;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeUp 0.4s ease both;
}
.product-card:hover {
	border-color: rgba(0,184,162,0.3);
	box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,184,162,0.15);
	transform: translateY(-2px);
}
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
    to {
		opacity: 1;
		transform: translateY(0);
	}
}
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.40s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }

.product-img {
    background-color: #f8f9f8;
    position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-img a {
    aspect-ratio: 1;
	display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-img-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d0ecea 0%, #a8ddd8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-dark);
    text-align: center;
    line-height: 1.3;
    padding: 12px;
}
.product-body {
    padding: 18px 18px 20px;
}
.product-brand {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00b8a2;
    margin-bottom: 5px;
	line-height: normal;
}
.product-name {
    margin-bottom: 6px;
}
.product-name h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0;
}
.product-name h3 a {
    color: #0d0f0e;
	display: inline-block;
	text-decoration: none;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.product-price {
    font-size: 14px;
    font-weight: 700;
    color: #0d0f0e;
	width: 100%;
}
.btn-cart {
    width: 100%;
}
.btn-cart .add_to_cart_button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #e6f7f5;
    color: #009688;
    border: none;
    border-radius: 2px;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}
.btn-cart .add_to_cart_button:hover {
    background-color: #00b8a2;
    color: #fff;
    transform: scale(1.02);
}
.product-desc {
    font-size: 12.5px;
    color: #8a9190;
    line-height: 1.5;
    margin-bottom: 14px;
}
.product-img a img {
    object-fit: contain;
    aspect-ratio: 1 / 1;
}
.woocommerce nav.woocommerce-pagination {
	margin-top: 52px;
}
.woocommerce nav.woocommerce-pagination ul {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 36px;
    border: unset;
    border-top: 1px solid #e8eceb;
}
.woocommerce nav.woocommerce-pagination ul li {
	border: unset;
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 500;
    background: #f8f9f8;
    color: #4a4f4e;
    border: 1px solid #e8eceb;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.18s;
    padding: 0 6px;
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers.current {
    background: #0d0f0e;
    color: #fff;
    border-color: #0d0f0e;
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers:hover {
	background: #0d0f0e;
    color: #fff;
    border-color: #0d0f0e;
}
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    float: none;
    width: 100%;
}
.woocommerce div.product div.images {
    margin-bottom: 0;
}
.single-product-wrapper {
    width: 100%;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: start;
}
.woocommerce div.product div.images.woocommerce-product-gallery.single-product-img {
    position: sticky;
    top: 24px;
}
.single-product-img .woocommerce-product-gallery__wrapper {
    background-color: #f7f8f7;
    border-radius: 12px;
    border: 1px solid #e6eae9;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.woo-title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.08;
    margin-bottom: 20px;
	text-align: left;
}
.woo-brand {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #00b8a2;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.woo-brand::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: #00b8a2;
    display: inline-block;
}
.woo-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e6eae9;
}
.woo-price {
    font-size: 38px;
    font-weight: 800;
    color: #0c0e0d;
    letter-spacing: -.02em;
	line-height: normal;
}
.woo-price-per {
    font-size: 13px;
    color: #8a9190;
    font-weight: 300;
}
.woo-price-note {
    font-size: 12px;
    padding: 4px 10px;
    background-color: #e4f5f3;
    color: #009688;
    border-radius: 20px;
    font-weight: 500;
}
.woo-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid #e6eae9;
    border-radius: 4px;
    overflow: hidden;
}
.woocommerce div.product form.cart .button.btn-atc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #0c0e0d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    transition: all .22s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
	float: none;
    padding: 16px 20px;
    line-height: normal;
}
.woocommerce div.product form.cart .button.btn-atc::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #00b8a2;
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.woocommerce div.product form.cart .button.btn-atc svg, .woocommerce div.product form.cart .button.btn-atc span {
    position: relative;
    z-index: 1;
}
.woocommerce div.product form.cart .button.btn-atc:hover {
    box-shadow: 0 8px 24px rgba(0,184,162,.28);
    transform: translateY(-1px);
}
.woocommerce div.product form.cart .button.btn-atc:hover::before {
    transform: translateX(0);
}
.cart-btn-flex {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    margin-top: 28px;
    align-items: stretch;
}
.woocommerce div.product form.cart .woo-qty div.quantity {
    float: none;
    margin: 0;
}
.woocommerce div.product form.cart .woo-qty div.quantity .qty {
    width: 100%;
    border: unset;
	outline: unset;
}
.product_meta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e6eae9;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}
.sku_wrapper, .posted_in {
    font-size: 12.5px;
    color: #8a9190;
}
.sku {
    color: #0c0e0d;
    font-weight: 500;
}
.posted_in a {
    color: #00b8a2;
    text-decoration: none;
}
.woocommerce-tabs {
    margin-top: 64px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    border-bottom: 1px solid #e6eae9;
    gap: 0;
    margin: 0 0 36px;
    padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	padding: 0;
    font-size: 13.5px;
    font-weight: 500;
    color: #8a9190;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: all .18s;
    letter-spacing: .01em;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	color: #0c0e0d;
    border-bottom-color: #00b8a2;
	background-color: unset;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before, .woocommerce #content div.product .woocommerce-tabs ul.tabs::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	content: unset !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 12px 24px;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
    letter-spacing: unset;
    display: none;
}
.woocommerce table.shop_attributes {
    margin: 0;
    width: 100%;
    max-width: 520px;
    border-collapse: collapse;
    border: unset;
}
.woocommerce table.shop_attributes tr {
    border-bottom: 1px solid #e6eae9;
}
.woocommerce table.shop_attributes th {
    text-align: left;
    padding: 14px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8a9190;
    width: 180px;
    border: unset;
}
.woocommerce table.shop_attributes td {
    border: unset;
    background-color: unset;
    padding: 14px 0;
    font-size: 14.5px;
    color: #4a4f4e;
    font-weight: 300;
}
.woocommerce table.shop_attributes tr:nth-child(even) td, .woocommerce table.shop_attributes tr:nth-child(even) th {
	background-color: unset;
}
.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0;
    padding: 0;
}
.related.products {
    padding: 72px 0 80px;
}
.related.products h2 {
    letter-spacing: normal;
}
.woocommerce-message {
    border-top-color: #21D9C3;
	outline: unset;
}
.woocommerce-message::before {
    color: #21D9C3;
}
.category-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.category-item {
    border: 1px solid #ddd;
    width: calc((100% - 90px) / 4);
}
.category-item .category-title {
    margin: 0;
    align-items: center;
    background: #f5f5f5;
    color: #333 !important;
    justify-content: center;
    text-align: center;
    display: flex;
    padding: 10px 4px;
    font-size: 15px;
    font-weight: 600;
}
.category-image {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}
.category-item a {
	display: block;
}
.category-item a:hover {
    text-decoration: none;
}
.category-item a:hover .category-title {
    background-color: #21D9C3;
    color: #fff !important;
}

@media (min-width: 768px) {
	.single-product .hero-page-title h1 {
		font-size: 30px;
		line-height: 35px;
	}
}
@media (max-width: 1199px) {
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.single-product-wrapper {
		gap: 32px;
	}
}
@media (max-width: 991px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.single-product-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
	.woocommerce div.product div.images.woocommerce-product-gallery.single-product-img {
		position: relative;
		top: 0;
	}
	.category-item {
		width: calc((100% - 30px) / 2);
	}
}
@media (max-width: 767px) {
	.category-grid {
		gap: 20px;
	}
	.category-item {
		width: calc((100% - 20px) / 1);
	}
}
@media (max-width: 600px) {
	.product-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}