    .woocommerce .col2-set::after, 
    .woocommerce .col2-set::before, 
    .woocommerce-page .col2-set::after, 
    .woocommerce-page .col2-set::before {
        display: none;
    }
    
    .woocommerce .col2-set .col-1, 
    .woocommerce-page .col2-set .col-1, 
    .woocommerce .col2-set .col-2, 
    .woocommerce-page .col2-set .col-2 {
        width: 100%;
    }
    
    #content > div > div.woocommerce-MyAccount-content > p {
        font-style: italic;
    }
    
    /* Hide "Thanks for shopping with Naturals Mandi" message and TD */
    .woocommerce-table--order-details tbody td.woocommerce-table__product-purchase-note {
        display: none !important;
    }

    .woocommerce-table--order-details tbody tr.woocommerce-table__product-purchase-note {
        display: none !important;
    }

    .woocommerce-table--order-details .product-purchase-note {
        display: none !important;
    }
    
    /* Premium Order Details Page Design */
    .woocommerce-order {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Order Status Banner - Premium Style */
    .woocommerce-order > p:first-of-type {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #ffffff;
        padding: 24px 32px;
        border-radius: 12px;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }
    
    .woocommerce-order > p mark {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
        padding: 4px 12px;
        border-radius: 6px;
        font-weight: 600;
    }
   
    /* Section Titles */
    .woocommerce-order-details__title,
    .woocommerce-order-details h2,
    .woocommerce-customer-details h2 {
        font-size: 26px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 24px;
        position: relative;
        padding-bottom: 12px;
    }
    
    .woocommerce-order-details__title::after,
    .woocommerce-customer-details h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(135deg, #b87939 0%, #a06a31 100%);
        border-radius: 2px;
    }
    
    /* Order Details Table - Premium Card Style */
    .woocommerce-table--order-details {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        margin-bottom: 40px;
        border: none !important;
    }
    
    /* Remove all default borders */
    .woocommerce-table--order-details thead,
    .woocommerce-table--order-details tbody,
    .woocommerce-table--order-details tfoot,
    .woocommerce-table--order-details tr,
    .woocommerce-table--order-details th,
    .woocommerce-table--order-details td {
        border: none !important;
    }
    
    /* Table Header - Gradient Style */
    .woocommerce-table--order-details thead {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .woocommerce-table--order-details thead th {
        padding: 20px 24px;
        text-align: left;
        font-weight: 700;
        color: #2c3e50;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Table Body - Clean Rows */
    .woocommerce-table--order-details tbody td {
        padding: 24px;
        color: #555555;
        font-size: 15px;
        vertical-align: middle;
        background: transparent !important;
    }
    
    .woocommerce-table--order-details tbody tr {
        background: #ffffff;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .woocommerce-table--order-details tbody tr:not(:last-child) {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .woocommerce-table--order-details tbody tr:hover {
        transform: translateX(4px);
        box-shadow: -4px 0 0 0 #b87939;
    }
    
    /* Product Name Styling */
    .woocommerce-table--order-details .product-name {
        font-weight: 600;
        color: #2c3e50;
        font-size: 16px;
    }
    
    /* Product Meta (Weight, Variations) */
    .woocommerce-table--order-details .wc-item-meta {
        margin-top: 10px;
        padding: 10px 14px;
        background: #f8f9fa;
        border-radius: 8px;
        font-size: 13px;
        color: #777;
        display: inline-block;
    }
    
    .woocommerce-table--order-details .wc-item-meta li {
        list-style: none;
        margin: 4px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .woocommerce-table--order-details .wc-item-meta strong {
        font-weight: 600;
        color: #555;
        min-width: 70px;
    }
    
    .woocommerce-table--order-details .wc-item-meta p {
        margin: 0;
        color: #2c3e50;
        font-weight: 500;
    }
    
    /* Table Footer - Totals with Gradient Background */
    .woocommerce-table--order-details tfoot {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
    
    .woocommerce-table--order-details tfoot tr {
        background: transparent !important;
    }
    
    .woocommerce-table--order-details tfoot th,
    .woocommerce-table--order-details tfoot td {
        padding: 16px 24px;
        font-size: 15px;
        background: transparent !important;
    }
    
    .woocommerce-table--order-details tfoot tr:not(:last-child) {
        border-bottom: 1px solid #e9ecef;
    }
    
    /* Grand Total - Highlighted */
    .woocommerce-table--order-details tfoot .order-total {
        background: linear-gradient(135deg, #b87939 0%, #a06a31 100%);
    }
    
    .woocommerce-table--order-details tfoot .order-total th,
    .woocommerce-table--order-details tfoot .order-total td {
        color: #ffffff !important;
        font-weight: 700;
        font-size: 18px;
        padding: 20px 24px;
    }
    
    /* Payment Method Highlight */
    .woocommerce-table--order-details tfoot .payment_method td {
        color: #b87939;
        font-weight: 600;
    }
    
    /* Order Again Button - Hide */
    .order-again {
        display: none !important;
    }
    
    /* Customer Details Section - Cards Layout */
    .woocommerce-customer-details {
        margin-top: 50px;
    }
    
    .woocommerce-columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 24px;
    }
    
    .woocommerce-column--billing-address,
    .woocommerce-column--shipping-address {
        background: #ffffff;
        padding: 28px 32px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 4px solid #b87939;
    }
    
    .woocommerce-column--billing-address:hover,
    .woocommerce-column--shipping-address:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    }
    
    .woocommerce-column__title {
        font-size: 20px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .woocommerce-customer-details address {
        font-style: normal;
        line-height: 2;
        color: #555;
        font-size: 15px;
    }
    
    .woocommerce-customer-details address p {
        margin: 6px 0;
    }
    
    /* Order Updates Section */
    .woocommerce-OrderUpdates {
        background: #ffffff;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        margin-top: 30px;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .woocommerce table.shop_table {
            display: flex;
            flex-direction: column;
            justify-content: center !important;
            align-items: start !important;
            width: 100%;
        }
        
        .woocommerce-table--order-details tbody {
            width: 100%;
        }
        
        .woocommerce-order > p:first-of-type {
            padding: 20px 24px;
            font-size: 14px;
        }
        
        .woocommerce-order-details__title,
        .woocommerce-customer-details h2 {
            font-size: 22px;
        }
        
        .woocommerce-table--order-details {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        .woocommerce-table--order-details thead {
            display: none;
        }
        
        .woocommerce-table--order-details tbody tr {
            display: block;
            margin-bottom: 20px;
            border: 1px solid #e8e8e8 !important;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .woocommerce-table--order-details tbody tr:hover {
            transform: none;
            box-shadow: none;
        }
        
        .woocommerce-table--order-details tbody td {
            display: block;
            text-align: right;
            padding: 16px 20px;
            border-bottom: 1px solid #f0f0f0 !important;
        }
        
        .woocommerce-table--order-details tbody td:last-child {
            border-bottom: none !important;
        }
        
        .woocommerce-table--order-details tbody td::before {
            content: attr(data-title);
            float: left;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .woocommerce-columns {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }