/*
Theme Name: UniqueLife Premium
Description: Handcrafted Premium Theme - Clean & Professional
Version: 6.1.0
Author: Antigravity
*/

:root {
    --primary: #FF5501;
    --dark: #2B3445;
    --bg: #F6F9FC;
    --white: #ffffff;
    --border: #E8E8E8;
    --font-bn: 'Hind Siliguri', sans-serif;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Inter', var(--font-bn), sans-serif;
    background: #fdfdfd;
    /* Softer light background */
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.section-padding {
    padding: 40px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* HEADER FOUNDATIONS */
/* --- UPDATED HEADER (PC & MOBILE) --- */
.site-header {
    background: var(--white);
    position: relative;
    z-index: 1000;
}

.header-main {
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
}

.pc-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 991px) {
    .pc-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* PC HEADER */
.pc-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo img,
.custom-logo-link img {
    max-height: 55px;
    width: auto;
    display: block;
}

.site-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
}

.header-search {
    flex: 1;
    max-width: 650px;
}

.header-search form {
    display: flex;
    border: 1px solid #FF5501;
    border-radius: 6px;
    overflow: hidden;
    background: #fefefe;
}

.header-search input {
    flex: 1;
    border: none;
    padding: 11px 18px;
    outline: none;
    font-size: 15px;
    background: transparent;
}

.header-search button {
    background: #FF5501;
    color: white;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.header-search button:hover {
    background: #e64a19;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-link {
    font-size: 13.5px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.action-link .icon {
    font-size: 18px;
}

.header-cart-link {
    display: block !important;
}

.cart-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-icon-wrap .icon {
    font-size: 26px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #FF5501;
    color: white;
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border: 1.5px solid white;
}

/* Navigation */
.main-nav {
    background: #FF5501;
    border-bottom: 2px solid #e14d02;
}

.cat-menu {
    display: flex;
    list-style: none;
    padding: 0;
}

.cat-menu li a {
    color: white;
    padding: 14px 22px;
    display: block;
    font-weight: 700;
    font-size: 14px;
    text-transform: capitalize;
}

.cat-menu li div {
    display: flex;
    align-items: center;
}

.cat-menu li a:hover {
    background: rgba(0, 0, 0, 0.08);
}

/* MOBILE HEADER */
.mobile-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 5px;
    /* Increased clickable height */
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Slightly tighter gap */
    min-width: 44px;
    /* Mobile accessibility standard */
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    /* Slightly wider */
    height: 3px;
    /* Slightly thicker for better visibility */
    background: #333;
    border-radius: 2px;
}

.mobile-only {
    position: relative;
    z-index: 1001;
}

.mobile-search-row .header-search {
    max-width: 100%;
}

.mobile-search-row .header-search form {
    background: #fff;
    border: 1px solid #FF5501 !important;
}

.mobile-search-row .header-search input {
    padding: 12px 15px;
}

/* Mobile Drawer Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
}

.mobile-menu-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--primary);
    background: #f9f9f9;
}

.drawer-header span {
    font-weight: 800;
    font-size: 18px;
    color: #333;
}

.close-drawer {
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #FF5501;
    line-height: 1;
}

.mobile-cat-menu {
    list-style: none;
    padding: 10px 0;
}

.mobile-cat-menu li a {
    display: block;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 700;
    color: #444;
    border-bottom: 1px solid #f2f2f2;
}

/* HOMEPAGE */
.hero-slider {
    margin-top: 20px;
    position: relative;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    width: 100%;
    animation: fade 1.5s;
}

.slide.active {
    display: block;
}

.slider-img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.slider-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary);
}

.slider-placeholder {
    background: linear-gradient(135deg, #FF5501, #2B3445);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slider-placeholder h2 {
    font-family: var(--font-bn);
    font-size: 40px;
    margin-bottom: 10px;
}


.section-title {
    font-family: var(--font-bn);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 3px;
    background: var(--primary);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 20px;
}

.cat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cat-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 10px;
}

.cat-card span {
    font-family: var(--font-bn);
    font-weight: 700;
    font-size: 14px;
}

/* WOOCOMMERCE PRODUCT CARDS */
.woocommerce ul.products li.product {
    background: white !important;
    padding: 10px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #f0f0f0 !important;
    transition: 0.3s;
    text-align: center !important;
    overflow: hidden;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-5px);
}

/* Sale Badge Style from Image */
.woocommerce span.onsale {
    background-color: #EF4444 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    min-height: unset !important;
    line-height: 1 !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    right: auto !important;
    margin: 0 !important;
}

/* Product Title */
.woocommerce-loop-product__title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #4b5563 !important;
    margin: 15px 0 10px !important;
    font-family: var(--font-bn);
    line-height: 1.4 !important;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Price Styling */
.price {
    color: #FF5501 !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    display: block !important;
    margin-bottom: 12px !important;
}

.price del {
    color: #9ca3af !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    margin-left: 8px;
}

.price ins {
    text-decoration: none !important;
    color: #FF5501 !important;
}

/* Add to Cart Button Styling from Image */
.button.add_to_cart_button {
    background: #FF5501 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-weight: 700 !important;
    width: 100% !important;
    text-align: center;
    margin-top: 5px !important;
    font-family: var(--font-bn) !important;
    font-size: 16px !important;
    border: none !important;
    cursor: pointer;
    display: block !important;
}

.button.add_to_cart_button:hover {
    background: #E64A19 !important;
    transform: scale(1.02);
}

/* --- MODERN & CLEAN CHECKOUT DESIGN --- */
:root {
    --poppins: 'Poppins', sans-serif;
    --soft-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

form.checkout {
    display: flex !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
    font-family: var(--font-bn), var(--poppins);
}

/* Card Style Sections */
.checkout-left-column,
.checkout-right-column {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: var(--soft-shadow) !important;
    border: 1px solid #f0f0f0 !important;
    overflow: hidden;
}

.checkout-left-column {
    flex: 1 !important;
    padding: 30px !important;
}

.checkout-right-column {
    flex: 0 0 420px !important;
    padding: 0 !important;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.checkout-right-column h3 {
    padding: 20px 25px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #222;
    border-bottom: 2px solid #f8f8f8;
    background: #fff;
    margin: 0 !important;
    font-family: var(--font-bn);
}

/* Hide WooCommerce default summary title and headers */
#order_review_heading,
.checkout-right-column .shop_table thead tr:not(.checkout-header-row) {
    display: none !important;
}

.woocommerce-billing-fields__field-wrapper {
    padding: 0 !important;
}

.woocommerce-checkout .form-row label {
    font-family: var(--poppins), var(--font-bn);
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #444 !important;
    margin-bottom: 8px !important;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout textarea {
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    height: 50px !important;
    padding: 0 15px !important;
    font-size: 15px !important;
    background: #fafafa !important;
    transition: 0.3s;
    font-family: var(--poppins);
}

.woocommerce-checkout input:focus {
    border-color: #FF5501 !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(255, 85, 1, 0.1) !important;
    outline: none !important;
}

/* Shipping/Payment Selection UI on Left */
.checkout-shipping-methods-left,
.checkout-payment-methods-left {
    padding: 0;
    margin-top: 30px !important;
}

.checkout-shipping-methods-left h3,
.checkout-payment-methods-left h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #222;
    margin-bottom: 15px !important;
    font-family: var(--font-bn);
}

.checkout-shipping-methods-left ul#shipping_method li {
    background: #fff !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin-bottom: 10px !important;
    transition: 0.2s;
    font-family: var(--font-bn);
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.shipping-dropdown-wrap {
    position: relative;
    width: 100%;
    margin: 10px 0;
}

.custom-select-pro {
    appearance: none;
    width: 100%;
    padding: 15px 18px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-bn);
    color: #333;
    background-color: #fcfcfc;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.custom-select-pro:focus {
    outline: none;
    border-color: #FF5501;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(255, 85, 1, 0.08);
}

.shipping-dropdown-wrap::after {
    content: "▼";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #888;
    font-size: 12px;
}

.custom-select-pro:hover {
    border-color: #ddd;
}

/* === CHECKOUT TABLE 4-COLUMN LAYOUT === */
.col-delete,
.shop_table thead .col-delete,
.shop_table .product-name {
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    text-align: center !important;
    padding: 8px 4px !important;
    vertical-align: middle !important;
}

.col-product {
    text-align: left !important;
    font-size: 12px !important;
    line-height: 1.5;
    padding: 10px 8px !important;
    vertical-align: middle !important;
}

.col-qty,
.shop_table .product-total {
    width: 110px !important;
    min-width: 110px !important;
    text-align: center !important;
    padding: 8px 6px !important;
    vertical-align: middle !important;
}

.col-price {
    width: 85px !important;
    min-width: 85px !important;
    font-weight: 700;
    color: #222;
    text-align: center !important;
    padding: 8px 6px !important;
    vertical-align: middle !important;
    font-size: 14px;
}

.woocommerce-checkout-review-order-table tbody tr {
    border-bottom: 1px solid #f5f5f5;
}

.shop_table td.product-name,
.shop_table td.product-total {
    padding: 10px 6px !important;
}

/* === QUANTITY STEPPER === */
.checkout-item-qty {
    display: inline-flex !important;
    align-items: center !important;
    border: 1.5px solid #ddd !important;
    border-radius: 6px !important;
    height: 34px !important;
    width: 90px !important;
    margin: 0 auto !important;
    background: #fff !important;
    overflow: hidden !important;
}

.qty-btn {
    width: 28px !important;
    min-width: 28px !important;
    height: 100% !important;
    border: none !important;
    background: #f7f7f7 !important;
    cursor: pointer !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #444 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important;
    transition: background 0.2s, color 0.2s !important;
}

.qty-btn:hover {
    background: #FF5501 !important;
    color: #fff !important;
}

.qty-val-box,
span.qty-val-box {
    flex: 1 !important;
    border-left: 1.5px solid #eee !important;
    border-right: 1.5px solid #eee !important;
    line-height: 34px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #222 !important;
    display: block !important;
}

/* === DELETE BUTTON === */
.checkout-remove-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    background: #fff0f0 !important;
    color: #e53e3e !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.2s !important;
    border: 1.5px solid #ffd5d5 !important;
}

.checkout-remove-btn:hover {
    background: #e53e3e !important;
    color: #fff !important;
    transform: scale(1.1) !important;
}

/* === PRODUCT META === */
.checkout-item-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    line-height: 1.4;
}

.checkout-item-image img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 6px;
    border: 1px solid #eee;
    object-fit: cover;
}

.product-title {
    font-size: 12px;
    color: #444;
    line-height: 1.5;
}

/* Tfoot alignment */
.shop_table tfoot th {
    text-align: right !important;
    padding-right: 15px !important;
}

.shop_table tfoot td {
    text-align: center !important;
    padding: 12px 10px !important;
    font-weight: 700;
    width: 90px !important;
    min-width: 90px !important;
}

/* Shipping summary cleanup - Hide selection from Right Column */
.checkout-right-column .shipping #shipping_method input,
.checkout-right-column .shipping #shipping_method li:not(:has(input:checked)) {
    display: none !important;
}

.checkout-right-column .shipping #shipping_method li {
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
    list-style: none !important;
    background: transparent !important;
    text-align: right !important;
    display: block !important;
}

.checkout-right-column .shipping #shipping_method li label {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #444 !important;
    font-family: var(--poppins), var(--font-bn);
}

/* Highlighting Totals */
.order-total th,
.order-total td {
    background: rgba(255, 85, 1, 0.05) !important;
    padding: 15px 10px !important;
    border-top: 2px solid #FF5501 !important;
}

.order-total th {
    font-weight: 800 !important;
    color: #222 !important;
}

.order-total td .amount {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #FF5501 !important;
}

/* Place Order Button */
#place_order {
    background: #FF5501 !important;
    color: #fff !important;
    width: 100% !important;
    margin: 15px 0 0 !important;
    padding: 18px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(255, 85, 1, 0.2) !important;
    transition: 0.3s;
}

#place_order:hover {
    background: #e64d00 !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 85, 1, 0.3) !important;
}

/* Trust Badges */
.checkout-trust-badges {
    text-align: center;
    padding: 20px;
    margin-top: 15px;
    border-top: 1px solid #f0f0f0;
    background: #fbfbfb;
}

.checkout-trust-badges p {
    font-size: 12px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 5px;
}

.badge-icons {
    font-size: 10px;
    color: #999;
    letter-spacing: 0.5px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    form.checkout {
        flex-direction: column !important;
        padding: 0 15px !important;
    }

    .checkout-right-column {
        flex: 1 1 auto !important;
        position: static !important;
        order: -1;
    }

    .checkout-left-column {
        padding: 20px !important;
    }
}

/* Footer fix to match 4 columns */

/* Footer fix to match 4 columns */
.shop_table tfoot th {
    text-align: right !important;
    font-family: var(--font-bn);
    font-size: 16px;
    font-weight: 800;
    color: #333;
    padding-right: 15px !important;
}

.shop_table tfoot td {
    text-align: right !important;
    font-family: var(--font-bn, inherit);
    font-weight: 800;
    font-size: 17px;
    color: #000;
    padding-right: 15px !important;
}

/* Hide Prefix Group Style */
.phone-input-group {
    border: none !important;
    background: none !important;
    height: auto !important;
}

/* Phone prefix fix */
.phone-input-group {
    border: 1px solid #eee !important;
    border-radius: 10px;
    display: flex !important;
    overflow: hidden;
    height: 54px;
    background: #f8f8f8;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.phone-input-group:focus-within {
    background-color: #fff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(255, 85, 1, 0.1) !important;
}

.phone-input-group .prefix {
    background: #f0f0f0;
    padding: 0 15px;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #444;
    border-right: 1px solid #eee;
}

.phone-input-group input {
    border: none !important;
    flex: 1;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 15px !important;
    font-size: 16px !important;
    background: transparent !important;
    outline: none !important;
}

/* Mobile Adaptability */
@media (max-width: 991px) {
    .section-padding {
        padding: 20px 0;
    }

    form.woocommerce-checkout,
    form.checkout {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .checkout-left-column,
    .checkout-right-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 20px;
    }

    .checkout-right-column {
        position: static;
        order: -1;
        /* Show order summary first on mobile for better UX */
        margin-bottom: 10px;
    }

    #place_order {
        font-size: 22px !important;
        padding: 15px !important;
    }

    .checkout-instruction-banner {
        font-size: 16px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

/* --- PREMIUM FOOTER RE-DESIGN --- */
.site-footer {
    background: #fff;
    margin-top: 50px;
    border-top: 1px solid #eee;
}

.footer-features {
    background: linear-gradient(135deg, #2B3445 0%, #1a2233 100%);
    color: white;
    padding: 30px 0;
}

.footer-features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 32px;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
    color: #FF5501;
}

.feature-text span {
    font-size: 13px;
    opacity: 0.8;
}

.footer-main {
    padding: 60px 0;
    background: #ffffff;
}

.footer-main .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-brand .footer-store-name {
    font-size: 32px;
    font-weight: 900;
    color: #FF5501;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.footer-brand .footer-store-name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 4px;
    background: #2B3445;
    border-radius: 2px;
}

.about-col p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.8;
    margin-top: 25px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #2B3445;
    font-weight: 800;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: #FF5501;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 14.5px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: 0.3s;
}

.footer-col ul li a {
    color: #555;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #FF5501;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    background: #f5f5f5;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #2B3445;
    border: 1px solid #eee;
}

.social-icons a:hover {
    background: #FF5501;
    color: white;
    transform: translateY(-5px) rotate(8deg);
    border-color: #FF5501;
    box-shadow: 0 10px 20px rgba(255, 85, 1, 0.3);
}

.copyright-bar {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #777;
    background: #fcfcfc;
    border-top: 1px solid #f1f1f1;
}

.copyright-bar strong {
    color: #2B3445;
}

@media (max-width: 991px) {
    .footer-main .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .footer-col h3::after,
    .footer-brand .footer-store-name::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-features .container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets/small phones */
        gap: 20px 10px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 5px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .footer-main {
        padding: 40px 0;
    }

    .footer-main .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand .footer-store-name {
        font-size: 24px;
    }

    .footer-col h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .footer-col h3::after,
    .footer-brand .footer-store-name::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li {
        justify-content: center;
        font-size: 13.5px;
    }

    .social-icons {
        justify-content: center;
    }

    .copyright-bar {
        padding: 15px 5px;
        font-size: 11.5px;
    }
}

/* Extra small devices fix */
@media (max-width: 480px) {
    .footer-features .container {
        grid-template-columns: 1fr;
        /* 1 column on very small phones */
    }
}

.copyright-bar {
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    background: #fdfdfd;
}

@media (max-width: 991px) {
    .flex-row {
        flex-direction: column;
        text-align: center;
    }
}

body.menu-open {
    overflow: hidden;
}
/* --- PREMIUM ORDER SUCCESS PAGE --- */
.woocommerce-order-received .entry-content,
.woocommerce-thankyou-order-received,
.woocommerce-checkout .woocommerce-order {
    max-width: 800px;
    margin: 60px auto;
    background: #fff;
    padding: 0 !important;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    font-family: var(--font-bn);
}

.success-intro {
    background: #fdfdfd;
    padding: 40px 30px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #27ae60;
    line-height: 1.6;
    border-bottom: 2px dashed #eee;
}

ul.woocommerce-thankyou-order-details {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
    gap: 0 !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    border-bottom: 1px solid #f6f6f6 !important;
}

ul.woocommerce-thankyou-order-details li {
    padding: 25px 15px !important;
    text-align: center !important;
    border-right: 1px solid #f6f6f6 !important;
    font-size: 13px !important;
    color: #888 !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

ul.woocommerce-thankyou-order-details li:last-child {
    border-right: none !important;
}

ul.woocommerce-thankyou-order-details li strong {
    display: block !important;
    margin-top: 5px !important;
    font-size: 18px !important;
    color: #2B3445 !important;
    font-weight: 800 !important;
}

.woocommerce-order-received h2.woocommerce-order-details__title,
.woocommerce-order-received h2.woocommerce-column__title {
    padding: 30px 30px 15px;
    font-size: 20px;
    font-weight: 900;
    color: #2B3445;
    margin: 0;
}

.woocommerce-order-details,
.woocommerce-customer-details {
    padding: 0 30px 40px;
}

.shop_table.order_details {
    width: 100% !important;
    border-collapse: collapse !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 15px;
}

.shop_table.order_details thead th {
    background: #f9f9f9 !important;
    padding: 15px !important;
    font-weight: 800 !important;
    color: #333;
    border-bottom: 1px solid #eee;
}

.shop_table.order_details td, 
.shop_table.order_details th {
    padding: 15px !important;
    border: 1px solid #f4f4f4 !important;
    font-size: 15px;
    text-align: left;
}

.shop_table.order_details tfoot th {
    text-align: right !important;
    font-weight: 800;
    color: #444;
}

.shop_table.order_details tfoot td {
    font-weight: 800;
    color: #FF5501;
    font-size: 20px;
}

.woocommerce-customer-details address,
.woocommerce-column--2.woocommerce-column--shipping-address,
.shipping-address {
    display: none !important;
}

.woocommerce-order-received a.button,
.woocommerce-order-received p a.button {
    background: #FF5501;
    color: white !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    border: none;
    text-decoration: none;
}

@media (max-width: 768px) {
    .woocommerce-thankyou-order-received,
    .woocommerce-checkout .woocommerce-order {
        margin: 20px 15px;
    }
    ul.woocommerce-thankyou-order-details {
        grid-template-columns: 1fr 1fr !important;
    }
    ul.woocommerce-thankyou-order-details li {
        border-bottom: 1px solid #f6f6f6 !important;
        border-right: none !important;
    }
}

/* --- ULTRA PRO ORDER SUCCESS PAGE --- */
.woocommerce-order-received .entry-content,
.woocommerce-thankyou-order-received {
    max-width: 850px;
    margin: 80px auto;
    background: #fff;
    padding: 0 !important;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    font-family: var(--font-bn);
    position: relative;
}

/* Hero Badge */
.success-hero {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 60px 30px;
    text-align: center;
    color: white;
}

.success-hero .icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-hero h1 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.success-hero p {
    font-size: 18px;
    opacity: 0.9;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* Floating Stats Control */
ul.woocommerce-thankyou-order-details {
    display: flex !important;
    justify-content: space-around !important;
    background: #fdfdfd !important;
    border-bottom: 1px solid #eee !important;
    padding: 20px 0 !important;
    margin-top: -30px !important;
    margin-left: 40px !important;
    margin-right: 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    z-index: 10 !important;
    position: relative !important;
}

/* Detail Table Pro */
.woocommerce-order-received .woocommerce-order-details__title {
    text-align: center;
    padding-top: 50px;
    font-size: 24px;
    color: #2B3445;
}

.shop_table.order_details {
    border: none !important;
    margin: 30px !important;
    width: calc(100% - 60px) !important;
}

.shop_table.order_details thead th {
    background: transparent !important;
    border-bottom: 2px solid #f0f0f0 !important;
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
}

.shop_table.order_details tbody tr {
    transition: 0.3s;
}

.shop_table.order_details tbody tr:hover {
    background: #f9f9f9;
}

.shop_table.order_details td {
    padding: 20px 15px !important;
    border: none !important;
    border-bottom: 1px solid #f8f8f8 !important;
}

/* Action Buttons Pro */
.order-success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 40px;
    background: #fdfdfd;
}

.order-success-actions a {
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-continue {
    background: #FF5501;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 85, 1, 0.2);
}

.btn-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 85, 1, 0.3);
}

.btn-support {
    background: #2B3445;
    color: white;
}

/* Hide Address completely */
.woocommerce-customer-details {
    display: none !important;
}

@media (max-width: 768px) {
    ul.woocommerce-thankyou-order-details {
        flex-direction: column !important;
        margin: -20px 20px 0 !important;
    }
    ul.woocommerce-thankyou-order-details li {
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding: 15px !important;
    }
    .order-success-actions {
        flex-direction: column;
    }
}

/* --- COMPACT ULTRA PRO ORDER SUCCESS --- */
.woocommerce-order-received .entry-content,
.woocommerce-thankyou-order-received {
    max-width: 700px; /* Reduced width */
    margin: 40px auto; 
    border-radius: 16px;
}

.success-hero {
    padding: 30px 20px; /* Reduced padding */
}

.success-hero .icon-circle {
    width: 60px; /* Smaller icon circle */
    height: 60px;
    font-size: 30px;
    margin-bottom: 12px;
}

.success-hero h1 {
    font-size: 24px; /* Smaller heading */
    margin-bottom: 10px;
}

.success-hero p {
    font-size: 15px; /* Smaller text */
}

.order-success-actions {
    padding: 25px; /* Reduced padding */
    gap: 15px;
}

.order-success-actions a {
    padding: 12px 25px; /* Smaller buttons */
    font-size: 14px;
}

ul.woocommerce-thankyou-order-details {
    margin-top: -20px !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
}

ul.woocommerce-thankyou-order-details li {
    padding: 15px 10px !important;
}

ul.woocommerce-thankyou-order-details li strong {
    font-size: 15px !important;
}

.shop_table.order_details {
    margin: 20px !important;
    width: calc(100% - 40px) !important;
}

/* --- EXTRA COMPACT ORDER SUCCESS --- */
.woocommerce-order-received .entry-content,
.woocommerce-thankyou-order-received,
.woocommerce-checkout .woocommerce-order {
    margin: 10px auto !important; /* Extremely reduced top margin */
    max-width: 650px !important;
}

.success-hero {
    padding: 20px !important; /* Very tight padding */
}

/* Fix for the white space/extra box above the green area */
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    display: none !important; /* Hide the default WC success message box */
}

.woocommerce-order-received .woocommerce-order-details__title {
    padding-top: 20px !important;
    margin-bottom: 10px !important;
}

.order-success-actions {
    padding: 15px !important;
}

.shop_table.order_details {
    margin: 10px !important;
    width: calc(100% - 20px) !important;
}

ul.woocommerce-thankyou-order-details {
    margin-top: -15px !important;
}

/* Professional table cleanup */
.shop_table.order_details tfoot th, 
.shop_table.order_details tfoot td {
    padding: 10px !important;
}

/* Hide Payment Gateway Description on Success Page */
.woocommerce-order-details + p, 
.woocommerce-thankyou-order-received + p,
.woocommerce-checkout .woocommerce-order p:first-of-type,
.woocommerce-order-received .woocommerce-notice + p {
    display: none !important;
}

/* More absolute targeted hide for any generic text */
section.woocommerce-order-details + p,
.woocommerce-order-received p:contains('Pay with cash') {
    display: none !important;
}

/* Hide Everything except Hero and Actions on Success Page */
.woocommerce-order-details,
.woocommerce-order-received h2,
.woocommerce-customer-details,
section.woocommerce-order-details {
    display: none !important;
}

/* Ensure the hero and actions are the only focus */
.woocommerce-order-received .entry-content {
    padding-bottom: 20px !important;
}

/* Hide Payment Gateway Instructions (e.g. Pay with cash upon delivery) */
.woocommerce-order-received .woocommerce-notice + p,
.woocommerce-thankyou-order-received + p,
section.woocommerce-order-details + p {
    display: none !important;
}

/* Hide Payment Methods and Gateway Instructions completely on Success Page */
.woocommerce-order-received .woocommerce-order > p,
.woocommerce-order-received .woocommerce-order > h2:contains('Payment method'),
.woocommerce-table--order-details tfoot tr:last-child {
    display: none !important;
}

/* More specific selector for COD instructions */
.woocommerce-order-received section.woocommerce-order-details + p {
    display: none !important;
}

/* Final Cleanup for Order Success (Remove Payment Method & Gateway Text) */
.woocommerce-order-received .woocommerce-order > p, 
.woocommerce-order-received .woocommerce-table--order-details tfoot tr:last-child,
.woocommerce-order-received .shop_table.order_details tfoot tr:last-child {
    display: none !important;
}

/* Force hide any instructions after checkout success */
.woocommerce-order-received .woocommerce-thankyou-order-received + p,
.woocommerce-order-received .woocommerce-notice + p {
    display: none !important;
}

/* FORCE SHOW Order Details Table */
.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .shop_table.order_details,
.woocommerce-order-received section.woocommerce-order-details {
    display: block !important;
}

/* Specifically hide only the Payment Gateway instruction text */
.woocommerce-order-received .woocommerce-order > p,
.woocommerce-order-received .woocommerce-order-details + p,
.woocommerce-order-received .woocommerce-thankyou-order-received + p {
    display: none !important;
}

/* Force Full Width for Success Page Content */
.woocommerce-order-received .entry-content,
.woocommerce-thankyou-order-received,
.woocommerce-checkout .woocommerce-order {
    max-width: 1000px !important; /* Increased width for better look */
    width: 95% !important;
}

.shop_table.order_details {
    width: 100% !important;
    margin: 30px 0 !important;
    display: table !important; /* Ensure it stays as a table */
}

.shop_table.order_details th.product-name, 
.shop_table.order_details td.product-name {
    width: 70% !important;
    text-align: left !important;
}

.shop_table.order_details th.product-total, 
.shop_table.order_details td.product-total {
    width: 30% !important;
    text-align: right !important;
}

/* Ensure tfoot (Subtotal, Shipping, Total) also takes full width */
.shop_table.order_details tfoot th {
    width: 70% !important;
    text-align: left !important;
}

.shop_table.order_details tfoot td {
    width: 30% !important;
    text-align: right !important;
}

/* --- PREMIUM ORDER TRACKING PAGE --- */
.woocommerce-order-tracking {
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    text-align: center;
    font-family: var(--font-bn);
}

.woocommerce-order-tracking p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Tracking Form Fields */
form.track_order {
    text-align: left;
}

form.track_order .form-row {
    margin-bottom: 20px;
}

form.track_order label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2B3445;
    font-size: 14px;
}

form.track_order input.input-text {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    transition: 0.3s;
    background: #fdfdfd;
}

form.track_order input.input-text:focus {
    border-color: #FF5501 !important;
    outline: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(255, 85, 1, 0.08);
}

/* Tracking Button */
form.track_order button.button {
    width: 100% !important;
    padding: 15px !important;
    background: #FF5501 !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

form.track_order button.button:hover {
    background: #E64A19 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 85, 1, 0.2);
}

/* Success/Error Notices on Tracking Page */
.woocommerce-notice.woocommerce-notice--success,
.woocommerce-notice.woocommerce-notice--error {
    margin-bottom: 30px;
    border-radius: 8px;
    padding: 15px;
}

@media (max-width: 768px) {
    .woocommerce-order-tracking {
        margin: 40px 15px;
        padding: 30px 20px;
    }
}

/* Hide Billing Email Field on Order Tracking Page */
form.track_order p.form-row-last {
    display: none !important;
}

/* Adjust the first row to be full width */
form.track_order p.form-row-first {
    width: 100% !important;
    float: none !important;
}

/* Update tracking form text for single field */
.woocommerce-order-tracking p {
    font-size: 16px;
    font-weight: 600;
}
/* Final fix to hide billing email placeholder correctly */
form.track_order p.form-row-last {
    position: absolute !important;
    left: -9999px !important;
    visibility: hidden !important;
    display: block !important; /* Keep it in the DOM but hidden */
}

/* --- ULTRA PRO SINGLE PRODUCT PAGE --- */
.single-product div.product {
    margin-top: 40px;
    margin-bottom: 80px;
}

/* 1. Gallery Styling */
.single-product .woocommerce-product-gallery {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}

.single-product .woocommerce-product-gallery__image img {
    border-radius: 20px;
    transition: transform 0.5s ease;
}

/* 2. Content (Summary) Styling */
.single-product .summary.entry-summary {
    padding-left: 30px;
}

.product_title.entry-title {
    font-size: 32px;
    font-weight: 900;
    color: #2B3445;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: var(--font-bn);
}

.woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

/* 3. Price Styling */
.single-product p.price {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #FF5501 !important;
    margin-bottom: 25px !important;
}

.single-product p.price del {
    font-size: 20px;
    color: #999;
    margin-right: 10px;
    opacity: 0.7;
}

.single-product p.price ins {
    text-decoration: none;
}

/* Sale Badge Pro */
.single-product span.onsale {
    background: #FF5501 !important;
    border-radius: 8px !important;
    font-family: var(--font-bn);
    padding: 5px 15px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    top: 20px !important;
    left: 20px !important;
}

/* 4. Add to Cart Section */
form.cart {
    display: flex !important;
    gap: 15px !important;
    margin-top: 30px !important;
    align-items: center;
}

.quantity .qty {
    height: 54px !important;
    width: 80px !important;
    border-radius: 12px !important;
    border: 2px solid #f0f0f0 !important;
    font-weight: 700 !important;
}

.single_add_to_cart_button.button {
    height: 54px !important;
    background: #FF5501 !important;
    border-radius: 12px !important;
    padding: 0 40px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 30px rgba(255, 85, 1, 0.25) !important;
    transition: 0.3s !important;
    font-family: var(--font-bn) !important;
}

.single_add_to_cart_button.button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(255, 85, 1, 0.35) !important;
}

/* 5. Trust Badges (Custom inject later) */
.product-trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed #f0f0f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #444;
}

.trust-item i {
    color: #27ae60;
    font-size: 18px;
}

/* 6. Tabs Styling */
.woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 60px;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
}

ul.wc-tabs {
    border: none !important;
    margin-bottom: 30px !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
}

ul.wc-tabs li {
    background: transparent !important;
    border: none !important;
}

ul.wc-tabs li:after, ul.wc-tabs li:before {
    display: none !important;
}

ul.wc-tabs li a {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #999 !important;
    padding: 10px 0 !important;
    border-bottom: 3px solid transparent !important;
    transition: 0.3s !important;
}

ul.wc-tabs li.active a {
    color: #2B3445 !important;
    border-bottom-color: #FF5501 !important;
}

/* 7. Related Products */
section.related.products h2 {
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-bn);
}

@media (max-width: 991px) {
    .single-product .summary.entry-summary {
        padding-left: 0;
        margin-top: 30px;
    }
    form.cart {
        flex-direction: column;
        align-items: flex-start;
    }
    .single_add_to_cart_button.button {
        width: 100% !important;
    }
}

/* --- PRO BUTTONS REFINEMENT --- */
form.cart {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap;
}

/* Buy Now Button */
.buy-now-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 54px;
    background: #2B3445 !important;
    color: white !important;
    border-radius: 12px;
    padding: 0 30px;
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-bn);
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none !important;
}

.buy-now-btn:hover {
    background: #000 !important;
    transform: translateY(-2px);
}

/* Stock status Pro */
.stock.in-stock {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Delivery Info Box */
.product-delivery-info {
    margin-top: 30px;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF5501;
    font-size: 16px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.info-text strong {
    display: block;
    font-size: 14px;
    color: #2B3445;
}

.info-text span {
    font-size: 12px;
    color: #888;
}

/* --- ULTRA PRO SHOPPING KIT --- */
.pro-shopping-kit {
    margin-top: 35px;
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
}

.pro-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.trust-mini {
    text-align: center;
    padding: 10px 5px;
}

.trust-mini i {
    display: block;
    font-size: 20px;
    color: #FF5501;
    margin-bottom: 8px;
}

.trust-mini span {
    font-size: 11px;
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
}

.pro-delivery-details {
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-item-pro {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.delivery-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FF5501;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.delivery-text strong {
    display: block;
    font-size: 16px;
    color: #2B3445;
    font-family: var(--font-bn);
    margin-bottom: 3px;
}

.delivery-text span {
    font-size: 13.5px;
    color: #777;
    line-height: 1.4;
}

@media (max-width: 575px) {
    .pro-trust-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- CATEGORY META STYLING --- */
.pro-product-meta {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px dashed #eee;
    font-size: 14px;
    color: #888;
}

.pro-cat-label {
    font-weight: 800;
    color: #2B3445;
    margin-right: 5px;
}

.pro-product-meta a {
    color: #FF5501;
    text-decoration: none;
    font-weight: 700;
    background: #fff5f2;
    padding: 4px 12px;
    border-radius: 6px;
    margin-left: 5px;
    transition: 0.3s;
}

.pro-product-meta a:hover {
    background: #FF5501;
    color: white;
}

/* --- REFINED DELIVERY INFO --- */
.pro-delivery-details {
    background: #fdfdfd !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
}

.delivery-item-pro {
    display: flex !important;
    align-items: center !important; /* Center align for pro look */
    gap: 15px !important;
}

.delivery-icon {
    width: 40px !important;
    height: 40px !important;
    background: #fff !important;
    color: #FF5501 !important;
    font-size: 16px !important;
    border-radius: 50% !important; /* Circle icons */
    border: 1px solid #f0f0f0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03) !important;
}

.delivery-text strong {
    font-size: 15px !important;
    margin-bottom: 2px !important;
}

.delivery-text span {
    font-size: 13px !important;
    opacity: 0.8;
}

/* Ensure single button width */
.single_add_to_cart_button.button {
    width: 100% !important;
    height: 60px !important;
    font-size: 22px !important;
}

/* --- PRO PRODUCT PAGE: FINAL POLISH --- */
/* 1. Reset standard button labels and keep only 1 ACTION button */
form.cart {
    margin-bottom: 30px !important;
}

.single_add_to_cart_button.button {
    background: #FF5501 !important;
    border-radius: 12px !important;
    font-size: 20px !important;
    letter-spacing: -0.5px;
    box-shadow: 0 10px 25px rgba(255, 85, 1, 0.2) !important;
}

/* 2. Pro Meta (Category) Elegant Styling */
.pro-product-meta {
    margin: 25px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid #FF5501;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-cat-label {
    font-weight: 900;
    color: #2b3445;
    font-size: 15px;
}

.pro-product-meta a {
    background: #FF5501;
    color: #fff !important;
    padding: 5px 15px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

/* 3. Delivery Kit - Fixing Alignment in your screenshot */
.pro-delivery-details {
    padding: 20px !important;
    border: 1px solid #efefef !important;
}

.delivery-item-pro {
    display: flex !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
    align-items: flex-start !important; /* Reset to flex start for better text flow */
}

.delivery-icon {
    width: 32px !important;
    height: 32px !important;
    color: #FF5501 !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
}

.delivery-text strong {
    font-size: 15px !important;
    color: #2B3445 !important;
    display: block !important;
    margin-bottom: 2px !important;
}

.delivery-text span {
    font-size: 13px !important;
    color: #888 !important;
    line-height: 1.4 !important;
}

.delivery-item-pro:last-child {
    margin-bottom: 0 !important;
}
/* --- TRUST FIX: Alignment and Pro Look --- */
.pro-trust-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    text-align: center !important;
}

.trust-mini {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
}

.trust-mini i {
    font-size: 22px !important;
    color: #FF5501 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.trust-mini span {
    font-size: 11.5px !important;
    font-weight: 800 !important;
    color: #333 !important;
    display: block !important;
}

/* Fix for the screenshot alignment */
.pro-delivery-details {
    margin-top: 15px !important;
}

.delivery-icon {
    color: #FF5501 !important;
    font-size: 18px !important;
}

/* --- PRO PRICE & QTY REFINEMENT --- */
.product_title {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: #2B3445 !important;
}

.price {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 25px !important;
}

.price del {
    font-size: 18px !important;
    color: #aeaeae !important;
    order: 1 !important; /* Move old price after new price if needed, or keep order */
}

.price ins, .price > .amount:not(del .amount) {
    font-size: 36px !important; 
    font-weight: 900 !important;
    color: #FF5501 !important;
    text-decoration: none !important;
}

/* Quantity and Buttons Pro Look */
form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.quantity {
    margin: 0 !important;
}

.quantity .qty {
    width: 65px !important;
    height: 50px !important;
    border-radius: 10px !important;
    border: 1px solid #ddd !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    text-align: center !important;
}

.single_add_to_cart_button.button {
    height: 54px !important;
    padding: 0 40px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: none !important;
    flex-grow: 1 !important;
}

/* Trust Badges - One Line Pro */
.pro-trust-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 15px !important;
    overflow-x: auto; /* Scroll on mobile if too many */
    padding-bottom: 10px;
}

.trust-mini {
    flex-direction: row !important;
    gap: 6px !important;
    background: #f8f8f8;
    padding: 6px 12px !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
}

.trust-mini i {
    font-size: 14px !important;
}

.trust-mini span {
    font-size: 11px !important;
    font-weight: 700 !important;
}

/* --- PRO GALLERY REFINEMENT --- */
.woocommerce-product-gallery {
    margin-bottom: 40px !important;
}

/* Main Image Styling */
.woocommerce-product-gallery__wrapper {
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    border: 1px solid #f0f0f0 !important;
}

/* Thumbnails Styling */
.flex-control-thumbs {
    margin-top: 15px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important; /* Margin between thumbs */
    padding: 0 !important;
}

.flex-control-thumbs li {
    width: calc(20% - 7px) !important; /* 5 items row with gap adjustment */
    margin: 0 !important;
    float: none !important;
}

.flex-control-thumbs li img {
    border-radius: 10px !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    padding: 2px !important;
    background: #fff !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.03) !important;
}

.flex-control-thumbs li img:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 15px rgba(255, 85, 1, 0.1) !important;
}

.flex-control-thumbs li img.active-thumb,
.flex-control-thumbs li img.flex-active {
    border-color: #FF5501 !important;
    transform: scale(1.05) !important;
}

@media (max-width: 768px) {
    .flex-control-thumbs li {
        width: calc(25% - 6px) !important; /* 4 items row on mobile */
    }
}

/* --- ULTRA PRO: ONE LINE ACTION ROW --- */
.pro-action-row {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
}

/* Fix Price size and padding */
.pro-action-row p.price {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.price ins, .price > .amount:not(del .amount) {
    font-size: 26px !important; /* Smaller as requested */
    font-weight: 800 !important;
}

.price del {
    font-size: 16px !important;
    color: #999 !important;
}

/* Fix Form.cart size and alignment */
.pro-action-row form.cart {
    display: flex !important;
    align-items: center !important;
    height: 48px !important; /* Fixed height for pro alignment */
    margin: 0 !important;
    flex-grow: 1 !important;
}

.pro-action-row .quantity {
    margin-right: 12px !important;
}

.pro-action-row .quantity .qty {
    height: 44px !important;
    width: 60px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
}

.pro-action-row .single_add_to_cart_button.button {
    height: 46px !important; /* Smaller as requested */
    font-size: 17px !important;
    border-radius: 10px !important;
    padding: 0 25px !important;
    white-space: nowrap !important;
}

/* Pro Meta Refinement (Compact) */
.pro-product-meta {
    padding: 12px 18px !important;
    margin: 15px 0 !important;
    font-size: 13.5px !important;
}

/* Trust Badges - Extra Pro Slim Row */
.pro-trust-row {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.trust-mini {
    background: #fff !important;
    border: 1px solid #eee !important;
    padding: 5px 12px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.trust-mini i {
    font-size: 13px !important;
}

.trust-mini span {
    font-size: 10.5px !important;
}

@media (max-width: 575px) {
    .pro-action-row {
        flex-direction: column !important; /* Row too narrow on mobile */
        align-items: flex-start !important;
    }
}

/* --- ANTIGRAVITY ELITE DESIGN SYSTEM --- */
:root {
    --brand-primary: #FF5501;
    --brand-dark: #1A1A1A;
    --bg-soft: #F9FAFB;
    --text-main: #334155;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.06);
}

/* 1. Global Product Layout Refinement */
.single-product div.product {
    margin-top: 40px !important;
}

/* 2. Super Clean Gallery with Glassmorphism Border */
.woocommerce-product-gallery {
    margin-bottom: 50px !important;
}

.woocommerce-product-gallery__wrapper {
    border-radius: 24px !important;
    background: #fff !important;
    padding: 10px !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    box-shadow: var(--shadow-soft) !important;
}

.flex-control-thumbs {
    margin-top: 25px !important;
    justify-content: center !important;
}

.flex-control-thumbs li img {
    border-radius: 14px !important;
    border: 2px solid transparent !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.flex-control-thumbs li img:hover, 
.flex-control-thumbs li img.active-thumb {
    border-color: var(--brand-primary) !important;
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 10px 20px rgba(255, 85, 1, 0.15) !important;
}

/* 3. Elite Typography & Branding */
.product_title {
    font-size: 34px !important;
    letter-spacing: -1px !important;
    color: var(--brand-dark) !important;
    margin-bottom: 20px !important;
    font-family: 'Poppins', sans-serif !important;
}

.pro-product-meta {
    background: var(--bg-soft) !important;
    border-left: 5px solid var(--brand-primary) !important;
    padding: 15px 25px !important;
    border-radius: 14px !important;
    margin: 25px 0 !important;
}

/* 4. The "One-Line Elite" Action Bar */
.pro-action-row {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.price {
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important; /* Stack for vertical elegance */
    align-items: flex-start !important;
}

.price ins, .price > .amount:not(del .amount) {
    font-size: 38px !important;
    color: var(--brand-primary) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.price del {
    font-size: 16px !important;
    opacity: 0.5 !important;
    margin-bottom: 2px !important;
}

/* Form Styling - Elite Buttons */
form.cart {
    flex-grow: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.quantity .qty {
    background: var(--bg-soft) !important;
    border: none !important;
    height: 56px !important;
    width: 70px !important;
    border-radius: 12px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.single_add_to_cart_button.button {
    background: var(--brand-primary) !important;
    height: 58px !important;
    border-radius: 16px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    box-shadow: 0 12px 30px rgba(255, 85, 1, 0.3) !important;
    transition: 0.3s !important;
    flex-grow: 1 !important;
    border: none !important;
}

.single_add_to_cart_button.button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(255, 85, 1, 0.4) !important;
}

/* 5. Minimalist Trust Items */
.pro-trust-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
}

.trust-mini {
    background: var(--bg-soft) !important;
    padding: 12px !important;
    border-radius: 12px !important;
    border: 1px solid transparent !important;
    transition: 0.3s !important;
}

.trust-mini:hover {
    background: #fff !important;
    border-color: var(--brand-primary) !important;
    transform: scale(1.05) !important;
}

.trust-mini i {
    font-size: 18px !important;
    color: var(--brand-primary) !important;
    margin-bottom: 5px !important;
}

.trust-mini span {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.single-product-summary {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* --- BUTTON POSITION REFINEMENT --- */
.pro-action-row {
    flex-wrap: wrap !important;
    padding: 20px !important;
}

/* Group Price and Quantity on top line */
.price {
    flex-basis: 60% !important;
    margin-bottom: 0 !important;
}

.pro-action-row .quantity {
    flex-basis: 30% !important;
    display: flex !important;
    justify-content: flex-end !important;
    margin: 0 !important;
}

/* Force Button to next line and make it bold */
.pro-action-row form.cart {
    flex-basis: 100% !important;
    margin-top: 15px !important;
    width: 100% !important;
}

.pro-action-row .single_add_to_cart_button.button {
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 575px) {
    .price, .pro-action-row .quantity {
        flex-basis: 100% !important;
        justify-content: flex-start !important;
        margin-bottom: 15px !important;
    }
}

/* --- FINAL ELITE REPAIR: CLEAN ONE-COLUMN LOOK --- */
.pro-action-row {
    display: block !important; /* Switch from flex to block for absolute control */
    background: #fff !important;
    padding: 25px !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05) !important;
    border: 1px solid #f2f2f2 !important;
    text-align: center !important; /* Center everything */
    margin-bottom: 30px !important;
}

/* 1. Price on Top */
.pro-action-row .price {
    display: block !important;
    margin: 0 auto 20px auto !important;
    text-align: center !important;
}

.price ins, .price > .amount:not(del .amount) {
    font-size: 32px !important;
    color: #FF5501 !important;
    font-weight: 800 !important;
}

.price del {
    display: block !important;
    margin-bottom: 5px !important;
    font-size: 15px !important;
    color: #bbb !important;
}

/* 2. Middle Row: Quantity and Label (Optional) */
.pro-action-row form.cart {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}

.pro-action-row .quantity {
    display: inline-block !important;
    margin-bottom: 20px !important;
}

.pro-action-row .quantity .qty {
    height: 50px !important;
    width: 80px !important;
    background: #f8f8f8 !important;
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

/* 3. Bottom Row: Big Bold Button */
.pro-action-row .single_add_to_cart_button.button {
    display: block !important;
    width: 100% !important;
    height: 60px !important;
    background: #FF5501 !important;
    color: #fff !important;
    border-radius: 15px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(255, 85, 1, 0.3) !important;
    transition: 0.3s !important;
    margin: 0 !important;
}

.pro-action-row .single_add_to_cart_button.button:hover {
    transform: translateY(-2px) !important;
    background: #e64d01 !important;
    box-shadow: 0 15px 35px rgba(255, 85, 1, 0.4) !important;
}

/* Fix for mobile */
@media (max-width: 575px) {
    .pro-action-row {
        padding: 20px 15px !important;
    }
}

/* --- REFERENCE IMAGE EXACT MATCH DESIGN --- */

/* 1. Title and Rating */
.single-product .product_title {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 5px !important;
}

.woocommerce-product-rating {
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.woocommerce-product-rating .star-rating {
    font-size: 14px !important;
    color: #ffc107 !important;
}

.woocommerce-product-rating .see-reviews {
    font-size: 13px !important;
    color: #666 !important;
    text-decoration: underline !important;
}

/* 2. Price Styling */
.single-product .price {
    font-size: 24px !important;
    color: #000 !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.single-product .price del {
    font-size: 18px !important;
    color: #ccc !important;
    font-weight: 400 !important;
}

.single-product .price ins {
    text-decoration: none !important;
}

/* 3. SKU Badge */
.pro-sku-badge {
    background: #FF5501 !important;
    color: #fff !important;
    display: inline-block !important;
    padding: 6px 15px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    position: relative !important;
}

.pro-sku-badge::after {
    content: '' !important;
    position: absolute !important;
    right: -10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border-top: 10px solid transparent !important;
    border-bottom: 10px solid transparent !important;
}

/* 4. Brand Info */
.pro-brand-info {
    font-size: 14px !important;
    color: #000 !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.pro-brand-info span {
    font-weight: 400 !important;
    color: #333 !important;
}

/* 5. Quantity Box */
.pro-action-wrapper form.cart {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.quantity {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

.quantity .qty {
    width: 60px !important;
    height: 45px !important;
    border: 1px solid #ccc !important;
    border-left: none !important;
    border-right: none !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 0 !important;
}

/* 6. Action Buttons Row */
.pro-action-wrapper .cart {
    flex-wrap: wrap !important;
}

.single_add_to_cart_button.button {
    background: #FF5501 !important; /* Orange: Add to Cart */
    height: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 5px !important;
    flex: 1 !important;
}

/* We don't have a separate checkout button in default WC cart form, 
   but we can style a custom one if we add it or style siblings */
.pro-action-wrapper .button.checkout-btn {
    background: #E91E63 !important; /* Pink: Order Now */
    height: 50px !important;
    flex: 1 !important;
    border-radius: 5px !important;
}

/* 7. Phone Button */
.pro-phone-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #10854E !important; /* Green */
    color: #fff !important;
    height: 45px !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    gap: 15px !important;
    text-decoration: none !important;
    margin: 15px 0 !important;
    font-size: 18px !important;
}

/* 8. Delivery Blue Box */
.pro-delivery-blue-box {
    background: #D6F2FE !important; /* Light Blue */
    padding: 15px !important;
    border-radius: 5px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 15px !important;
}

.del-blue-icon {
    font-size: 30px !important;
    color: #10854E !important;
}

.del-blue-content {
    font-size: 14px !important;
    color: #000 !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
}

/* --- REFINED REFERENCE MATCH CSS --- */

.pro-action-wrapper form.cart {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    max-width: 450px !important;
}

/* Quantity Container */
.pro-action-wrapper .quantity {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

.pro-action-wrapper .quantity button {
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    outline: none !important;
    transition: 0.2s !important;
}

.pro-action-wrapper .quantity .minus { border-radius: 4px 0 0 4px !important; }
.pro-action-wrapper .quantity .plus { border-radius: 0 4px 4px 0 !important; }

.pro-action-wrapper .quantity button:hover { background: #f5f5f5 !important; }

.pro-action-wrapper .quantity .qty {
    width: 60px !important;
    height: 45px !important;
    border: 1px solid #ccc !important;
    border-left: none !important;
    border-right: none !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

/* Dual Buttons Container */
.pro-action-wrapper .cart {
    flex-wrap: wrap !important;
}

/* Container for actual buttons inside form */
.pro-action-wrapper form.cart button[type="submit"] {
    margin: 0 !important;
}

/* Ensure Add to Cart and Buy Now are side-by-side */
.pro-action-wrapper form.cart {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* Two equal columns */
    grid-template-areas: 
        "qty qty"
        "cart buy";
    gap: 10px !important;
}

.pro-action-wrapper .quantity { grid-area: qty; }
.single_add_to_cart_button { grid-area: cart; }
.checkout-btn { grid-area: buy; }

/* Button Styles */
.single_add_to_cart_button.button {
    background: #FF5501 !important;
    color: #fff !important;
    height: 52px !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: none !important;
    text-transform: none !important;
}

.checkout-btn.button {
    background: #E91E63 !important; /* Deep Pink/Red */
    color: #fff !important;
    height: 52px !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Final cleanup for other blocks */
.pro-sku-badge { border-radius: 0 4px 4px 0 !important; }
.pro-phone-btn { margin-bottom: 20px !important; }

@media (max-width: 480px) {
    .pro-action-wrapper form.cart {
        grid-template-columns: 1fr !important;
        grid-template-areas: 
            "qty"
            "cart"
            "buy";
    }
}

/* --- ANTIGRAVITY ELITE V2: UNIFIED CLEAN DESIGN --- */

/* 1. Meta & SKU */
.pro-sku-badge {
    background: #FF5501;
    color: #fff;
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* 2. The Main Action Card (Price + Qty + Buttons) */
.pro-action-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
    margin-bottom: 30px;
}

/* Price Alignment */
.pro-action-card .price {
    display: flex !important;
    align-items: baseline !important;
    gap: 12px !important;
    margin-bottom: 25px !important;
    justify-content: center;
}

.price ins, .price > .amount:not(del .amount) {
    font-size: 34px !important;
    color: #FF5501 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.price del {
    font-size: 18px !important;
    color: #ccc !important;
}

/* Form Layout */
form.cart {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center;
}

/* Quantity Box Elite */
.quantity {
    display: flex !important;
    align-items: center !important;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 4px;
}

.qty-btn {
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    cursor: pointer !important;
}

.quantity .qty {
    width: 60px !important;
    height: 45px !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

/* Dual Buttons Row */
.pro-action-card .cart {
    width: 100% !important;
}

.pro-action-card .single_add_to_cart_button.button,
.pro-action-card .checkout-btn.button {
    height: 58px !important;
    border-radius: 16px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    width: 100% !important;
    margin: 0 !important;
    border: none !important;
    transition: 0.3s !important;
}

.single_add_to_cart_button.button {
    background: #FF5501 !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(255, 85, 1, 0.25) !important;
}

.checkout-btn.button {
    background: #1A1A1A !important;
    color: #fff !important;
    margin-top: 10px !important;
}

.single_add_to_cart_button.button:hover,
.checkout-btn.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
}

/* 3. Unified Info Grid (Delivery, Call, Trust) */
.pro-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.info-item {
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.info-item:hover {
    border-color: #FF5501;
    transform: translateY(-5px);
}

.info-item i {
    font-size: 22px;
    color: #FF5501;
    margin-bottom: 10px;
}

.info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #1A1A1A;
}

.info-item span {
    font-size: 11px;
    color: #777;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .pro-info-grid {
        grid-template-columns: 1fr;
    }
}

/* --- REVERTING TO PREFERRED REFERENCE DESIGN --- */

/* 1. Reset Container for clarity */
.pro-action-row-new {
    display: block !important;
    margin: 20px 0 !important;
}

/* 2. Price Styling */
.single-product .price {
    font-size: 26px !important;
    color: #FF5501 !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.single-product .price del {
    font-size: 18px !important;
    color: #bbb !important;
    font-weight: 400 !important;
}

/* 3. SKU Badge & Brand */
.pro-sku-badge {
    background: #FF5501 !important;
    color: #fff !important;
    display: inline-block !important;
    padding: 5px 15px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    margin-bottom: 10px !important;
}

.pro-brand-info {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

/* 4. Quantity Box */
.quantity {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
}

.quantity button {
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

.quantity .qty {
    width: 60px !important;
    height: 45px !important;
    border: 1px solid #ccc !important;
    border-left: none !important;
    border-right: none !important;
    text-align: center !important;
    font-weight: 700 !important;
}

/* 5. Action Buttons (Side by Side) */
.pro-action-row-new form.cart {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
}

.single_add_to_cart_button.button {
    background: #FF5501 !important;
    height: 50px !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.checkout-btn.button {
    background: #E91E63 !important; /* Pink-Red like reference */
    color: #fff !important;
    height: 50px !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: none !important;
}

/* 6. Phone Button */
.pro-phone-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #10854E !important; /* Green */
    color: #fff !important;
    height: 48px !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    gap: 12px !important;
    text-decoration: none !important;
    margin: 15px 0 !important;
    font-size: 18px !important;
}

/* 7. Delivery Info Box (Blue) */
.pro-delivery-blue-box {
    background: #E0F4FF !important;
    padding: 15px !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    border: 1px solid #C5E9FA !important;
}

.del-blue-icon {
    font-size: 28px !important;
    color: #10854E !important;
}

.del-blue-content {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

/* --- EXACT IMAGE MATCH: PIXEL PERFECT REFINEMENT --- */

/* 1. Price Refinement (Side by Side, specific colors) */
.single-product .price {
    display: flex !important;
    align-items: baseline !important;
    gap: 15px !important;
    margin: 10px 0 !important;
    font-size: 24px !important;
    color: #000 !important;
    font-weight: 800 !important;
}

.single-product .price del {
    color: #ccc !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
}

.single-product .price ins {
    text-decoration: none !important;
    color: #000 !important;
}

/* 2. SKU Badge: The Ribbon Style */
.pro-sku-badge {
    background: #FF5501 !important;
    color: #fff !important;
    padding: 6px 15px 6px 15px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    position: relative !important;
    margin-bottom: 20px !important;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%) !important;
    min-width: 180px !important;
}

/* 3. Brand Styling */
.pro-brand-info {
    font-size: 14px !important;
    color: #000 !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}
.pro-brand-info span { font-weight: 400 !important; color: #555 !important; }

/* 4. Quantity Box (3-box design) */
.quantity {
    display: flex !important;
    border: 1px solid #000 !important; /* Specific black thin border */
    width: fit-content !important;
    height: 40px !important;
    margin-bottom: 20px !important;
    border-radius: 0 !important;
}
.quantity button {
    width: 40px !important;
    height: 38px !important;
    background: #fff !important;
    border: none !important;
    font-size: 18px !important;
    color: #000 !important;
    cursor: pointer !important;
}
.quantity .minus { border-right: 1px solid #000 !important; }
.quantity .plus { border-left: 1px solid #000 !important; }
.quantity .qty {
    width: 50px !important;
    height: 38px !important;
    border: none !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    background: #fff !important;
}

/* 5. Dual Action Buttons */
.pro-action-row-new form.cart {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
}
.single_add_to_cart_button.button {
    background: #FF5D01 !important; /* Specific orange */
    border-radius: 4px !important;
    height: 48px !important;
    font-size: 17px !important;
}
.checkout-btn.button {
    background: #EE165E !important; /* Specific Magenta/Pink */
    border-radius: 4px !important;
    height: 48px !important;
    font-size: 17px !important;
}

/* 6. Contact Button */
.pro-phone-btn {
    background: #10854E !important;
    color: #fff !important;
    height: 48px !important;
    border-radius: 4px !important;
    font-size: 18px !important;
    box-shadow: none !important;
    margin: 0 0 15px 0 !important;
}

/* 7. Delivery Box (Sky Blue) */
.pro-delivery-blue-box {
    background: #D4F4FF !important;
    border: none !important;
    padding: 12px 15px !important;
    border-radius: 4px !important;
}
.del-blue-icon i { color: #10854E !important; }
.del-blue-content {
    color: #005470 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}

/* 8. Star Rating Patch */
.woocommerce-product-rating .star-rating { color: #ccc !important; }
.woocommerce-product-rating .star-rating::before { color: #ccc !important; }
.woocommerce-product-rating .star-rating span::before { color: #ffc107 !important; }

/* --- REFINING THE PIXEL PERFECT DESIGN --- */

/* 1. Pricing - Larger Currrency Symbol & Bold */
.single-product .price {
    font-size: 28px !important;
    font-weight: 700 !important;
    gap: 15px !important;
    color: #000 !important;
    margin: 15px 0 !important;
}

/* 2. SKU Badge - The Notch Arrow */
.pro-sku-badge {
    background: #FF5501 !important;
    color: #fff !important;
    padding: 8px 25px 8px 15px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    position: relative !important;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%) !important;
    margin-bottom: 25px !important;
    line-height: normal !important;
}

/* 3. Global Text Fine-tuning */
.woocommerce-product-rating { margin-bottom: 25px !important; }
.pro-brand-info { font-size: 15px !important; margin-bottom: 20px !important; }

/* 4. Action Card (Removing the card look for exact match) */
.pro-action-row-new {
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* 5. 3-Box Quantity Design */
.quantity {
    display: flex !important;
    border: 1px solid #777 !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    width: fit-content !important;
}

.quantity button {
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    color: #000 !important;
    border: none !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.quantity .minus { border-right: 1px solid #777 !important; }
.quantity .plus { border-left: 1px solid #777 !important; }

.quantity .qty {
    width: 60px !important;
    height: 45px !important;
    border: none !important;
    text-align: center !important;
    font-weight: 800 !important;
    font-size: 18px !important;
}

/* 6. Contact & Delivery Patch */
.pro-phone-btn {
    height: 54px !important;
    border-radius: 6px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin: 20px 0 !important;
}

.pro-delivery-blue-box {
    margin-top: 5px !important;
    display: flex !important;
    align-items: center !important;
}

.del-blue-icon { flex-shrink: 0 !important; }
.del-blue-content { font-size: 14px !important; }

/* 7. Image Gallery Thumbnails Margin */
.flex-control-thumbs li {
    margin: 5px !important;
}

/* ============================================
   PRODUCT PAGE � FINAL CLEAN STYLES
   ============================================ */

/* Price */
.single-product .price {
    display: flex !important;
    align-items: baseline !important;
    gap: 12px !important;
    margin: 12px 0 18px !important;
}
.single-product .price ins {
    font-size: 30px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
}
.single-product .price del {
    font-size: 18px !important;
    color: #bbb !important;
    font-weight: 400 !important;
}

/* SKU Badge */
.psku-badge {
    display: inline-block;
    background: #FF5501;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 22px 6px 14px;
    clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
    margin-bottom: 20px;
}

/* Quantity box */
.single-product .quantity {
    display: flex !important;
    align-items: center !important;
    border: 1.5px solid #ccc !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    width: fit-content !important;
    margin-bottom: 14px !important;
}
.single-product .quantity .pminus,
.single-product .quantity .pplus {
    width: 42px !important;
    height: 44px !important;
    background: #f7f7f7 !important;
    border: none !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    color: #333 !important;
    line-height: 1 !important;
    transition: background 0.2s !important;
}
.single-product .quantity .pminus { border-right: 1.5px solid #ccc !important; }
.single-product .quantity .pplus  { border-left:  1.5px solid #ccc !important; }
.single-product .quantity .pminus:hover,
.single-product .quantity .pplus:hover { background: #FF5501 !important; color: #fff !important; }
.single-product .quantity .qty {
    width: 56px !important;
    height: 44px !important;
    border: none !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    background: #fff !important;
}

/* Cart form layout */
.single-product form.cart {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    max-width: 460px !important;
}

/* Dual buttons */
.single-product .woocommerce-variation-add-to-cart,
.single-product form.cart > .buttons-row {
    display: flex;
    gap: 10px;
}

.single_add_to_cart_button.button {
    flex: 1 !important;
    height: 52px !important;
    background: #FF5501 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    box-shadow: 0 6px 20px rgba(255,85,1,0.25) !important;
    transition: 0.25s !important;
    text-transform: none !important;
}
.single_add_to_cart_button.button:hover {
    background: #e64a01 !important;
    transform: translateY(-2px) !important;
}

.order-now-btn.button {
    flex: 1 !important;
    height: 52px !important;
    background: #D6006C !important;   /* deep magenta */
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: 0.25s !important;
}
.order-now-btn.button:hover {
    background: #b8005a !important;
    transform: translateY(-2px) !important;
}

/* Phone button */
.pphone-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    background: #0e7d4a !important;
    color: #fff !important;
    text-decoration: none !important;
    height: 52px !important;
    border-radius: 8px !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    margin: 8px 0 !important;
    max-width: 460px !important;
    transition: 0.25s !important;
}
.pphone-btn:hover { background: #0a5e38 !important; }

/* Delivery box */
.pdelivery-box {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: #e4f6ff !important;
    border: 1px solid #b3e3f7 !important;
    border-radius: 8px !important;
    padding: 14px 18px !important;
    max-width: 460px !important;
    margin: 0 0 18px !important;
}
.pdel-icon { font-size: 30px; color: #0e7d4a; flex-shrink: 0; }
.pdel-info strong { display: block; font-size: 14px; color: #004f70; }
.pdel-info span   { font-size: 13px; color: #006b92; }

/* Trust badges */
.ptrust-row {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    max-width: 460px !important;
    margin-top: 4px !important;
}
.ptrust-item {
    flex: 1 1 90px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 12px 8px !important;
    border: 1px solid #eee !important;
    border-radius: 10px !important;
    background: #fff !important;
    transition: 0.2s !important;
}
.ptrust-item:hover { border-color: #FF5501; transform: translateY(-3px); }
.ptrust-item i    { font-size: 18px; color: #FF5501; }
.ptrust-item span { font-size: 11px; font-weight: 700; color: #333; text-align: center; }

/* Gallery thumbs polish */
.flex-control-thumbs { margin-top: 14px !important; display: flex !important; flex-wrap: wrap !important; gap: 8px !important; padding: 0 !important; }
.flex-control-thumbs li { float: none !important; width: 74px !important; margin: 0 !important; }
.flex-control-thumbs li img { border-radius: 8px !important; border: 2px solid transparent !important; transition: 0.3s !important; }
.flex-control-thumbs li img:hover,
.flex-control-thumbs li img.flex-active { border-color: #FF5501 !important; transform: scale(1.06) !important; }

@media (max-width: 600px) {
    .single-product form.cart,
    .pphone-btn,
    .pdelivery-box,
    .ptrust-row { max-width: 100% !important; }
}

/* --- SINGLE BUTTON OVERRIDE --- */
.order-now-btn { display: none !important; } /* Remove second button */

.single_add_to_cart_button.button {
    width: 100% !important;
    height: 56px !important;
    font-size: 19px !important;
    background: #FF5501 !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(255,85,1,0.28) !important;
}

/* --- BIGGER QUANTITY BOX --- */
.single-product .quantity {
    border-radius: 10px !important;
    height: 56px !important;
}

.single-product .quantity .pminus,
.single-product .quantity .pplus {
    width: 56px !important;
    height: 54px !important;
    font-size: 26px !important;
}

.single-product .quantity .qty {
    width: 80px !important;
    height: 54px !important;
    font-size: 22px !important;
}

/* --- QUANTITY SMALL + PRICE SAME LINE, BIG ORDER BUTTON --- */

/* Price + Quantity on same row */
.single-product form.cart {
    display: block !important;
}

/* Make price and quantity sit side by side */
.single-product .price,
.single-product .quantity {
    display: inline-flex !important;
    vertical-align: middle !important;
    margin-right: 15px !important;
}

.single-product .price {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Small quantity box */
.single-product .quantity {
    height: 40px !important;
    margin-bottom: 18px !important;
    border-radius: 7px !important;
}
.single-product .quantity .pminus,
.single-product .quantity .pplus {
    width: 36px !important;
    height: 38px !important;
    font-size: 18px !important;
}
.single-product .quantity .qty {
    width: 44px !important;
    height: 38px !important;
    font-size: 15px !important;
}

/* Price inline with quantity */
.woocommerce-variation-price,
.single-product p.price {
    display: inline-flex !important;
    align-items: center !important;
    margin-bottom: 0 !important;
    margin-right: 12px !important;
}

/* Group price + qty on one line */
.single-product .product_title ~ .price,
.single-product .woocommerce-product-rating ~ .price {
    display: inline-flex !important;
}

/* Bigger Order Button */
.single_add_to_cart_button.button {
    display: block !important;
    width: 100% !important;
    height: 64px !important;
    font-size: 22px !important;
    border-radius: 12px !important;
    margin-top: 5px !important;
    letter-spacing: 0.5px !important;
}

/* Shipping One Line Fix */
.woocommerce-checkout-review-order-table tr.shipping th, .woocommerce-checkout-review-order-table tr.shipping td { white-space: nowrap !important; display: table-cell !important; }
.woocommerce-checkout-review-order-table tr.shipping ul#shipping_method li { display: inline-block !important; white-space: nowrap !important; margin: 0 !important; }
.woocommerce-checkout-review-order-table tr.shipping ul#shipping_method li label { white-space: nowrap !important; display: inline-block !important; }



/* Override Base Button Styles for Qty */
.checkout-item-qty button.qty-btn { outline: none !important; box-shadow: none !important; border-radius: 0 !important; }

