/* Core Website by Yasir - Compact and Production-Ready Design */

/* General Form Styling */
.bundle_form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Bundled Product Item Styling - Ultra Compact */
.bundled_product_summary {
    display: flex;
    align-items: center;
    padding: 5px;
    margin-bottom: 5px;
    background-color: #fff;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bundled_product_summary:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Product Image Styling - Very Small */
.bundled_product_images {
    flex: 0 0 12%;
    margin-right: 5px;
}

.bundled_product_image img {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.bundled_product_image:hover img {
    opacity: 0.85;
}

/* Product Details Styling - Compact */
.details {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Checkbox Area Styling - Ultra Compact and Usable */
.bundled_product_optional_checkbox {
    display: flex;
    align-items: center;
    padding: 2px 5px;
    margin: 0;
    font-size: 0.75rem;
    color: #2c3e50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.bundled_product_checkbox {
    margin-right: 5px;
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.bundled_product_optional_checkbox .price {
    margin-left: 5px;
    font-weight: 500;
    color: #e74c3c;
}

.bundled_product_optional_checkbox .price_wrapper {
    display: inline;
}

.bundled_product_optional_checkbox .woocommerce-Price-amount {
    font-size: 0.75rem;
}

.bundled_product_optional_checkbox .bundled_item_price_quantity {
    font-size: 0.7rem;
    color: #7f8c8d;
    margin-left: 3px;
}

/* Product Title Styling - Very Small */
.bundled_product_title {
    font-size: 0.85rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bundled_product_title a {
    text-decoration: none;
    color: #3498db;
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Remove Description */
.bundled_product_excerpt {
    display: none;
}

/* Bundle Price and Button Section */
.bundle_wrap {
    padding: 10px;
    text-align: center;
}

.bundle_price {
    font-size: 1.4rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

.bundle_availability {
    font-size: 0.85rem;
    color: #27ae60;
    margin-bottom: 10px;
}

/* Quantity Wrapper - Compact */
.quantity-wrapper {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.btn-minus, .btn-plus {
    width: 20px;
    height: 20px;
    background-color: #ecf0f1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.btn-minus:hover, .btn-plus:hover {
    background-color: #bdc3c7;
}

.quantity input {
    width: 30px;
    height: 20px;
    text-align: center;
    border: none;
    font-size: 0.85rem;
    color: #2c3e50;
}

/* Add to Cart Button - Clickable and Compact */
.single_add_to_cart_button {
    padding: 6px 15px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.single_add_to_cart_button:hover {
    background-color: #27ae60;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.single_add_to_cart_button.disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
}

/* Error Message Styling - Compact */
.bundle_error .woocommerce-info {
    background-color: #fce4e4;
    border: 1px solid #e74c3c;
    border-radius: 3px;
    padding: 5px;
    color: #e74c3c;
    font-size: 0.75rem;
}

.bundle_error .msg {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Wishlist Button - Compact */
.yith-add-to-wishlist-button-block {
    margin-top: 5px;
}

.yith-wcwl-add-to-wishlist-button a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.yith-wcwl-add-to-wishlist-button a:hover {
    color: #2980b9;
}

/* Cart Layout: Reset default margins and ensure full width */
body.woocommerce-cart .woocommerce {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Main container with flex */
body.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Notices wrapper - always 100% width at top */
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
    flex: 0 0 100%;
    width: 100%;
}

/* Container for form and cart collaterals */
body.woocommerce-cart .woocommerce .cart-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* Cart form - 70% width on desktop */
/*body.woocommerce-cart .woocommerce form.woocommerce-cart-form {*/
/*    flex: 0 0 70%;*/
/*    max-width: 70%;*/
/*}*/

/* Cart collaterals - 30% width on desktop */
/*body.woocommerce-cart .woocommerce .cart-collaterals {*/
/*    flex: 0 0 30%;*/
/*    max-width: 30%;*/
/*    margin: 0;*/
/*}*/

/* Perfume Box Selected Section */
.perfume-box-selected {
    margin-bottom: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.perfume-box-selected h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.perfume-selection, .smoke-perfume-selection {
    margin-bottom: 20px;
}

.perfume-selection h5, .smoke-perfume-selection h5 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #2c3e50;
}

.perfume-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.perfume-table th,
.perfume-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.perfume-table th {
    background: #f5f5f5;
    font-weight: bold;
    font-size: 14px;
}

.perfume-table td {
    font-size: 14px;
    vertical-align: middle;
}

.perfume-table .perfume-thumbnail {
    max-width: 50px;
    height: auto;
    border-radius: 3px;
}

.perfume-table .extra-cost {
    color: #e74c3c;
    font-weight: bold;
}

.total-price {
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    text-align: right;
}

.total-price span {
    color: #2ecc71;
}

/* Hide old configurator styles since it's merged */
.perfume-box-configurator {
    display: none;
}

/* Remove unwanted elements */
.woocommerce-checkout .content h3:not(#ship-to-different-address):before,
.sidebar .widget-title:before,
.sidebar .widget-wrapper h1:before,
.sidebar .widget-wrapper h2:before,
.sidebar .widget-wrapper h3:before,
.sidebar .widget-wrapper h4:before {
    display: none !important;
}

a.attachment-woocommerce_link {
    outline: none;
    border: none;
}

.woocommerce .shop_mode_grid .products ul li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link,
.woocommerce .shop_mode_grid .woocommerce ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link,
.woocommerce .shop_mode_grid ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link,
.woocommerce-page .shop_mode_grid .products ul li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link,
.woocommerce-page .shop_mode_grid .woocommerce ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link,
.woocommerce-page .shop_mode_grid ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link {
    outline: none;
    border: none;
}

/* Responsive Design - Ultra Compact */
@media (max-width: 768px) {
    .bundled_product_summary {
        padding: 4px;
    }

    .bundled_product_images {
        flex: 0 0 15%;
        margin-right: 4px;
    }

    .bundled_product_image img {
        width: 30px;
        height: 30px;
    }

    .bundled_product_title {
        font-size: 0.75rem;
    }

    .bundled_product_optional_checkbox {
        font-size: 0.7rem;
    }

    .bundled_product_checkbox {
        width: 10px;
        height: 10px;
    }

    .quantity-wrapper {
        margin-bottom: 5px;
    }

    .single_add_to_cart_button {
        width: 100%;
        padding: 5px 12px;
    }

    /* Cart responsive */
    body.woocommerce-cart .woocommerce form.woocommerce-cart-form {
        flex: 0 0 100%;
        max-width: 100%;
    }

    body.woocommerce-cart .woocommerce .cart-collaterals {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Perfume table responsive */
    .perfume-table th,
    .perfume-table td {
        padding: 5px;
        font-size: 12px;
    }

    .perfume-table .perfume-thumbnail {
        max-width: 40px;
    }

    .total-price {
        text-align: left;
    }
}

@media only screen and (min-width: 992px) {
    .woocommerce .woocommerce-cart-form table.shop_table .product-remove,
    .woocommerce-page .woocommerce-cart-form table.shop_table .product-remove {
        width: 10px;
    }
}

.woocommerce .woocommerce-cart-form table.shop_table .product-remove,
.woocommerce-page .woocommerce-cart-form table.shop_table .product-remove {
    width: 10px;
}

.woocommerce-page .cart-collaterals .cart_totals {
    width: 90%;
}


/* Core Website by Yasir - Compact and Production-Ready Design */

/* General Form Styling */
.bundle_form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ... (Unchanged bundle styles up to cart layout) ... */

/* Perfume Box Selected Section */
.perfume-box-selected {
    margin: 15px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: 'Arial', sans-serif;
}

.perfume-box-selected h4 {
    margin: 0 0 15px;
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.perfume-selection, .smoke-perfume-selection {
    margin-bottom: 20px;
}

.perfume-selection h5, .smoke-perfume-selection h5 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #34495e;
    font-weight: 500;
}

.perfume-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
}

.perfume-table th,
.perfume-table td {
    padding: 8px 12px;
    text-align: left;
}

.perfume-table th {
    background: #f7f9fc;
    color: #2c3e50;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 2px solid #e0e7ff;
}

.perfume-table td {
    background: #fff;
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f3f5;
    transition: background 0.2s ease;
}

.perfume-table tr:hover td {
    background: #f9fafb;
}

.perfume-table .perfume-thumbnail {
    max-width: 40px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.perfume-table .extra-cost {
    color: #555;
    font-weight: 500;
}

/* Custom Checkbox and Radio */
.custom-checkbox, .custom-radio {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.custom-checkbox input, .custom-radio input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox .checkmark, .custom-radio .radiomark {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.custom-radio .radiomark {
    border-radius: 50%;
}

.custom-checkbox input:checked ~ .checkmark {
    background: #3498db;
    border-color: #3498db;
}

.custom-radio input:checked ~ .radiomark {
    background: #3498db;
    border-color: #3498db;
}

.custom-checkbox .checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-radio .radiomark:after {
    content: '';
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.custom-checkbox input:checked ~ .checkmark:after,
.custom-radio input:checked ~ .radiomark:after {
    display: block;
}

/* Total Price and Buttons */
.perfume-box-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.total-price {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.total-price span {
    color: #27ae60;
}

.button-group {
    display: flex;
    gap: 10px;
}

.perfume-box-button {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.perfume-box-button.add-to-cart {
    background: #3498db;
    color: #fff;
}

.perfume-box-button.buy-now {
    background: #2ecc71;
    color: #fff;
}

.perfume-box-button.add-to-cart:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.perfume-box-button.buy-now:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* Pop-up Styling */
.perfume-box-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideIn 0.3s ease;
}

.popup-message {
    font-size: 16px;
    color: #34495e;
    margin: 0 0 10px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: #34495e;
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Hide old configurator */
.perfume-box-configurator {
    display: none;
}


.woocommerce .shop_mode_grid .products ul li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce .shop_mode_grid .woocommerce ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce .shop_mode_grid ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce-page .shop_mode_grid .products ul li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce-page .shop_mode_grid .woocommerce ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce-page .shop_mode_grid ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link
{
    display: block;
    border: none !important;
    border-color: transparent !important;
}
.header .mini-cart .mini-cart-panel .cart_list li .thumbnail-woocommerce_wrapper:hover img, .header .mini-cart .mini-cart-panel, .header .mini-cart .mini-cart-panel:before, .mobile-header .mini-cart .mini-cart-panel .cart_list li .thumbnail-woocommerce_wrapper:hover img, .mobile-header .mini-cart .mini-cart-panel, .mobile-header .mini-cart .mini-cart-panel:before, .mobile-header-menu-container .mini-cart .mini-cart-panel .cart_list li .thumbnail-woocommerce_wrapper:hover img, .mobile-header-menu-container .mini-cart .mini-cart-panel, .mobile-header-menu-container .mini-cart .mini-cart-panel:before, .content-wrapper .widget_layered_nav_filters ul .chosen a, .content-wrapper .widget_product_tag_cloud .tagcloud .tag-cloud-link, .content-wrapper .widget ul.product_list_widget li a:hover img, .content-wrapper .widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-handle, .block-editor-block-list__layout .widget_layered_nav_filters ul .chosen a, .block-editor-block-list__layout .widget_product_tag_cloud .tagcloud .tag-cloud-link, .block-editor-block-list__layout .widget ul.product_list_widget li a:hover img, .block-editor-block-list__layout .widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-handle, .woocommerce .shop_mode_list .woocommerce-loop-product__wrapper:hover, .woocommerce-page .shop_mode_list .woocommerce-loop-product__wrapper:hover, .checkout_cart_table .product-thumbnail a:hover img, .woocommerce .woocommerce-cart-form table.shop_table a:hover img, .woocommerce-page .woocommerce-cart-form table.shop_table a:hover img, .woocommerce .quantity-wrapper .quantity, .woocommerce .quantity-wrapper.styled .btn-plus, .woocommerce .quantity-wrapper.styled .btn-minus, .single-product.woocommerce div.product .product_meta .tagged_as a, .single-product.woocommerce div.product .pwb-single-product-brands a, .woocommerce div.product .woocommerce-tabs ul.tabs li a, .woocommerce div.product .woocommerce-tabs ul.tabs li a:hover, .single-product.woocommerce div.product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li img.flex-active, .brand-list-wrapper .pwb-az-listing-title, .products-widget ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce .shop_mode_grid ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce-page .shop_mode_grid ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .single-product.woocommerce div.product .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a:before, .single-product.woocommerce div.product .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image a:before, .wc-block-grid__product .wc-block-grid__product-image:before {
    border-color: transparent !important;
    border-top-color: transparent !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .perfume-box-selected {
        padding: 15px;
    }

    .perfume-table th,
    .perfume-table td {
        padding: 6px 8px;
        font-size: 12px;
    }

    .perfume-table .perfume-thumbnail {
        max-width: 35px;
    }

    .perfume-box-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .perfume-box-button {
        width: 48%;
        padding: 6px 10px;
        font-size: 12px;
    }
}


body .icon-container .background svg
{
    display: none !important;
}



.woocommerce .shop_mode_grid .products ul li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce .shop_mode_grid .woocommerce ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce .shop_mode_grid ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce-page .shop_mode_grid .products ul li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce-page .shop_mode_grid .woocommerce ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link, .woocommerce-page .shop_mode_grid ul.products li.product .woocommerce-loop-product__wrapper .attachment-woocommerce_wrapper .attachment-woocommerce_link
{
    display: block !important;
    border: none !important;
}

.cosmecos-icon-box-widget .icon-box-item .icon-box-title-decoration:before {
    display: none !important;
}
	
.single-product.woocommerce div.product .cart {
    margin: 0;
    position: relative;
    z-index: 2;
    display: flex !important;
    flex-wrap: wrap;
}
	
	
	
@media only screen and (min-width: 992px) {
    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
        width: 90%;
    }
}

@media only screen and (min-width: 769px) {
    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
        width: 90%;
    }
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
        width: 90%;
}


.woocommerce-cart-form button[name="update_cart"] {
    display: none !important;
}



.wc-block-components-spinner{
	
}


.wc-block-components-spinner {
    top: 0;
    left: 0;
}




body.page-id-7160 .woocommerce form .form-row .woocommerce-input-wrapper .description{
    display: none !important;
}

body.page-id-7160  .woocommerce .col2-set .col-1,
body.page-id-7160  .woocommerce-page .col2-set .col-1 {
    width: 100%;
    margin: 0 auto;
}

.woocommerce-checkout .content h3:not(#ship-to-different-address):before {
    display: none !important;
}









body.page-id-7160 .woocommerce .col2-set .col-1,
body.page-id-7160 .woocommerce-page .col2-set .col-1 {
    float: left;
    width: 100%;
}
body.page-id-7160 .woocommerce .col2-set:not(:last-child),
body.page-id-7160 .woocommerce-page .col2-set:not(:last-child) {
    display: flex;
    margin: 0 0 70px 0;
    width: 100%;
    padding: 0;
}






