 #standalone-faq-container {
     --faq-border-color: #eee;
     --faq-text-color: #555;
     --faq-question-font-weight: 600;
     --faq-primary-color: #333;
     --faq-table-bg-header: #f5f5f5;
     --faq-table-bg-cell: #fcfcfc;
     --faq-table-radius: 8px;
     --faq-table-spacing: 4px;
     box-sizing: border-box;
     margin: 40px 10px;
 }

 #standalone-faq-container h2,
 #standalone-faq-container h4,
 #standalone-faq-container h5,
 #standalone-faq-container button,
 #standalone-faq-container p,
 #standalone-faq-container ul,
 .my-prod-faq-table {
     font-family: 'Museo', sans-serif !important;
 }

 #standalone-faq-container *,
 #standalone-faq-container *::before,
 #standalone-faq-container *::after {
     box-sizing: inherit;
 }

 #standalone-faq-container p {
     margin-top: 0;
     margin-bottom: 1rem;
     font-size: 15px;
     line-height: 1.6;
     color: #777;
 }

 #standalone-faq-container p:last-child {
     margin-bottom: 0;
 }

 .my-prod-faq-section {
     margin: 0 auto;
     max-width: 1600px;
     padding: 0;
     background-color: #fff;
     border-radius: 1rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     border: 1px solid var(--faq-border-color, #eee);
     overflow: visible;
 }

 .my-prod-faq-title {
     padding: 25px 30px 30px 30px;
     border-bottom: 1px solid var(--faq-border-color, #eee);
     background-color: #fcfcfc;
 }

 .my-prod-faq-title-heading {
     font-size: 22px;
     font-weight: 600;
     margin: 0;
     color: var(--faq-text-color, #555);
     padding-bottom: 15px;
 }

 .my-prod-faq-subtitle {
     font-size: 15px;
     font-weight: 400;
     color: #777;
     line-height: 1.6;
     margin-top: 15px;
     margin-bottom: 0;
     padding-right: 120px;
 }

 #faq-header {
     position: relative;
     overflow: hidden;
     z-index: 0;
 }

 #faq-header::after {
     content: '?';
     position: absolute;
     right: 30px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 100px;
     font-weight: 700;
     color: var(--faq-border-color, #eee);
     z-index: -1;
     line-height: 1;
 }

 .my-prod-faq-main-layout {
     display: flex;
     flex-wrap: wrap;
     padding: 30px;
 }

 .my-prod-faq-categories {
     flex: 0 0 400px;
     margin-right: 60px;
     align-self: flex-start;
 }

 .my-prod-faq-category-trigger {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     background: #fcfcfc;
     border: 1px solid rgba(0, 0, 0, 0.03);
     border-radius: 16px;
     padding: 16px 24px;
     margin-bottom: 6px;
     text-align: left;
     font-size: 17px;
     color: var(--faq-text-color, #555);
     font-weight: 500;
     cursor: pointer;
     transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
     line-height: 1.5;
     -webkit-font-smoothing: antialiased;
     letter-spacing: 0.01em;
 }

 .my-prod-faq-category-trigger:hover {
     background: #f5f5f5;
     border-color: rgba(0, 0, 0, 0.05);

     color: var(--faq-primary-color, #000);
     transform: translateX(4px);
 }



 .my-prod-faq-category-trigger.active {
     transform: translateX(4px) scale(0.98);
     transition-duration: 0.05s;
     background-color: #ffffff;
     border-color: rgba(0, 0, 0, 0.06);
     box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
     color: var(--faq-primary-color, #000);
     font-weight: 600;
     transform: translateX(4px);
 }

 .my-prod-faq-category-trigger .my-prod-faq-icon {
     opacity: 0;
     transform: translateX(-8px);
     transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
     flex-shrink: 0;
     margin-left: 12px;
 }

 .my-prod-faq-category-trigger.active .my-prod-faq-icon {
     opacity: 1;
     transform: translateX(0);
     color: var(--faq-primary-color, #000);
 }

 .my-prod-faq-questions-list {
     flex: 1;
     min-width: 300px;
     position: relative;
     transition: height 0.4s ease-out;
     overflow: visible;
 }

 .my-prod-faq-category-content {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s linear 0.3s;
 }

 .my-prod-faq-category-content.active {
     position: relative;
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
     transition: opacity 0.3s ease-out 0.1s, transform 0.3s ease-out 0.1s, visibility 0s linear 0s;
 }

 .my-prod-faq-item {
     border-bottom: 1px solid var(--faq-border-color, #eee);
     padding: 10px 20px 10px 0;
     position: relative;
     z-index: 1;
 }

 .my-prod-faq-category-content .my-prod-faq-item:first-child {
     padding-top: 0;
 }

 .my-prod-faq-category-content .my-prod-faq-item:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }

 .my-prod-faq-item h4 {
     margin: 0;
     font-size: 16px;
     font-weight: var(--faq-question-font-weight, 600);
     min-width: 0;
     overflow-wrap: break-word;
 }

 .my-prod-faq-question {
     width: 100%;
     background: none;
     border: none;
     outline: none;
     text-align: left;
     font-size: inherit;
     color: var(--faq-text-color, #555);
     font-weight: var(--faq-question-font-weight, 500);
     cursor: pointer;
     padding: 10px 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     white-space: normal;
     overflow-wrap: break-word;
     min-width: 0;
 }

 .my-prod-faq-btn-text {
     min-width: 0;
     text-align: left;
 }

 .my-prod-faq-question:focus-visible {
     outline: 2px solid #ccc;
     outline-offset: 2px;
 }

 .my-prod-faq-icon {
     transition: transform 0.3s ease;
     flex-shrink: 0;
     margin-left: 15px;
     width: 16px;
     height: 16px;
 }

 .my-prod-faq-answer {
     transition: grid-template-rows 0.4s ease-out;
     padding: 0;
     font-size: 15px;
     color: #777;
     display: grid;
     grid-template-rows: 0fr;
     --check-size: 1.2em;
     --check-color: var(--faq-primary-color, #777);
 }

 .my-prod-faq-answer-content {
     padding: 0 20px 0 0;
     overflow: visible;
     opacity: 0;
     transform: translateY(-10px);
     transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s;
 }

 .my-prod-faq-answer-content.allow-overflow {
     overflow: visible !important;
 }

 .my-prod-faq-item.my-prod-faq-active {
     z-index: 50;
     position: relative;
 }

 .my-prod-faq-item.my-prod-faq-active .my-prod-faq-answer {
     grid-template-rows: 1fr;
 }

 .my-prod-faq-item.my-prod-faq-active .my-prod-faq-question .my-prod-faq-icon {
     transform: scaleY(-1);
 }

 .my-prod-faq-answer a {
     color: var(--faq-primary-color, #333);
     font-weight: 500;
     text-decoration: underline;
     transition: opacity 0.2s;
 }

 .my-prod-faq-answer a:hover {
     opacity: 0.8;
 }

 .my-prod-faq-answer ul {
     padding-left: 0;
     margin: 0;
 }

 .my-prod-faq-answer li {
     position: relative;
     padding-left: 1.8em;
     margin-bottom: .5em;
     list-style: none;
     line-height: 1.5;
 }

 .my-prod-faq-answer li::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0.1em;
     width: 1.4em;
     height: 1.4em;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23777' d='M480 96C515.3 96 544 124.7 544 160L544 480C544 515.3 515.3 544 480 544L160 544C124.7 544 96 515.3 96 480L96 160C96 124.7 124.7 96 160 96L480 96zM160 144C151.2 144 144 151.2 144 160L144 480C144 488.8 151.2 496 160 496L480 496C488.8 496 496 488.8 496 480L496 160C496 151.2 488.8 144 480 144L160 144zM390.7 233.9C398.5 223.2 413.5 220.8 424.2 228.6C434.9 236.4 437.3 251.4 429.5 262.1L307.4 430.1C303.3 435.8 296.9 439.4 289.9 439.9C282.9 440.4 276 437.9 271.1 433L215.2 377.1C205.8 367.7 205.8 352.5 215.2 343.2C224.6 333.9 239.8 333.8 249.1 343.2L285.1 379.2L390.7 234z'/%3E%3C/svg%3E");
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
     opacity: .8;
 }

 .my-prod-faq-answer h5 {
     font-size: 15px;
     font-weight: 600;
     color: #777;
     margin: 24px 0 8px 0;
 }

 .my-prod-faq-answer h5:first-of-type {
     margin-top: 15px;
 }

 .faq-table-wrapper {
     margin: 10px 0;
     width: 100%;
 }

 .my-prod-faq-table {
     width: 100%;
     border-collapse: separate;
     border-spacing: var(--faq-table-spacing, 4px);
     font-size: 13px;
     color: var(--faq-text-color, #555);
     margin: calc(-1 * var(--faq-table-spacing, 4px));
     padding: var(--faq-table-spacing, 4px);
 }

 .my-prod-faq-table th,
 .my-prod-faq-table td {
     padding: 12px 15px;
     text-align: left;
     white-space: nowrap;
     border: none;
     border-radius: var(--faq-table-radius, 8px);
 }

 .my-prod-faq-table th {
     background-color: var(--faq-table-bg-header, #f5f5f5);
     font-weight: 500;
     font-size: 13px;
     color: var(--faq-text-color, #555);
     padding: 10px 15px;
 }

 .my-prod-faq-table td {
     background-color: var(--faq-table-bg-cell, #fcfcfc);
 }

 .my-prod-faq-table thead th {
     text-align: center;
 }

 .my-prod-faq-table tbody td:not(:first-child) {
     text-align: center;
 }

 .my-prod-faq-table .faq-table-free {
     font-weight: 500;
     color: var(--faq-text-color, #555);
 }

 .my-prod-faq-answer-content> :first-child {
     margin-top: 10px;
 }

 .my-prod-faq-answer-content> :last-child {
     margin-bottom: 10px;
 }

 .my-prod-faq-answer-content {
     padding: 0 20px 0 0;
     overflow: hidden;

     opacity: 0;
     transform: translateY(-10px);
     transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s;
 }

 .my-prod-faq-item.my-prod-faq-active .my-prod-faq-answer-content {
     opacity: 1;
     transform: translateY(0);
 }

 .payment-methods-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
     gap: 10px;
     margin-top: 20px;
     margin-bottom: 20px;
     padding: 0;
     position: relative;
     z-index: 5;
 }

 .payment-tile {
     background-color: var(--faq-table-bg-cell, #fcfcfc);
     border: 1px solid var(--faq-border-color, #eee);
     border-radius: var(--faq-table-radius, 8px);
     height: 55px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     transition: all 0.2s ease;
     color: var(--faq-text-color, #555);
 }

 .payment-tile:hover {
     border-color: #ccc;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     z-index: 100;
 }

 .payment-tile svg {
     max-width: 65%;
     max-height: 50%;
     width: auto;
     height: auto;
     transition: transform 0.2s ease;
 }

 .payment-tile[aria-label]::before {
     content: attr(aria-label);
     position: absolute;
     bottom: 100%;
     left: 50%;
     transform: translateX(-50%);
     margin-bottom: 5px;

     background-color: #333;
     color: #fff;
     padding: 5px 10px;
     border-radius: 4px;
     font-size: 12px;
     font-weight: 400;
     white-space: normal;
     width: 120px;
     text-align: center;

     opacity: 0;
     visibility: hidden;
     transition: opacity 0.2s, margin-bottom 0.2s;
     pointer-events: none;
     z-index: 10;
 }

 .payment-tile[aria-label]::after {
     content: '';
     position: absolute;
     bottom: 100%;
     left: 50%;
     transform: translateX(-50%);
     margin-bottom: 0;
     border-width: 5px;
     border-style: solid;
     border-color: #333 transparent transparent transparent;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.2s, margin-bottom 0.2s;
     pointer-events: none;
     z-index: 10;
 }

 .payment-tile[aria-label]::before,
 .payment-tile[aria-label]::after {
     z-index: 9999;
     pointer-events: none;
 }

 .payment-tile[aria-label]:hover::before,
 .payment-tile[aria-label]:hover::after {
     opacity: 1;
     visibility: visible;
 }

 .payment-tile[aria-label]:hover::before {
     margin-bottom: 10px;
 }

 .payment-tile[aria-label]:hover::after {
     margin-bottom: 1px;
 }

 .payment-tile[aria-label="Google Pay"] svg {
     transform: scale(1.35);
 }

 .payment-tile[aria-label="Visa"] svg,
 .payment-tile[aria-label="Blik"] svg {
     max-width: 55%;
     max-height: 40%;
 }

 .payment-tile[aria-label="Płatność przy odbiorze"] svg {
     max-width: 55%;
     stroke-width: 1px;
 }

 @media (max-width: 768px) {

     #faq-header::after {
         display: none;
     }

     .my-prod-faq-main-layout {
         flex-direction: column;
         padding: 15px;
         display: block;
     }

     .my-prod-faq-categories {
         flex-basis: auto;
         margin-right: 0;
         margin-bottom: 20px;
         width: 100%;
     }

     .my-prod-faq-category-trigger {
         padding: 12px 15px;
     }

     .my-prod-faq-title {
         padding: 20px 15px;
     }

     .my-prod-faq-subtitle {
         padding-right: 0;
         font-size: 14px;
     }

     .my-prod-faq-questions-list {
         width: 100%;
         min-width: 0;
         margin: 0;
     }

     .my-prod-faq-item {
         padding-left: 0;
         padding-right: 0;
         margin-bottom: 0;
     }

     .my-prod-faq-question {
         padding: 15px 5px 15px 0;
         font-size: 15px;
     }

     .my-prod-faq-question .my-prod-faq-btn-text {
         padding-right: 10px;
     }

     .my-prod-faq-answer-content {
         padding-right: 0;
         padding-left: 0;
         width: 100%;
         box-sizing: border-box;
     }

     .my-prod-faq-answer-content p {
         overflow-wrap: break-word;
         word-wrap: break-word;
         margin-right: 0;
     }

     .faq-table-wrapper {
         width: 100%;
         overflow: visible;
         box-sizing: border-box;
     }

     .my-prod-faq-table,
     .my-prod-faq-table tbody,
     .my-prod-faq-table tr,
     .my-prod-faq-table td {
         display: block;
         width: 100%;
         box-sizing: border-box;
     }

     .my-prod-faq-table thead {
         display: none;
     }

     .my-prod-faq-table tr {
         margin-bottom: 15px;
         border: 1px solid #eee;
         border-radius: 8px;
         background-color: #fff;
         box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
         padding: 0;
         overflow: hidden;
     }

     .my-prod-faq-table td {
         display: flex;
         justify-content: space-between;
         align-items: center;
         text-align: right;
         padding: 10px 12px;
         border-bottom: 1px solid #f5f5f5;
         background-color: #fff !important;
         font-size: 13px;
         white-space: normal;
     }

     .my-prod-faq-table td:last-child {
         border-bottom: none;
     }

     .my-prod-faq-table td:first-child {
         font-weight: 700;
         color: var(--faq-primary-color, #333);
         justify-content: center;
         text-align: center;
         background-color: #f9f9f9 !important;
         border-bottom: 1px solid #eee;
         padding: 12px;
         font-size: 15px;
     }

     .my-prod-faq-table td::before {
         content: attr(data-label);
         font-weight: 600;
         text-align: left;
         padding-right: 10px;
         font-size: 12px;
         color: #999;
         flex: 0 0 50%;
     }

     .my-prod-faq-table td:first-child::before {
         display: none;
     }

     .payment-methods-grid {
         display: grid;
         grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
         gap: 8px;
         margin-top: 15px;
         padding: 0;
         width: 100%;
         box-sizing: border-box;
     }

     .payment-tile {
         height: 45px;
         width: auto;
     }

     .payment-tile svg {
         max-width: 70%;
         max-height: 60%;
     }
 }

 :root {
     --iso-bg-header: #f5f5f5;
     --iso-bg-card: #ffffff;
     --iso-border: #e0e0e0;
     --iso-text-main: #777777;
     --iso-text-sub: ##777777;
     --iso-text-muted: #999999;
     --iso-radius: 8px;
     --iso-gap: 12px;
 }

 .iso-wrapper {
     margin: 20px 0;
     width: 100%;
     font-family: 'Inter', system-ui, -apple-system, sans-serif;
 }

 .iso-table,
 .iso-table tbody,
 .iso-table thead,
 .iso-table tr,
 .iso-table td,
 .iso-table th {
     display: block !important;
     width: 100%;
     box-sizing: border-box;
     border: none !important;
     background: transparent !important;
     padding: 0;
     margin: 0;
 }

 .iso-table thead th {
     background-color: var(--iso-bg-header) !important;
     color: var(--iso-text-main);
     font-weight: 600;
     font-size: 14px;
     text-align: left;
     padding: 12px 16px !important;
     border-radius: var(--iso-radius);
     margin-bottom: 12px;
     margin-top: 20px;
 }

 .iso-table thead:first-child th {
     margin-top: 0;
 }

 .iso-table tbody tr {
     display: grid !important;
     grid-template-columns: 1fr;
     gap: 6px;
     margin-bottom: 15px;
     width: 100%;
 }

 .iso-table td {
     height: 100%;
 }

 .iso-card {
     display: flex !important;
     flex-direction: row;
     align-items: center;
     background-color: var(--iso-bg-card);
     border: 1px solid transparent;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

     border-radius: var(--iso-radius);
     padding: 8px 6px;
     height: 100%;
     width: 100%;
     transition: all 0.2s ease-in-out;
     box-sizing: border-box;
     min-height: 80px;
 }

 .iso-card:not(.iso-card-disabled):hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.09);
     border-color: transparent;
     z-index: 2;
 }

 .iso-img-box {
     flex: 0 0 42px;
     height: 42px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #fff;
     border-radius: 6px;
     margin-right: 8px;

     padding: 2px;
     box-sizing: border-box;
 }

 .iso-img-box img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     display: block;
 }

 .iso-txt-box {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     min-width: 0;
 }

 .iso-label {
     font-size: 12px;
     font-weight: 700;
     color: var(--iso-text-main);
     line-height: 1.2;
     display: flex;
     align-items: center;
     min-height: 25px;
 }

 .iso-desc {
     font-size: 11px;
     color: var(--iso-text-sub);
     line-height: 1.3;
     display: block;
 }

 .env-empty-state .iso-card {
     background-color: #fafafa;
     border: 1px dashed #e0e0e0;
     box-shadow: none;
     pointer-events: none;
 }

 .env-empty-state .iso-img-box {
     border-color: transparent;
     background: transparent;
     opacity: 0.4;
 }

 .iso-text-muted .iso-label,
 .iso-text-muted .iso-desc {
     color: var(--iso-text-muted) !important;
 }

 @media (min-width: 500px) {
     .iso-table tbody tr {
         grid-template-columns: repeat(2, 1fr) !important;
     }
 }

 @media (min-width: 800px) {
     .iso-table tbody tr {
         grid-template-columns: repeat(3, 1fr) !important;
     }
 }

 @media (min-width: 1100px) {
     .iso-table tbody tr {
         grid-template-columns: repeat(4, 1fr) !important;
     }
 }