/*
 * Main Theme Stylesheet for Boilerplate
 *
 * @package   Boilerplate
 * @author    Pankaj@Drapersclub
 * @link      https://drapersclub.com/
 */

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Theme Variables
2.0 Global Styles
3.0 Component Styles
4.0 Layout Styles
5.0 WooCommerce Specific Styles
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Theme Variables
--------------------------------------------------------------*/
:root {
    /* Colors */
    --color-primary: #2c2c2c;
    --color-secondary: #ff6f61;
    --color-accent: #f9a825;
    --color-text: #333333;
    --color-text-light: #777777;
    --color-background: #ffffff;
    --color-light-gray: #f4f4f4;
    --color-border: #dddddd;
    --color-success: #28a745;
    --color-error: #dc3545;
    --color-warning: #ffc107;

    /* Typography */
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-secondary: 'Georgia', serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Layout */
    --container-width: 1200px;
    --spacing-unit: 1rem;
    /* 16px */
}

/*--------------------------------------------------------------
2.0 Global Styles
--------------------------------------------------------------*/
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-background);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--color-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    color: var(--color-text);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-unit);
}

.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--spacing-unit) * 1.5);
    padding-right: calc(var(--spacing-unit) * 1.5);
}

/*--------------------------------------------------------------
3.0 Component Styles
--------------------------------------------------------------*/

/* Forms & Inputs */
label {
    display: block;
    font-weight: bold;
    margin-bottom: calc(var(--spacing-unit) / 2);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: calc(var(--spacing-unit) * 0.75);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: var(--color-primary);
    outline: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.5);
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.btn-secondary {
    background-color: var(--color-text-light);
    border-color: var(--color-text-light);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-unit);
}

th,
td {
    padding: calc(var(--spacing-unit) * 0.75);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

th {
    background-color: var(--color-light-gray);
    font-weight: bold;
}

/* Cards */
.card {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: var(--spacing-unit);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card-body {
    padding: calc(var(--spacing-unit) * 1.5);
}

.card-title {
    margin-bottom: calc(var(--spacing-unit) / 2);
}

/* Accordion & Dropdown */
.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-title {
    padding: var(--spacing-unit);
    cursor: pointer;
    font-weight: bold;
}

.accordion-content {
    padding: var(--spacing-unit);
    display: none;
    /* JS will toggle this */
}

/* Modal */
.modal {
    display: none;
    /* JS will toggle this */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: calc(var(--spacing-unit) * 2);
    width: 80%;
    max-width: 500px;
    border-radius: 4px;
    position: relative;
}

.modal .close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

/* Alerts & Toasts */
.alert {
    padding: var(--spacing-unit);
    margin-bottom: var(--spacing-unit);
    border-radius: 4px;
    border: 1px solid transparent;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    background-color: var(--color-light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-inner {
    height: 20px;
    width: 60%;
    /* Example width */
    background-color: var(--color-primary);
    text-align: center;
    color: white;
    line-height: 20px;
}

/*--------------------------------------------------------------
4.0 Layout Styles
--------------------------------------------------------------*/
/* Header */
.site-header .header-top-bar {
    background-color: var(--color-light-gray);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    text-align: center;
}

.site-header .header-menu-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.site-header .site-branding a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-text);
}

.site-header .primary-menu {
    display: flex;
    gap: 2rem;
}

/* Footer */
.site-footer .footer-quick-links {
    background-color: #222;
    color: #fff;
    padding: 3rem 0;
}

.site-footer .footer-quick-links .container {
    display: flex;
    gap: 2rem;
}

.site-footer .footer-column {
    flex: 1;
}

.site-footer .footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.site-footer .footer-column a {
    color: var(--color-text-light);
}

.site-footer .footer-column a:hover {
    color: var(--color-background);
}

.site-footer .footer-bottom-bar {
    background-color: #111;
    color: var(--color-text-light);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}


/*--------------------------------------------------------------
UTILITY CLASSES (Layout, Spacing, Text)
--------------------------------------------------------------*/

/* Layout */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 {
    gap: calc(var(--spacing-unit) * 0.5);
}

.gap-2 {
    gap: var(--spacing-unit);
}

/* Spacing */
.m-0 {
    margin: 0 !important;
}

.mb-1 {
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.mb-2 {
    margin-bottom: var(--spacing-unit);
}

.mt-2 {
    margin-top: var(--spacing-unit);
}

/* Text */
.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-muted {
    color: var(--color-text-light);
}

.text-bold {
    font-weight: 600;
}

.text-right {
    text-align: right;
}



/*--------------------------------------------------------------
5.0 WooCommerce Specific Styles
--------------------------------------------------------------*/
/* Match buttons to our .btn class */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.5);
    background-color: var(--color-primary);
    color: #fff !important;
    /* Override specificity */
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.woocommerce button.button.alt {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.woocommerce button.button.alt:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Style the on-sale badge */
.woocommerce span.onsale {
    background-color: var(--color-accent);
    color: var(--color-text);
    min-height: auto;
    min-width: auto;
    padding: 0.3em 0.8em;
    font-weight: bold;
}


/* WooCommerce default thumbnail fit */
.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges overlay */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.badge-sale {
    right: 10px;
    left: auto;
}

.badge-new {
    left: 10px;
}

.badge-out {
    left: 10px;
    top: 40px;
}

/* Content (brand + title) */
.product-content {
    flex-grow: 0;
    text-align: left;
}

.product-brand {
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title h2 {
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Footer: Price and Add to Cart */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
}

.product-price {
    flex: 1;
    text-align: left;
}

.product-add {
    flex-shrink: 0;
    text-align: right;
}

.product-add form {
    margin: 0;
}

/* Single Product */

/*--------------------------------------------------------------
Single Product Template Styles
--------------------------------------------------------------*/

/* Product Page Layout Styles */


/* Breadcrumbs styling */
.woocommerce-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.woocommerce-breadcrumb a {
    color: var(--color-primary, #0073aa);
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

/* Two-column layout for product image and summary */
.product-main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

/* Product images section - fixed height container */
.product-images-section {
    width: 100%;
    height: fit-content;
}

/* Product summary section - matching height with scroll */
.product-summary-section {
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    /* Space for scrollbar */
}

/* Custom scrollbar styling (optional) */
.product-summary-section::-webkit-scrollbar {
    width: 8px;
}

.product-summary-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.product-summary-section::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.product-summary-section::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Product details (tabs) - full width below */
.product-details-container {
    width: 100%;
    margin-bottom: 40px;
}

/* Optional: Adjust WooCommerce notices */
.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

/* Responsive layout for tablets */
@media (max-width: 992px) {
    .product-main-container {
        gap: 30px;
    }

    .product-summary-section {
        height: 500px;
        /* Reduce height on tablets */
    }
}

/* Mobile layout - stack vertically */
@media (max-width: 768px) {
    .product-main-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-summary-section {
        height: auto;
        /* Remove fixed height on mobile */
        overflow-y: visible;
        padding-right: 0;
    }

    .product-card {
        height: 400px;
    }
}

/*--------------------------------------------------------------
6.0 Hero Slider Styles
--------------------------------------------------------------*/
.hero-slider-section {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding-bottom: 40px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f4f4f4;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    padding-bottom: 60px;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1.125rem;
    text-shadow: none;
}

/* Slider Dots (Outside Container) */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    z-index: 10;
}

.slider-dots .dot {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .slider-container {
        height: 350px;
    }

    .slider-item {
        padding-bottom: 40px;
    }

    .hero-title {
        display: none;
        /* Hide title on mobile as requested */
    }

    .hero-cta {
        font-size: 0.875rem;
        /* Smaller text size on mobile */
        padding: 8px 20px;
    }

    .hero-slider-section {
        padding-bottom: 30px;
    }
}

@media (min-width: 768px) {
    .slider-container {
        height: 500px;
    }
}

/*--------------------------------------------------------------
7.0 Category Button Styles
--------------------------------------------------------------*/
.ethniqo-category-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    padding: 40px 0;
    margin: 0 auto;
    justify-content: center;
}

/* One row layout for <= 10 categories */
.ethniqo-category-buttons.ethniqo-one-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: center;
    gap: 12px;
    padding: 30px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar by default */
}

.ethniqo-category-buttons.ethniqo-one-row::-webkit-scrollbar {
    display: none;
}

.ethniqo-category-buttons.ethniqo-one-row::-webkit-scrollbar {
    height: 6px;
}

.ethniqo-category-buttons.ethniqo-one-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.ethniqo-category-buttons.ethniqo-one-row .ethniqo-cat-button {
    flex: 0 0 100px;
    max-width: 100px;
}

.ethniqo-category-buttons.ethniqo-one-row .ethniqo-cat-name {
    font-size: 13px;
    margin-top: 8px;
}


@media (max-width: 768px) {
    .ethniqo-category-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 1.5rem 1rem;
    }

    .ethniqo-category-buttons.ethniqo-one-row {
        justify-content: flex-start;
        padding: 1.5rem 1rem;
        gap: 10px;
    }

    .ethniqo-category-buttons.ethniqo-one-row .ethniqo-cat-button {
        flex: 0 0 60px;
        max-width: 60px;
    }
}

.ethniqo-cat-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.ethniqo-cat-button:hover {
    transform: translateY(-4px);
}

.ethniqo-cat-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 12px;
}

.ethniqo-cat-button.round .ethniqo-cat-image-wrapper {
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ethniqo-cat-button.round:hover .ethniqo-cat-image-wrapper {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ethniqo-cat-button.rounded .ethniqo-cat-image-wrapper {
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ethniqo-cat-button.rounded:hover .ethniqo-cat-image-wrapper {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ethniqo-cat-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ethniqo-cat-button:hover .ethniqo-cat-image {
    transform: scale(1.05);
}

.ethniqo-cat-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

.ethniqo-cat-button:hover .ethniqo-cat-name {
    color: #000;
}

.ethniqo-cat-count {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .ethniqo-cat-name {
        font-size: 0.625rem;
        font-weight: 500;
    }

    .ethniqo-cat-count {
        font-size: 0.5625rem;
        margin-top: 0.125rem;
    }

    .ethniqo-cat-image-wrapper {
        margin-bottom: 0.25rem;
    }
}

/* ============================================================================
   PROFILE COMPLETION MODAL STYLES
   ============================================================================ */
.ethniqo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.ethniqo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.ethniqo-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ethniqo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    z-index: 10;
}

.ethniqo-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.ethniqo-modal-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #222;
}

.ethniqo-modal-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.ethniqo-modal-body {
    padding: 30px;
    overflow-y: auto;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #888;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #222;
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.fit-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.fit-option {
    position: relative;
    cursor: pointer;
}

.fit-option input {
    display: none;
}

.fit-option span {
    display: block;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fit-option input:checked+span {
    background: #222;
    border-color: #222;
    color: #fff;
}

.fit-guide-trigger {
    background: none;
    border: none;
    color: #007bff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.ethniqo-modal-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid #f0f0f0;
}

.btn-save-profile {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-save-profile:hover {
    background: #333;
}

/* Sub-modal for Fit Guide */
.ethniqo-sub-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 20;
    padding: 30px;
    display: none;
    flex-direction: column;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.fit-guide-close {
    background: none;
    border: none;
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 0;
    text-align: left;
}

.fit-guide-container {
    overflow-y: auto;
    flex: 1;
}

.fit-descriptions {
    display: grid;
    gap: 20px;
}

.fit-card {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.fit-card h4 {
    margin-bottom: 8px;
    color: #222;
    font-size: 16px;
}

.fit-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .ethniqo-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}