/**
Theme Name: DNK Fashion
Author: Securiti
Author URI: https://securiti.ai
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dnk-fashion
Template: astra
*/

#mc_embed_signup form {
    margin: 0 !important;
}

label {
    font-weight: 900;
    margin-bottom: 0;
}

input,
select {
    width: 100%;
}

input[type="submit"] {
    margin: 2rem 0 0;
}

/* Enhanced Checkbox and Radio Button Styles */
input[type="checkbox"],
input[type="radio"],
.wpcf7 input[type="radio"] {
    display: inline-block;
    background: #ffffff;
    color: #555;
    clear: none;
    cursor: pointer;
    line-height: 0;
    height: 1.2em;
    margin: -3px 4px 0 0;
    outline: 0;
    padding: 0;
    border-radius: 0.2em;
    text-align: center;
    vertical-align: middle;
    width: 1.4em;
    min-width: 1.4em;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--ast-border-color, #e6e6e6);
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Checkbox specific styles */
input[type="checkbox"] {
    border-radius: 0.3em;
}

/* Radio button specific styles */
input[type="radio"] {
    border-radius: 50%;
    box-shadow: none;
}

/* Hover state */
input[type="checkbox"]:hover,
input[type="radio"]:hover,
.wpcf7 input[type="radio"]:hover {
    border-color: var(--ast-border-color, #0274be);
    box-shadow: 0 2px 6px rgba(2, 116, 190, 0.2);
    transform: translateY(-1px);
}

/* Radio button hover state - no box shadow */
input[type="radio"]:hover,
.wpcf7 input[type="radio"]:hover {
    box-shadow: none;
    transform: none;
}

/* Focus state */
input[type="checkbox"]:focus,
input[type="radio"]:focus,
.wpcf7 input[type="radio"]:focus {
    border-color: var(--ast-border-color, #0274be);
    box-shadow: 0 0 0 3px rgba(2, 116, 190, 0.1);
    outline: none;
}

/* Radio button focus state - no box shadow */
input[type="radio"]:focus,
.wpcf7 input[type="radio"]:focus {
    box-shadow: none;
}

/* Checked state for checkboxes */
input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #0274be, #1e88e5);
    border-color: #0274be;
    box-shadow: 0 2px 8px rgba(2, 116, 190, 0.3);
}

/* Checked state for radio buttons */
input[type="radio"]:checked,
.wpcf7 input[type="radio"]:checked {
    background: linear-gradient(135deg, #0274be, #1e88e5);
    border-color: #0274be;
    box-shadow: none;
}

/* Checkmark for checked checkboxes */
input[type="checkbox"]:checked::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 0.8em;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Dot for checked radio buttons */
input[type="radio"]:checked::before,
.wpcf7 input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.4em;
    height: 0.4em;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Disabled state */
input[type="checkbox"]:disabled,
input[type="radio"]:disabled,
.wpcf7 input[type="radio"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #ddd;
    box-shadow: none;
}

/* Active/pressed state */
input[type="checkbox"]:active,
input[type="radio"]:active,
.wpcf7 input[type="radio"]:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Custom styling for form groups with checkboxes/radio buttons */
.mc-field-group.input-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mc-field-group.input-group li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease;
}

.mc-field-group.input-group li:hover {
    background-color: rgba(2, 116, 190, 0.05);
}

.mc-field-group.input-group label {
    margin-left: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mc-field-group.input-group label:hover {
    color: #0274be;
}

input[type="email"],
input[type="number"],
input[type="password"],
input[type="reset"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
select,
textarea {
    color: #666;
    padding: 0.75em;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: var(--ast-border-color) !important;
    border-radius: 2px;
    background: var(--ast-comment-inputs-background);
    box-shadow: none;
    box-sizing: border-box;
    transition: all 0.2s linear;
}

/* Enhanced focus/active styles for input fields */
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="reset"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    border-color: #0274be !important;
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(2, 116, 190, 0.1);
    outline: none;
    background-color: #ffffff;
}

input[type="email"]:active,
input[type="number"]:active,
input[type="password"]:active,
input[type="reset"]:active,
input[type="search"]:active,
input[type="tel"]:active,
input[type="text"]:active,
input[type="url"]:active,
select:active,
textarea:active {
    border-color: #0274be !important;
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(2, 116, 190, 0.15);
    outline: none;
}

#AGREE_TO_TERMS.mce_inline_error ~ div.mce_inline_error {
    display: block !important;
}


.d-none {display: none}

@media (max-width: 768px) {
	.d-block-mobile {display: block}
}