/* ==========================================================================
   Frontend Styles for Steel Nets Key Features & Usage Components
   ========================================================================== */

/* Minimal Bullet List Style (Exact Match for Simple Square Bullet Design) */
.steel-nets-minimal-wrapper {
    background: transparent !important;
    border-radius: 0;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.steel-nets-minimal-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.steel-nets-minimal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.75;
    color: inherit;
    font-weight: 500;
    margin: 0 !important;
    padding: 0 !important;
}

.steel-nets-minimal-list li::before {
    content: '▪';
    font-size: 13px;
    color: inherit;
    margin-top: -1px;
    flex-shrink: 0;
}

[dir="rtl"] .steel-nets-minimal-list li::before {
    margin-left: 2px;
}

.steel-nets-usage-minimal-wrapper {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.steel-nets-usage-minimal-list li {
    line-height: 1.8;
}

/* Key Features Container on Single Product Page */
.steel-nets-key-features-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.steel-nets-key-features-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ea580c 0%, #0284c7 100%);
}

.steel-nets-key-features-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 10px;
}

.steel-nets-key-features-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.steel-nets-icon-shield {
    width: 22px;
    height: 22px;
    fill: #0284c7;
    flex-shrink: 0;
}

.steel-nets-key-features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px 18px;
}

.steel-nets-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    font-weight: 500;
    background: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.25 ease;
}

.steel-nets-feature-item:hover {
    border-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.08);
}

.steel-nets-check-icon {
    width: 18px;
    height: 18px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.steel-nets-check-icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 3;
}

/* Usage Container on Single Product Page & Tabs */
.steel-nets-usage-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.steel-nets-usage-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.steel-nets-usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.steel-nets-usage-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: 4px solid #ea580c;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.25s ease;
}

.steel-nets-usage-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    border-right-color: #0284c7;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transform: translateX(-4px);
}

.steel-nets-usage-badge {
    background: #ea580c;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* RTL Adjustments */
[dir="rtl"] .steel-nets-usage-card {
    border-right: 4px solid #ea580c;
    border-left: 1px solid #e2e8f0;
}

[dir="ltr"] .steel-nets-usage-card {
    border-left: 4px solid #ea580c;
    border-right: 1px solid #e2e8f0;
}

/* Responsiveness */
@media (max-width: 768px) {
    .steel-nets-key-features-list {
        grid-template-columns: 1fr;
    }
    .steel-nets-usage-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Product Gallery Widget Styles (Matching Custom Design Screenshot)
   ========================================================================== */

.steel-nets-gallery-container {
    width: 401px;
    max-width: 100%;
    margin-bottom: 24px;
}

.steel-nets-gallery-main-wrapper {
    width: 401px;
    height: 327px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: #f1f5f9;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    position: relative;
}

.steel-nets-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: opacity 0.25s ease, transform 0.3s ease;
}

.has-zoom-hover .steel-nets-main-image:hover {
    transform: scale(1.03);
}

.steel-nets-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7.2px;
    margin-top: 10px;
    width: 401px;
    max-width: 100%;
}

.steel-nets-thumb {
    width: 94.8px;
    height: 94.8px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f8fafc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 1;
}

.steel-nets-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.25s ease;
}

.steel-nets-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.steel-nets-thumb.is-active {
    border: 2px solid #B49268 !important; /* Active Premium Muted Gold Accent Frame */
    box-shadow: 0 0 0 3px rgba(180, 146, 104, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* ==========================================================================
   Product Attributes Specification Table (Matching Exact User Screenshot)
   ========================================================================== */

.steel-nets-specs-table-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    margin: 0;
}

.steel-nets-specs-table {
    width: 100%;
    border-collapse: collapse !important;
    border: none !important;
    margin: 0 !important;
    font-family: inherit;
}

.steel-nets-specs-table th {
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 16px 24px !important;
    border: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    white-space: nowrap;
}

.steel-nets-specs-table td {
    padding: 16px 24px !important;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

/* Zebra Striping */
.steel-nets-specs-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.steel-nets-specs-table tbody tr:nth-child(odd) {
    background-color: #f8fafc;
}

.steel-nets-specs-table tbody tr:hover {
    background-color: #f1f5f9;
}

/* Alignments */
.steel-nets-specs-table .text-start {
    text-align: left;
}

.steel-nets-specs-table .text-center {
    text-align: center;
}

.steel-nets-specs-table .text-end {
    text-align: right;
}

/* RTL Alignment Fixes */
[dir="rtl"] .steel-nets-specs-table .text-start {
    text-align: right;
}

[dir="rtl"] .steel-nets-specs-table .text-end {
    text-align: left;
}

/* Vertical Layout Style */
.steel-nets-specs-table.vertical-layout th.spec-label {
    width: 35%;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
}

.steel-nets-specs-table.vertical-layout td.spec-value {
    width: 65%;
    color: #334155;
}

/* ==========================================================================
   WhatsApp Order & Product Attributes Options Styling (Specific Layout Rules)
   ========================================================================== */

.steel-nets-order-widget-container {
    width: 100% !important;
    max-width: 650px !important;
    margin: 20px 0 !important;
    font-family: inherit;
    display: block !important;
}

.steel-nets-order-attr-row {
    margin-bottom: 22px !important;
    width: 100% !important;
    display: block !important;
}

.steel-nets-order-attr-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 10px !important;
    width: 100% !important;
}

.steel-nets-order-attr-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.steel-nets-order-attr-selected {
    font-size: 13px !important;
    color: #64748b !important;
}

.steel-nets-order-attr-selected strong {
    color: #475569 !important;
    font-weight: 700 !important;
}

/* Grid Button Option Styles */
.steel-nets-order-grid-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
}

.steel-nets-order-widget-container button.steel-nets-grid-option {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    text-transform: none !important;
}

.steel-nets-order-widget-container button.steel-nets-grid-option:hover {
    border-color: #B49268 !important;
    background: #f8fafc !important;
    color: #1e293b !important;
}

.steel-nets-order-widget-container button.steel-nets-grid-option.is-selected {
    background-color: #B49268 !important;
    border-color: #B49268 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* Dropdown Select Styles */
.steel-nets-order-select-wrapper {
    position: relative !important;
    width: 100% !important;
}

.steel-nets-order-select-input {
    width: 100% !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    background: #ffffff !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    box-shadow: none !important;
    height: 44px !important;
    line-height: 1.2 !important;
}

[dir="rtl"] .steel-nets-order-select-input {
    padding: 12px 16px !important;
}

.steel-nets-order-select-input:focus {
    border-color: #B49268 !important;
}

.steel-nets-select-chevron {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #64748b !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: center !important;
}

[dir="rtl"] .steel-nets-select-chevron {
    right: auto !important;
    left: 16px !important;
}

/* Quantity Row Styles */
.steel-nets-order-qty-row {
    margin: 24px 0 !important;
    display: block !important;
}

.steel-nets-order-qty-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    display: block !important;
    margin-bottom: 10px !important;
}

.steel-nets-order-qty-controls {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
}

.steel-nets-qty-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    overflow: hidden !important;
    width: 135px !important;
    height: 42px !important;
    box-sizing: border-box !important;
}

.steel-nets-qty-input {
    width: 55px !important;
    height: 100% !important;
    border: none !important;
    border-left: 1px solid #cbd5e1 !important;
    border-right: 1px solid #cbd5e1 !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
    padding: 0 !important;
    appearance: textfield !important;
    -moz-appearance: textfield !important;
    outline: none !important;
    background: transparent !important;
    display: block !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
}

.steel-nets-qty-box input.steel-nets-qty-input::-webkit-outer-spin-button,
.steel-nets-qty-box input.steel-nets-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.steel-nets-qty-btn {
    width: 40px !important;
    min-width: 40px !important;
    height: 100% !important;
    border: none !important;
    background: #f8fafc !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.steel-nets-qty-btn:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}

.steel-nets-qty-min-label {
    font-size: 13px !important;
    color: #94a3b8 !important;
}

/* Button Layout Row Styles */
.steel-nets-order-buttons-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 14px !important;
    margin-top: 28px !important;
    width: 100% !important;
}

.steel-nets-order-widget-container button.steel-nets-btn-quote,
.steel-nets-order-widget-container a.steel-nets-btn-direct {
    flex: 1 !important;
    width: 50% !important;
    height: 50px !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-transform: none !important;
}

.steel-nets-btn-quote {
    background-color: #B49268 !important;
    color: #ffffff !important;
}

.steel-nets-btn-direct {
    background-color: #22c55e !important;
    color: #ffffff !important;
}

.steel-nets-btn-quote:hover {
    background-color: #a27f56 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(180, 146, 104, 0.3) !important;
    color: #ffffff !important;
}

.steel-nets-btn-direct:hover {
    background-color: #1ebd5b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3) !important;
    color: #ffffff !important;
}

.steel-nets-order-widget-container svg.whatsapp-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    fill: #ffffff !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

/* ==========================================================================
   WooCommerce Brands Selector Styling (Text & Logo side-by-side)
   ========================================================================== */

.steel-nets-brand-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100% !important;
}

.steel-nets-order-widget-container button.steel-nets-brand-option {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 46px !important;
    padding: 8px 16px !important;
    border: 1px solid #cbd5e1 !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.steel-nets-brand-logo {
    height: 22px !important;
    width: auto !important;
    max-width: 60px !important;
    object-fit: contain !important;
    display: inline-block !important;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.25s ease !important;
    flex-shrink: 0 !important;
}

.steel-nets-brand-option:hover {
    border-color: #B49268 !important;
    background-color: #f8fafc !important;
}

.steel-nets-brand-option:hover .steel-nets-brand-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.steel-nets-brand-option.is-selected {
    background-color: #B49268 !important;
    border-color: #B49268 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

.steel-nets-brand-option.is-selected .steel-nets-brand-logo {
    filter: grayscale(0%) brightness(1.3) contrast(1.2) !important;
    opacity: 1 !important;
}

/* ==========================================================================
   Order Summary Card Styling
   ========================================================================== */

.steel-nets-order-summary-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 24px !important;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.05) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.steel-nets-summary-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    border: none !important;
}

.steel-nets-summary-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
}

.steel-nets-summary-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.steel-nets-summary-label {
    font-size: 14px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.steel-nets-summary-value {
    font-size: 14px !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    text-align: right !important;
}

[dir="rtl"] .steel-nets-summary-value {
    text-align: left !important;
}

/* ==========================================================================
   Popup Order Card/Form Styling (Side-by-side attributes + Full-width submit)
   ========================================================================== */

.steel-nets-popup-container {
    width: 100% !important;
    box-sizing: border-box !important;
}

.steel-nets-popup-inputs-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin-bottom: 20px !important;
    width: 100% !important;
}

.steel-nets-popup-col {
    flex: 1 !important;
    min-width: 130px !important;
    display: flex !important;
    flex-direction: column !important;
}

.steel-nets-popup-input-label {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 8px !important;
    text-align: right !important;
}

[dir="rtl"] .steel-nets-popup-input-label {
    text-align: right !important;
}

.steel-nets-popup-select-wrapper {
    position: relative !important;
    width: 100% !important;
}

.steel-nets-popup-select {
    width: 100% !important;
    height: 44px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    background: #ffffff !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.steel-nets-popup-select-chevron {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #64748b !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: center !important;
}

[dir="rtl"] .steel-nets-popup-select-chevron {
    right: auto !important;
    left: 16px !important;
}

.steel-nets-popup-qty-input {
    width: 100% !important;
    height: 44px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    background: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

.steel-nets-popup-brand-row {
    margin-bottom: 22px !important;
    display: block !important;
    width: 100% !important;
}

.steel-nets-popup-brand-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 10px !important;
    display: block !important;
    text-align: right !important;
}

.steel-nets-popup-brand-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100% !important;
}

.steel-nets-popup-container button.steel-nets-brand-option {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 46px !important;
    padding: 8px 16px !important;
    border: 1px solid #cbd5e1 !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    box-shadow: none !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.steel-nets-popup-container button.steel-nets-brand-option:hover {
    border-color: #B49268 !important;
    background-color: #f8fafc !important;
}

.steel-nets-popup-container button.steel-nets-brand-option.is-selected {
    background-color: #B49268 !important;
    border-color: #B49268 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

.steel-nets-popup-brand-logo {
    height: 22px !important;
    width: auto !important;
    max-width: 60px !important;
    object-fit: contain !important;
    display: inline-block !important;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.25s ease !important;
    flex-shrink: 0 !important;
}

.steel-nets-popup-container button.steel-nets-brand-option:hover .steel-nets-brand-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.steel-nets-popup-container button.steel-nets-brand-option.is-selected .steel-nets-brand-logo {
    filter: grayscale(0%) brightness(1.3) contrast(1.2) !important;
    opacity: 1 !important;
}

.steel-nets-popup-submit-btn {
    width: 100% !important;
    height: 50px !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: none !important;
    background-color: #22c55e !important;
    color: #ffffff !important;
    margin-top: 14px !important;
}

.steel-nets-popup-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3) !important;
    color: #ffffff !important;
}

.steel-nets-popup-submit-btn svg.whatsapp-icon {
    width: 22px !important;
    height: 22px !important;
    fill: #ffffff !important;
    flex-shrink: 0 !important;
}






