.nav-link {
    font-weight: bold !important;
}

/* ===================================
   SINGLE PRODUCT PAGE STYLES
   =================================== */

/* Product Container */
.single-product-container {
    background: #f8f9fa;
    min-height: 100vh;
}

.single-product-wrapper {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 20px auto;
}

/* Product Main Section */
.product-main-section {
    margin-bottom: 3rem !important;
}

.product-images-section {
    padding-right: 2rem;
}

.product-summary-section {
    padding-left: 2rem;
}

/* Product Images */
.product-image-gallery {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image-gallery:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-image-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
}

.woocommerce-product-gallery__wrapper {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.woocommerce-product-gallery__image:hover img {
    transform: scale(1.05);
}

/* Product thumbnails */
.flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.flex-control-thumbs li {
    list-style: none;
    margin: 0;
    cursor: pointer;
    border-radius: 0;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.flex-control-thumbs li:hover,
.flex-control-thumbs li.flex-active {
    border-color: #007cba;
}

.flex-control-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0;
}


/* Product Title */
.single-product-wrapper h1.product_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: none;
}

/* Product Description */
.single-product-wrapper .woocommerce-product-details__short-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 1.5rem 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 0;
    border-left: 4px solid #007cba;
}

/* Price and Add to Cart Container - Clean Layout */

.price-cart-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 2rem 0;
    padding: 25px;
    background: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.price-section {
    display: flex;
    align-items: center;
    min-width: 200px;
}

.price-section .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.price-section .price .amount {
    font-weight: 700;
}

.price-section .price del {
    color: #95a5a6;
    font-size: 1.8rem;
    margin-right: 10px;
}

.cart-section {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    min-width: 250px;
}

.cart-section form.cart {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: space-evenly;
}

.reset_variations{
    display: none !important; /* Hide reset variations button for cleaner look */
}
#format{
    margin-left: 15px;
}

.cart_totals .shop_table .woocommerce-shipping-totals.shipping{
    display: none;
}

.woocommerce-variation-add-to-cart{
    display: flex;
}

.cart-section .quantity {
    margin: 0;
    display: flex;
    align-items: center;
}

.cart-section .quantity label {
    display: none; /* Hide the quantity label for cleaner look */
}

.cart-section input[type="number"] {
    width: 80px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 0;
    border-right: none;
    font-size: 1rem;
    text-align: center;
    margin: 0;
    height: 50px;
    box-sizing: border-box;
}

.cart-section .single_add_to_cart_button {
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    border: 2px solid #007cba;
    border-left: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
    flex-shrink: 0;
    height: 50px;
    box-sizing: border-box;
    margin: 0;
}

.cart-section .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.4);
}

/* Product Meta */
.single-product-wrapper .product_meta {
    margin-top: 2rem;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 0;
    font-size: 0.95rem;
}

.single-product-wrapper .product_meta > span {
    display: block;
    margin-bottom: 8px;
    color: #666;
}

.single-product-wrapper .product_meta a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
}

.single-product-wrapper .product_meta a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Product Tabs */
.woocommerce-tabs {
    margin-top: 3rem;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.woocommerce-tabs .wc-tabs {
    display: flex;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    border-bottom: 3px solid #007cba;
    list-style: none;
}

.woocommerce-tabs .wc-tabs li {
    flex: 1;
    text-align: center;
    margin: 0;
}

.woocommerce-tabs .wc-tabs li a {
    display: block;
    padding: 20px 15px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.woocommerce-tabs .wc-tabs li.active a,
.woocommerce-tabs .wc-tabs li a:hover {
    background: #ffffff;
    color: #007cba;
    border-bottom-color: #007cba;
}

.woocommerce-tabs .wc-tab {
    padding: 30px;
    line-height: 1.7;
}

.woocommerce-tabs .wc-tab h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Related Products */
.upsells,
.related {
    margin-top: 3rem;
    padding: 30px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.upsells h2,
.related h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 2rem;
}

/* Sale Badge */
.onsale {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-product-wrapper {
        padding: 20px;
        margin: 10px;
        border-radius: 0;
    }

    .product-images-section,
    .product-summary-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .single-product-wrapper h1.product_title {
        font-size: 1.4rem;
    }

    .price-cart-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
    }

    .price-section {
        min-width: auto;
        justify-content: center;
        text-align: center;
    }

    .price-section .price {
        font-size: 1.8rem;
    }

    .cart-section {
        min-width: auto;
        flex-direction: column;
        gap: 15px;
    }

    .cart-section form.cart {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .cart-section .quantity {
        justify-content: center;
    }

    .cart-section input[type="number"] {
        width: 100px;
        border-right: 2px solid #ddd;
        border-radius: 0;
    }

    .cart-section .single_add_to_cart_button {
        width: 100%;
        padding: 18px;
        font-size: 1rem;
        border: 2px solid #007cba;
        border-left: 2px solid #007cba;
        border-radius: 0;
    }

    .woocommerce-tabs .wc-tabs {
        flex-direction: column;
    }

    .woocommerce-tabs .wc-tabs li a {
        padding: 15px;
    }
}

/* ===================================
   SHOP/ARCHIVE PAGES - REMOVE BORDER RADIUS
   =================================== */

/* Remove border radius from all WooCommerce elements */
.woocommerce .button,
.woocommerce button,
.woocommerce input[type="button"],
.woocommerce input[type="submit"],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    border-radius: 0 !important;
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
    border-radius: 0 !important;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    border-radius: 0 !important;
}

.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
    border-radius: 0 !important;
}

.woocommerce .woocommerce-tabs .panel,
.woocommerce-page .woocommerce-tabs .panel {
    border-radius: 0 !important;
}

.woocommerce .select2-container .select2-selection--single,
.woocommerce .select2-container .select2-selection--multiple {
    border-radius: 0 !important;
}

.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce textarea,
.woocommerce select {
    border-radius: 0 !important;
}

/* Product cards in shop */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    border-radius: 0 !important;
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
    border-radius: 0 !important;
}

.woocommerce .star-rating,
.woocommerce-page .star-rating {
    border-radius: 0 !important;
}

/* Remove border radius from cart page elements */
.woocommerce .cart_totals .shop_table,
.woocommerce .checkout .shop_table {
    border-radius: 0 !important;
}

.woocommerce .checkout .woocommerce-billing-fields h3,
.woocommerce .checkout .woocommerce-shipping-fields h3 {
    border-radius: 0 !important;
}

/* Remove border radius from pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border-radius: 0 !important;
}

/* Remove border radius from product gallery */
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    border-radius: 0 !important;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    border-radius: 0 !important;
}

/* ===================================
   HIDE BREADCRUMBS COMPLETELY
   =================================== */

/* Hide all breadcrumb elements - AGGRESSIVE APPROACH */
.woocommerce-breadcrumb,
.breadcrumb,
.breadcrumbs,
nav[aria-label="breadcrumb"],
.woocommerce nav.woocommerce-breadcrumb,
.woocommerce .woocommerce-breadcrumb,
.wc-breadcrumb,
.shop-breadcrumb,
.product-breadcrumb,
nav.breadcrumb,
ol.breadcrumb,
ul.breadcrumb,
div.breadcrumb,
span.breadcrumb,
.breadcrumb-container,
.breadcrumb-wrapper,
.breadcrumb-nav,
[class*="breadcrumb"],
[id*="breadcrumb"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* Hide breadcrumbs in specific containers */
.woocommerce-page .breadcrumb,
.single-product .breadcrumb,
.archive .breadcrumb,
.shop .breadcrumb,
.product-category .breadcrumb,
.product-tag .breadcrumb {
    display: none !important;
}

#billing_country_field {
    display: none;
}

label .optional {
    display: none !important;
}

#billing_type_field .woocommerce-input-wrapper {
    display: flex;
}

#billing_type_field input {
    margin-right: 10px;
}

#billing_company_field, #billing_company_cui_field, #billing_company_reg_field, #billing_contact_person_field, #billing_company_bank_field, #billing_company_account_field {
    display: none;
}

/* Custom billing fields styling for thank you page and admin */
.custom-billing-fields-thankyou {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.custom-billing-fields-thankyou h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #495057;
    font-size: 1.2rem;
    font-weight: 600;
}

.custom-billing-fields-thankyou .shop_table {
    margin-bottom: 0;
    background-color: white;
    border: 1px solid #dee2e6;
}

.custom-billing-fields-thankyou .shop_table th {
    background-color: #f8f9fa;
    font-weight: 600;
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
    width: 40%;
}

.custom-billing-fields-thankyou .shop_table td {
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.custom-billing-fields-admin {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.custom-billing-fields-admin h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.custom-billing-fields-admin p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.custom-billing-fields-admin p:last-child {
    margin-bottom: 0;
}

.widget_shopping_cart_content{
    padding: 20px;
}

.wc_payment_method {
    display: flex;
}

.wc_payment_methods {
    display: flex;
    flex-direction: column;
}

#billing_address_2_field{
    display: none;
}

#billing_postcode_field, #billing_phone_field{
    clear:none;
}

.product_title{
    font-size: 30px;
}


.pt-none{
    padding-top: 0 !important;
    margin-top: 0 !important;
}

@media screen and (max-width: 768px){
    .d-xs-none{
        display: none !important;
    }

    .has-large-font-size{
        font-size: 18px !important;
    }

}

@media screen and (min-width: 768px) and (max-width: 1200px){
    .dd-sm-none{
        display: none !important;
    }

}

.wp-block-list, .single-page-text ul{
    list-style-position: inside;
    text-align: left !important;
}