/* Custom WooCommerce Shop Grid Layout */
.frameish-shop-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Shop Header */
.frameish-shop-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.frameish-shop-title {
    font-size: 42px !important;
    font-weight: 700;
    color: #000;
	margin:0 auto;
    margin-bottom: 20px;
    line-height: 1.2;
	max-width:720px;
}

.frameish-shop-title .secondary{
	color:#B151FAFE;
}

.frameish-shop-description {
    font-size: 18px;
    color: #000;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Grid */
.frameish-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.frameish-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.frameish-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

/* Most Popular Badge */
.frameish-popular-badge {
    position: absolute;
    top: -33px;
    left: 50%;
    transform: translateX(-50%);
    background: #B151FA;
    color: white;
    padding: 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    width: 60%;
}

/* Most Popular Card Highlight */
.frameish-product-card.popular {
    border: 2px solid #B151FA;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

/* Product Titles */
.frameish-product-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Pricing */
.frameish-product-price {
    margin: 20px 0;
}

.frameish-price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    display: block;
    line-height: 1;
}

.frameish-price-suffix {
    font-size: 14px;
    color: #718096;
    margin-top: 5px;
    display: block;
}

.frameish-credits {
    font-size: 18px;
    color: #4a5568;
    font-weight: 500;
    margin: 10px 0 20px;
}

/* Description */
.frameish-product-description {
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Buy Now Button */
.frameish-buy-now-btn {
    background: #B151FA;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.frameish-buy-now-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.frameish-buy-now-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(40, 40);
        opacity: 0;
    }
}

.frameish-buy-now-btn:hover {
    background: #B151FA;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Tax Notice */
.frameish-tax-notice {
    text-align: center;
    color: #a0aec0;
    font-size: 13px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .frameish-products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .frameish-shop-title {
        font-size: 28px;
    }

    .frameish-shop-description {
        font-size: 16px;
    }

    .frameish-products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .frameish-product-card {
        padding: 25px 20px;
    }

    .frameish-price-amount {
        font-size: 32px;
    }
}

/* Hide default WooCommerce elements */
.page-title,
.woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-pagination,
.woocommerce-loop-product__title,
.price,
.woocommerce-product-details__short-description,
.add_to_cart_button,
.added_to_cart {
    display: none !important;
}

/*****
CART PAGE STYLE
*****/

/* Progress Bar Container */
.frameish-progress-bar {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

/* Steps Container */
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
    width: 100%;
}

/* Progress Line */
.progress-line {
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #E5E5E5;
    z-index: 1;
}

.progress-line {
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0px;
    height: 4px;
    background-color: #E5E5E5;
    z-index: 1;
    top: 75%;
}

/* For Step 1 active, fill 0% (no fill yet) */
.progress-fill{
	background-color: #b151fa;
    /*height: 4px; */
}
.progress-fill.col-33 {
    width: 33.3%;
}

.progress-fill.col-66 {
    width: 66.6%;
}
.progress-fill.col-100 {
    width: 100%;
}



/* For Step 2 active, use: width: 50% */
/* For Step 3 active, use: width: 100% */

/* Individual Step */
.step{
    display: flex;
    flex-direction: inherit;
    position: relative;
    z-index: 2;
    flex: 1;
    gap: 10px;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: transparent;
    z-index: 1;
}

/* Step Circle */
.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 2px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #999999;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Active Step */
.step.active .step-circle {
    border-color: #8A2BE2;
    background-color: #8A2BE2;
    color: #FFFFFF;
}

/* Completed Step (if needed for future steps) */
.step.completed .step-circle {
    border-color: #8A2BE2;
    background-color: #8A2BE2;
    color: #FFFFFF;
}

/* Step Label */
.step-label {
    font-size: 22px;
    font-weight: 500;
    color: #999999;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.5;
    font-family: 'Work Sans';
    font-weight: 600;
}

.step.active .step-label {
    color: #8A2BE2;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {

	.frameish-shop-title {
		font-size: 26px !important;
		font-weight: 800;
		color: #000;
		margin:0 auto;
		margin-bottom: 20px;
		line-height: 1.2;
		max-width:720px;
	}
	.product-cart-content{
		flex-direction:column;
	}
	.product-cart-content .left-box,
	.product-cart-content .right-box{
		width:100% !important;
	}
	form.wc-block-components-form.wc-block-checkout__form{
		padding:0px 15px !important;
	}
    .frameish-progress-bar {
        padding: 0;
        margin-bottom: 20px;
    }

    .progress-steps {
        padding-bottom: 16px;
		overflow:hidden;
    }

    .step-label {
        font-size: 12px;
    }

    .step-circle {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .progress-line {
        left: 0px;
        right: 0px;
    }
	.step {
		display: flex;
		flex-direction: inherit;
		position: relative;
		z-index: 2;
		flex: 1;
		gap: 5px;
		align-items: center;
		justify-content: center;
	}
	.step-circle{
		margin:0;
	}
}

@media (max-width: 480px) {
    .step-label {
        font-size: 11px;
    }

    .progress-line {
        left: 20px;
        right: 20px;
    }
}

.product-cart-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}
.product-cart-content .left-box {
    width: 70%;
}
.product-cart-content .left-box table.shop_table {
    border: 0px;
    margin: 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 20px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}
.product-cart-content .right-box{
    border: 0px;
    margin: 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 20px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.product-cart-content .cart-total-box, .product-cart-content .cart-collaterals{
    padding: 20px;
}
.product-cart-content table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead{
    background: #b151fa;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px;
    color: #fff !important;
    font-size: 20px !important;
    font-family: 'Work Sans' !important;
    font-weight: 400 !important;
}

table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td {
    padding: 20px 14px;
}
.product-cart-content table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead th{
    color: #fff !important;
    font-size: 20px !important;
    font-family: 'Work Sans' !important;
    font-weight: 400 !important;
}
table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead th:first-child{
	border-top-left-radius:20px !important;
}
table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead th:last-child{
	border-top-right-radius:20px !important;
}

.product-cart-header {
    background: #B151FA;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    padding: 15px 30px;
}

.product-cart-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: #fff !important;
    font-family: 'Work Sans';
}

.cart-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.product-cart-content .right-box {
    width: 30%
}

button[name='apply_coupon'] {
    padding: 10px 20px !important;
    color: #fff !important;
    background-color: #b151fa !important;
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}
.coupon {
    display: flex;
    align-items: center;
    justify-content: center;
}
button.button[name="update_cart"] {
    border: 1px solid #b151fa;
    border-radius: 50px;
    padding: 10px 30px !important;
    background: #fff;
    font-size: 18px;
    font-family: 'Work Sans';
    font-weight: 400;
    color: #000;
}

input#coupon_code {
    padding: 10px;
    border: 1px solid #ddd !important;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px !important;
}

input#coupon_code:focus, input#coupon_code:active, input#coupon_code:focus-visible{
    border: 1px solid #b151fa !important;
    box-shadow: none !important;
    background: none;
    outline: none;
}
a.checkout-button.button.alt.wc-forward {
    background: #b151fa;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Work Sans';
    color: #ffff;
	transition: all .3s ease-in-out;
    cursor: pointer !important;
    outline: none !important;
    padding: 12px 30px !important;
    font-family: "GigaSans", sans-serif !important;
    line-height: 1.3 !important;
	box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.4);
}

a.checkout-button.button.alt.wc-forward:hover {
   box-shadow:none !important;
}


h2.wc-block-components-title.wc-block-components-checkout-step__title {
    font-size: 22px;
    text-align: left;
    color: #000;
}
.wc-block-components-checkout-order-summary__title{
    margin: 0 !important;
    padding: 10px;
    background: #b151fa;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    color: #fff;
    font-family: 'Work Sans';
}
.wc-block-components-checkout-order-summary__title-text{
	margin:0 !important;
}
.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url]{
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 50px !important;
    box-sizing: border-box;
    color: #2b2d2f !important;
    font-family: inherit;
    font-size: inherit;
    font-size: 16px;
    font-style: inherit;
    font-weight: inherit;
    height: 50px;
    padding: 10px 25px !important;
    letter-spacing: inherit;
    line-height: inherit;
    line-height: 26px;
    margin: 0;
    min-height: 0;
    padding: 16px 12px;
    text-decoration: inherit;
    text-transform: inherit;
    width: 100%;
	outline:none !important;
}
.wc-block-components-form .wc-block-components-text-input.is-active input[type=email], .wc-block-components-form .wc-block-components-text-input.is-active input[type=number], .wc-block-components-form .wc-block-components-text-input.is-active input[type=password], .wc-block-components-form .wc-block-components-text-input.is-active input[type=tel], .wc-block-components-form .wc-block-components-text-input.is-active input[type=text], .wc-block-components-form .wc-block-components-text-input.is-active input[type=url], .wc-block-components-text-input input:-webkit-autofill, .wc-block-components-text-input.is-active input[type=email], .wc-block-components-text-input.is-active input[type=number], .wc-block-components-text-input.is-active input[type=password], .wc-block-components-text-input.is-active input[type=tel], .wc-block-components-text-input.is-active input[type=text], .wc-block-components-text-input.is-active input[type=url]{
	padding-top:28px !important;
}
.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label{
	left:25px !important;
}
.wc-blocks-components-select .wc-blocks-components-select__select{
    appearance: none;
    background: none;
    border: 1px solid #ddd !important;
    border-radius: 50px !important;
    box-sizing: border-box;
    color: #2b2d2f;
    font-family: inherit;
    font-size: inherit;
    font-size: 16px;
    font-style: inherit;
    font-weight: inherit;
    height: 50px;
    letter-spacing: inherit;
    line-height: inherit;
    line-height: 25px;
    padding: 16px 20px 0px !important;
    text-decoration: inherit;
    text-transform: inherit;
    width: 100%;
	outline:none !important;
}
.wc-blocks-components-select .wc-blocks-components-select__label{
	left:20px !important;
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted{
    border-radius: 10px !important;
    box-shadow: 0px 0px 10px 0px rgba(174, 80, 246,0.5)!important;
}
span.wc-block-components-checkbox__label, span.wc-block-components-checkbox__label a{
    font-size: 15px !important;
}
.wc-block-components-checkbox.wc-block-components-payment-methods__save-card-info {
    margin-top: 15px;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link){
	 background: #b151fa;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Work Sans';
    color: #ffff;
	transition: all .3s ease-in-out;
    cursor: pointer !important;
    outline: none !important;
    padding: 12px 30px !important;
    font-family: "GigaSans", sans-serif !important;
    line-height: 1.3 !important;
	box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.4);
	outline:none !important;
	min-height:1em !important;
	border:0px !important;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover {
   box-shadow:none !important;
}

@media (max-width:767px){
	h2.wc-block-components-title.wc-block-components-checkout-step__title {
		font-size: 18px;
		text-align: left;
		color: #000;
	}
}

.woocommerce-order {
    text-align: left;
}
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received,
section.woocommerce-order-details h2,
section.woocommerce-customer-details h2 {
    font-size: 24px !important;
    font-family: 'Work Sans';
    font-weight: 600;
	margin-bottom:20px;
}

.woocommerce .woocommerce-customer-details address{
	 border-radius: 10px !important;
    box-shadow: 0px 0px 10px 0px rgba(174, 80, 246,0.5)!important;
}
@media (max-width:767px){
	p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received,
	section.woocommerce-order-details h2,
	section.woocommerce-customer-details h2 {
		font-size: 18px !important;
		font-family: 'Work Sans';
		font-weight: 600;
		margin-bottom:20px;
	}
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead{
	 background: #b151fa;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px;
    color: #fff !important;
    font-size: 20px !important;
    font-family: 'Work Sans' !important;
    font-weight: 400 !important;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody tr td {
    padding: 20px 14px;
}
table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead th{
    color: #fff !important;
    font-size: 20px !important;
    font-family: 'Work Sans' !important;
    font-weight: 400 !important;
}
table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead th:first-child{
	border-top-left-radius:20px !important;
}
table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead th:last-child{
	border-top-right-radius:20px !important;
}
table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody tr td:first-child {
    width: 75%;
}
table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody tr td:last-child {
    text-align:right;
}
.woocommerce-order table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details{
	border:0px solid !important;
}
.woocommerce table.shop_table tfoot th, .woocommerce table.shop_table tfoot td{
	text-align:right !important;
	border-top:0px solid !important;
}
.woocommerce table.shop_table tfoot th:first-child, .woocommerce table.shop_table tfoot td:first-child{
	border-top:1px solid rgba(0,0,0,.1)
}

@media (max-width:767px){
	.woocommerce ul.order_details li{
		margin-bottom:15px !important;
		border-right:0px !important;
	}
}

.woocommerce-notices-wrapper {
    display: none;
}
