main {
    padding-top: 80px;
}

@media (max-width: 768px) {
    main {
        padding: 0 0px;
        overflow-x: hidden;
        max-width: 100vw;
    }
}

.product-settings-container {
    z-index: 2;
    margin: 0 auto;
    width: fit-content;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .product-settings-container {
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Product Settings Card */
.product-settings-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    width: 1200px;
    max-width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .product-settings-card {
        width: calc(100vw - 20px);
        padding: 16px;
        margin: 0 auto;

    }
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1.5px;
    background: #E1E1E1;
    border: none;
    margin: 0;
}

/* Section Title */
.section-title {
    font-size: 29px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    text-align: right;
    margin: 0;
    min-width: fit-content;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
        line-height: 28px;
        padding: 0;
    }
}

/* Pricing Cards Row */
.pricing-cards-row {
    display: flex;
    flex-direction: row;
    gap: 19px;
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-cards-row {
        flex-wrap: wrap;
        gap: 10px;

    }
}

.pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 20px;
    background: #F4F4FF;
    border-radius: 8px;
    min-height: 96px;
}

.pricing-card.points-card {
    flex: 0 0 335px;

}

@media (max-width: 768px) {
    .pricing-card {
        flex: 1 1 calc(33.333% - 7px);
        min-width: 0;
        padding: 36px 8px;

        justify-content: flex-start;

    }

    .pricing-card.points-card {
        flex: 0 0 100%;
        width: 100%;
        order: 10;
        /* Points card has its own mobile styles below */
    }
}

.pricing-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 15px;
    color: #000;
    opacity: 0.6;
    text-align: center;
}

.pricing-value {
    font-size: 38px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
    text-align: center;
}

.pricing-value.club-price {
    color: #2020B3;
}

.pricing-savings {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    text-align: center;
}

.pricing-savings.club-savings {
    color: #2020B3;
}

@media (max-width: 768px) {
    .pricing-value {
        font-size: 34px;
    }

    .pricing-savings {
        font-size: 15px;
    }
}

/* Points Card Specific */
.points-slider-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 280px;
    gap: 10px;
}

.points-value {
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
}

.points-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #E1E1E1 0%, #E1E1E1 var(--progress, 44%), #4138F2 var(--progress, 44%), #4138F2 100%);
    border-radius: 3px;
    outline: none;
    direction: ltr;
}

.points-slider::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
}

.points-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #4138F2;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

.points-slider::-moz-range-track {
    height: 6px;
    background: transparent;
    border-radius: 3px;
}

.points-slider::-moz-range-progress {
    background: #4138F2;
    height: 6px;
    border-radius: 3px 0 0 3px;
}

.points-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4138F2;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.points-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    background: #4138F2;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    color: #fff;
    text-align: center;
}

/* Points Card Mobile Styles */
@media (max-width: 768px) {
    .pricing-card.points-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 12px;
        padding: 20px;
        border-radius: 12px;
        height: auto;
        min-height: auto;
    }

    .pricing-card.points-card .pricing-label {
        grid-column: 1;
        grid-row: 1;
        font-size: 16px;
        font-weight: 600;
        opacity: 1;
        line-height: 34px;
        text-align: right;
        align-self: center;
        justify-self: start;
    }

    .pricing-card.points-card .points-badge {
        grid-column: 2;
        grid-row: 1;
        padding: 0 10px;
        border-radius: 8px;
        font-size: 20px;
        line-height: 34px;
        justify-self: end;
        align-self: center;
    }

    .pricing-card.points-card .points-slider-container {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: 100%;
        width: 100%;
    }

    .pricing-card.points-card .points-value {
        font-size: 28px;
        font-weight: 600;
        line-height: 20px;
    }
}

/* Customization Section */
.customization-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .customization-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.customization-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    width: 100%;

}

@media (max-width: 768px) {
    .customization-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }
}

.customization-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .customization-option {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.option-label {
    font-size: 17px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    min-width: fit-content;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0 16px;
    padding-left: 40px;
    background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 8.25L10.5 13.5L15.75 8.25' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    background-size: 21px;
    border: 1px solid #000;
    border-radius: 6px;
    width: 100%;
    height: 40px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;

    color: #000;
    font-family: inherit;
    text-align: right;
}

.custom-select:focus {
    outline: 2px solid #2020B3;
    outline-offset: 2px;

}

@media (max-width: 768px) {
    .custom-select {
        width: 100%;
    }
}

/* Delivery Section */
.delivery-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 603px;
}

@media (max-width: 768px) {
    .delivery-options {
        max-width: 100%;
    }
}

.delivery-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #FEF8EF;
    border-radius: 12px;
    cursor: pointer;
    gap: 40px;
}

@media (max-width: 768px) {
    .delivery-option {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
        padding: 10px 16px;
    }
}

.delivery-option-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    width: 220px;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .delivery-option-right {
        grid-column: 1;
        grid-row: 1;
        width: auto;
        justify-content: flex-start;
    }
}

.delivery-radio {
    display: none;
}

.delivery-radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #46494F;
    border-radius: 50%;
    background: transparent;
    position: relative;
    flex-shrink: 0;
}

.delivery-radio:checked+.delivery-radio-custom {
    border-color: #2020B3;
    background: #2020B3;
}

.delivery-radio:checked+.delivery-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.delivery-option-name {
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    color: #000;
}

.delivery-price {
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    color: #000;
}

@media (max-width: 768px) {
    .delivery-price {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }
}

.delivery-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #0B0427;
    flex: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .delivery-description {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: right;
        width: 100%;
        padding: 0;
    }
}

/* Purchase Section */
.purchase-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 768px) {
    .purchase-section {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

.purchase-notes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.purchase-notes p {
    font-size: 17px;
    font-weight: 500;
    line-height: 34px;
    color: #626266;
    margin: 0;
}

@media (max-width: 768px) {
    .purchase-notes p {
        font-size: 14px;
        line-height: 20px;
    }
}

.note-bold {
    font-weight: 600;
    color: #000;
}

.purchase-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .purchase-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }
}

.quantity-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 19px;
    padding: 14px 19px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 7px;
    height: 56px;
}

@media (max-width: 768px) {
    .quantity-selector {
        width: fit-content;
        justify-content: center;
    }
}

.quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.quantity-value {
    font-size: 21px;
    font-weight: 600;
    line-height: 40px;
    color: #000;
    min-width: 20px;
    text-align: center;
}

.purchase-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: #2020B3;
    border: 2px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
    cursor: pointer;

    height: 60px;
    transition: background 0.2s ease;
}

.purchase-button:hover {
    background: #1a1a99;
}

@media (max-width: 768px) {
    .purchase-button {
        width: 100%;
        font-size: 24px;
        height: 50px;
    }
}

.gift-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: #FF324B;
    border: 2px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
    cursor: pointer;
    width: 246px;
    height: 60px;
    transition: background 0.2s ease;
}

.gift-button:hover {
    background: #e62a40;
}

.gift-button svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .gift-button {
        width: 100%;
        font-size: 20px;
        height: 50px;
    }
}

/* Benefit Details Section */
.benefit-details-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    width: 100%;
}

.benefit-label {
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    text-align: right;
}

.benefit-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    text-align: right;
    margin: 0;
}

.benefit-description {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: #626266;
    text-align: right;
    margin: 0;
}

.benefit-link {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: #2020A8;
    text-align: right;
    text-decoration: none;
}

.benefit-link:hover {
    text-decoration: underline;
}

.vouchers-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 34px;
    color: #000;
    text-align: right;
}

/* Voucher Row */
.voucher-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
}

.voucher-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 10px 16px;
    background: #FEF8EF;
    border-radius: 8px;
}

.voucher-name {
    font-size: 17px;
    font-weight: 600;

    color: #000;
    text-align: right;
}

.voucher-desc {
    font-size: 14px;
    font-weight: 500;

    color: #000;
    text-align: right;
}

.voucher-original-price {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #E0E0EE;
    border-radius: 8px;
    height: 100%;
}

.voucher-original-price span {
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    color: #000;
    text-decoration: line-through;
}

.voucher-sale-price {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #F4F4FF;
    border-radius: 8px;
    height: 100%;
}

.voucher-sale-price span {
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    color: #000;
}

.voucher-buy-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 16px;
    background: #2020B3;
    border: none;
    border-radius: 8px;
    height: 39px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.voucher-buy-btn span {
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    color: #fff;
}

.voucher-buy-btn svg {
    transform: rotate(0deg);
}

.voucher-buy-btn:hover {
    background: #1a1a99;
}

.voucher-row+.section-divider {
    display: none;
}

@media (max-width: 768px) {
    .voucher-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .voucher-row+.section-divider {
        display: block;
    }

    .voucher-info {
        min-width: 100%;
    }

    .voucher-original-price,
    .voucher-sale-price,
    .voucher-buy-btn {
        height: 39px;
        padding: 0 10px;
    }

    .voucher-buy-btn {
        flex: 1;
    }
}

/* Product Details Section */
.product-details-section {
    display: flex;
    flex-direction: column;
    gap: 13px;
    width: 100%;
}

.product-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #181818;
    text-align: right;
    width: 100%;
}

.product-description p {
    margin: 0;
}

@media (max-width: 768px) {
    .product-description {
        font-size: 16px;
    }
}

/* Validity Badges */
.validity-badges {
    display: flex;
    flex-direction: row;
    gap: 13px;
    width: 100%;
}

@media (max-width: 768px) {
    .validity-badges {
        flex-direction: column;
        align-items: flex-start;

    }
}

.validity-badge {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #FEF8EF;
    border-radius: 8px;
    height: 39px;
}

.validity-badge span {
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    color: #000;
    text-align: center;
}

@media (max-width: 768px) {
    .validity-badge {
        height: auto;
        padding: 12px 16px;
        width: 100%;
        text-align: right;
        justify-content: flex-start;
    }

    .validity-badge span {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* Bottom Links */
.bottom-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 19px;
    width: 100%;
}

@media (max-width: 768px) {
    .bottom-links {
        flex-direction: column;
        gap: 12px;
    }
}

.bottom-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    color: #000;
    text-decoration: underline;
}

.bottom-link:hover {
    color: #2020B3;
}

.link-separator {
    width: 1px;
    height: 20px;
    background: #E1E1E1;
}

@media (max-width: 768px) {
    .link-separator {
        display: none;
    }
}

/* Info Cards Section */
.info-cards-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    width: 1200px;
    max-width: 100%;
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .info-cards-container {
        flex-direction: column;
        width: 100%;
        margin-bottom: 50px;
    }
}

.info-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .info-card {
        width: calc(100vw - 20px);
        margin: 0 auto;
    }
}

.info-card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.info-card-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 50px;
    color: #0B0427;
    margin: 0;
}

.info-card-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.info-card.open .info-card-toggle {
    transform: rotate(180deg);
}

/* Accordion Content */
.info-card-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.info-card.open .info-card-content {
    max-height: 2000px;
    opacity: 1;
    margin-top: 20px;
}

/* Info List */
.info-list {
    list-style-type: disc;
    padding-right: 20px;
    margin: 0;
    text-align: right;
}

.info-list li {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #0B0427;
    margin-bottom: 4px;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-link {
    color: #0B0427;
    text-decoration: underline;
}

/* Supplier Content */
.supplier-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.supplier-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #0B0427;
    text-align: right;
    margin: 0;
}

/* Contact Phone */
.supplier-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #0B0427;
}

.phone-numbers {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    color: #0B0427;
}

.phone-numbers .separator {
    color: #E1E1E1;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-label {
    font-size: 15px;
    font-weight: 400;
    color: #0B0427;
    text-align: right;
}

.social-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.social-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    color: #0B0427;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: border-color 0.2s ease;
}

.social-button:hover {
    border-color: #5454D4;
}

.social-button svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E1E1E1;
}

.contact-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #0B0427;
    margin: 0;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.contact-form-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #0B0427;
    margin: 0;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
}

.form-row.two-cols .form-input {
    flex: 1;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    color: #0B0427;
    background: #fff;
    text-align: right;
    font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #A0A0A0;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2346494F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2020B3;
    border: 2px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
}

.form-submit-button:hover {
    background: #1a1a99;
}

.form-submit-button svg {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .info-card-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .social-buttons {
        justify-content: center;
    }

    .form-row.two-cols {
        flex-direction: column;
    }
}

/* Product Hero Section */
.product-hero-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    width: 1200px;
    max-width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .product-hero-card {
        width: calc(100vw - 20px);
        padding: 16px;
        margin: 0 auto;
    }
}

.product-hero-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 768px) {
    .product-hero-header {
        flex-direction: column-reverse;
        gap: 0;
        align-items: center;
    }
}

.product-hero-logo {
    width: 228px;
    height: 73px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .product-hero-logo {
        width: 150px;
        height: auto;
    }
}

.product-hero-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    color: #0B0427;
    text-align: right;
    margin: 0;
}

@media (max-width: 768px) {
    .product-hero-title {
        font-size: 28px;
        line-height: 36px;
    }
}

.product-hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 768px) {
    .product-hero-image-container {
        height: auto;
        overflow: hidden;
    }
}

.product-hero-image {
    width: 758px;
    max-width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .product-hero-image {
        width: 100%;
        height: auto;
        aspect-ratio: 758/370;
    }
}

/* Swiper Banners */
.swiper-banners {
    width: 100%;
    overflow: visible;
}

.swiper-banners .swiper-wrapper {
    align-items: center;
}

.swiper-banners .swiper-slide {
    width: 758px;
    max-width: 85%;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.9);
}

.swiper-banners .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.swiper-banners .swiper-slide .image {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 8px;
}

.swiper-pagination-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.swiper-banners-pagination {
    position: static;
    display: flex;
    gap: 8px;
}

.swiper-banners-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    opacity: 1;
    transition: background 0.2s ease;
}

.swiper-banners-pagination .swiper-pagination-bullet-active {
    background: #5454D4;
}

.swiper-banners-counter {
    font-size: 16px;
    font-weight: 500;
    color: #46494F;
}

@media (max-width: 768px) {
    .swiper-banners .swiper-slide {
        width: 280px;
        max-width: 80%;
    }

    .swiper-banners .swiper-slide .image {
        height: 200px;
    }

    .swiper-pagination-container {
        margin-top: 16px;
        gap: 12px;
    }

    .swiper-banners-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-banners-counter {
        font-size: 14px;
    }
}
