/*
Theme Name: Ko Theme
Theme URI: https://github.com/nishidshajib/ko-theme/
Description: A lite speed WooCommerce theme for Koyy Unique
Author: Koyy Unique
Author URI: https://koyyunique.com.au/
Template: hello-elementor
Version: 1.0.0
Text Domain: ko-theme
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready, woocommerce
*/

:root {
    --primary-color: #0066cc;
    --hover-color: #007cba;
    --text-color: #333;
    --meta-color: #666;
    --cart-color: #e74c3c;
    --out-of-stock-color: #dc3545;
    --background-light: #f8f9fa;
    --border-color: #e1e5e9;
}

/* Header Styles */
header {
    background-color: #fff;
    z-index: 99999;
}

header.sticky-active {
    position: fixed;
    top: 0;
    width: 100%;
}

.max-w-fit {
    max-width: fit-content;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif';
}

.header-action {
    position: relative;
}

.action-link {
    display: flex;
    align-items: row;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: color 0.2s ease;
}

.action-link:hover {
    color: var(--primary-color);
}

.action-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.action-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.action-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.action-label {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
}

.action-meta {
    font-size: 0.75rem;
    color: var(--meta-color);
    line-height: 1.2;
}

/* Cart Counter */
.cart-count {
    position: absolute;
    top: -0.4rem;
    left: 1rem;
    background: var(--cart-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
    animation: cartBounce 0.3s ease-out;
}

@keyframes cartBounce {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Action Specific Styling */
.help-action .action-icon {
    color: var(--primary-color);
}

.favorites-action .action-link:hover .action-icon {
    color: var(--cart-color);
}

.cart-action .action-icon {
    color: var(--text-color);
}

.cart-action .action-link:hover .action-icon {
    color: var(--primary-color);
}

.cart-count.loading {
    opacity: 0.7;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* WooCommerce AJAX Search Styles */
.wc-ajax-search-wrapper {
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.desktop-search {
    display: block;
}

.search-container {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input:focus, .mobile-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.search-icon, .mobile-search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--meta-color);
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-clear {
    position: absolute;
    right: 15px;
    color: #999;
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    transition: color 0.2s ease;
    z-index: 2;
}

.search-clear:hover {
    color: var(--meta-color);
    background: rgba(0, 0, 0, 0.05);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    max-height: 500px;
    overflow-y: auto;
    margin-top: 8px;
}

.search-results-content {
    padding: 16px 0;
}

.results-section {
    margin-bottom: 0;
}

.results-section:last-child {
    margin-bottom: 0;
}

.section-header, .popular-categories-header {
    padding: 8px 20px 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    background: none;
    border: none;
}

.popular-categories-header {
    color: var(--meta-color);
}

.category-item, .product-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.2s ease;
}

.category-item:hover, .product-item:hover, .category-item:focus, .product-item:focus {
    background-color: var(--background-light);
    color: var(--text-color);
}

.keyboard-focused {
    background-color: #e3f2fd !important;
}

.item-image, .item-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-right: 16px;
    flex-shrink: 0;
}

.item-image {
    object-fit: cover;
    background: #f5f5f5;
	border-radius: 4px!important;
}

.item-placeholder {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-placeholder svg {
    width: 24px;
    height: 24px;
    color: #adb5bd;
}

.item-details {
    flex: 1;
    min-width: 0;
	flex-direction: column;
}

.item-name {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text-color);
}

.item-meta {
    font-size: 13px;
    color: var(--meta-color);
}

.product-price {
    font-weight: 600;
    color: #ff6b35;
}

.category-count {
    color: var(--meta-color);
}

.out-of-stock {
    color: var(--out-of-stock-color);
}

.search-loading, .search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--meta-color);
}

.search-no-results {
    font-style: italic;
}

.mobile-search-trigger {
    display: none;
}

.mobile-search-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: var(--text-color) !important;
    border-radius: 50% !important;
    transition: background-color 0.2s ease;
}

.mobile-search-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.mobile-search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.mobile-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-search-content {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: #fff;
    display: flex;
    flex-direction: column;
    animation: zoomIn 0.3s ease-out;
    border-radius: 10px;
    overflow: hidden;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes zoomOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.8); }
}

.mobile-search-content.closing {
    animation: zoomOut 0.3s ease-in forwards;
}

.mobile-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

.mobile-search-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.mobile-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: var(--text-color) !important;
    border-radius: 50% !important;
    transition: background-color 0.2s ease;
}

.mobile-search-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-search-input-wrapper {
    position: relative;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.search-input, .mobile-search-input {
    width: 100% !important;
    padding: 12px 16px 12px 45px !important;
    border: 1px solid #EBEDF5 !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.mobile-search-results {
    flex: 1;
    overflow-y: auto;
    background: #fff;
}

/* Custom Mega Menu */
.custom-mega-menu {
    position: relative;
}

.custom-mega-menu .desktop-menu, .custom-mega-menu .mobile-menu {
    display: none;
}

/* Desktop Menu */
@media (min-width: 1080px) {
    .custom-mega-menu .desktop-menu {
        display: block !important;
    }
    .custom-mega-menu .mobile-menu {
        display: none !important;
    }

    .custom-mega-menu .desktop-nav > ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
        gap: 30px;
        font-size: 14px;
        text-transform: uppercase;
    }

    .custom-mega-menu .desktop-nav > ul > li {
        position: relative;
    }

    .custom-mega-menu .desktop-nav > ul > li > a {
        display: flex;
        align-items: center;
        padding: 0;
        text-decoration: none;
        color: inherit;
        font-weight: 600;
    }

    .custom-mega-menu .desktop-nav > ul > li > a:hover {
        color: var(--hover-color);
    }

    .custom-mega-menu .desktop-nav .sub-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        min-width: 200px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 9999;
        list-style: none;
        padding: 10px;
        margin: 0;
        border-radius: 4px;
    }

    .custom-mega-menu .desktop-nav .has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .custom-mega-menu .desktop-nav .sub-menu a {
        display: block;
        padding: 10px 20px;
        color: var(--meta-color);
        text-decoration: none;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 500;
    }

    .custom-mega-menu .desktop-nav .sub-menu a:hover {
        background: var(--background-light);
        color: var(--hover-color);
    }

    .custom-mega-menu .desktop-nav .mega-dropdown {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        width: 800px;
        max-width: 90vw;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
        border-radius: 4px;
        padding: 30px;
    }

    .custom-mega-menu .desktop-nav .has-mega:hover .mega-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .custom-mega-menu .desktop-nav .mega-dropdown.align-left {
        left: 0;
        transform: translateY(-10px);
    }

    .custom-mega-menu .desktop-nav .has-mega:hover .mega-dropdown.align-left {
        transform: translateY(0);
    }

    .custom-mega-menu .desktop-nav .mega-dropdown.align-right {
        left: auto;
        right: 0;
        transform: translateY(-10px);
    }

    .custom-mega-menu .desktop-nav .has-mega:hover .mega-dropdown.align-right {
        transform: translateY(0);
    }

    .custom-mega-menu .desktop-nav .dropdown-icon, .custom-mega-menu .desktop-nav .mega-dropdown-icon {
        margin-left: 8px;
        display: inline-flex;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .custom-mega-menu .desktop-nav .dropdown-icon svg, .custom-mega-menu .desktop-nav .mega-dropdown-icon svg {
        width: 16px;
        height: 16px;
    }

    .custom-mega-menu .desktop-nav .has-children:hover .dropdown-icon, .custom-mega-menu .desktop-nav .has-mega:hover .mega-dropdown-icon {
        transform: rotate(180deg);
    }

    .custom-mega-menu .mega-content {
        display: grid;
        gap: 30px;
    }

    .custom-mega-menu .mega-content.cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .custom-mega-menu .mega-content.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .custom-mega-menu .mega-content.cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .custom-mega-menu .mega-content.cols-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .custom-mega-menu .mega-column h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--text-color);
        padding-bottom: 8px;
        position: relative;
    }

    .custom-mega-menu .mega-column h4:before {
        content: "";
        height: 2px;
        width: 50px;
        background-color: var(--primary-color);
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .custom-mega-menu .mega-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .custom-mega-menu .mega-column a {
        display: block;
        padding: 5px 0;
        color: var(--meta-color);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        position: relative;
        width: max-content;
    }

    .custom-mega-menu .mega-column a:hover {
        color: var(--hover-color);
    }

    .custom-mega-menu .mega-column a:before {
        content: "";
        width: 0;
        background-color: currentColor;
        height: 2px;
        position: absolute;
        bottom: 0;
        transition: all 0.3s ease;
    }

    .custom-mega-menu .mega-column a:hover:before {
        width: 100%;
    }

    .custom-mega-menu .mega-banner {
        background: var(--background-light);
        padding: 20px;
        border-radius: 6px;
        text-align: center;
    }

    .custom-mega-menu .mega-banner img {
        max-width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .custom-mega-menu .mega-banner h4 {
        border: none;
        margin-bottom: 10px;
    }
}

/* Mobile Menu */
@media (max-width: 1079px) {
    .custom-mega-menu .mobile-menu {
        display: flex !important;
    }
    .custom-mega-menu .desktop-menu {
        display: none !important;
    }

    .custom-mega-menu .mobile-toggle {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        height: 40px;
        width: 40px;
        position: relative;
    }

    .custom-mega-menu .hamburger {
        position: absolute;
        left: 6px;
        width: 28px;
        height: 2px;
        background: var(--text-color);
        transition: all 0.3s ease;
    }

    .custom-mega-menu .hamburger:nth-of-type(1) {
        top: 10px;
    }
    .custom-mega-menu .hamburger:nth-of-type(2) {
        top: 19px;
    }
    .custom-mega-menu .hamburger:nth-of-type(3) {
        top: 28px;
    }

    .custom-mega-menu .mobile-toggle.active .hamburger:nth-of-type(1), .custom-mega-menu .mobile-toggle.active .hamburger:nth-of-type(3) {
        top: 19px;
    }

    .custom-mega-menu .mobile-toggle.active .hamburger:nth-of-type(1) {
        transform: rotate(45deg);
    }

    .custom-mega-menu .mobile-toggle.active .hamburger:nth-of-type(2) {
        opacity: 0;
    }

    .custom-mega-menu .mobile-toggle.active .hamburger:nth-of-type(3) {
        transform: rotate(-45deg);
    }

    .custom-mega-menu .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .custom-mega-menu .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .custom-mega-menu .mobile-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        transition: left 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .custom-mega-menu .mobile-nav.active {
        left: 0;
    }

    .custom-mega-menu .mobile-nav-header {
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(46, 58, 84, 0.06);
        color: var(--primary-color);
    }

    .custom-mega-menu .mobile-nav-title {
        font-size: 18px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .custom-mega-menu .mobile-back, .custom-mega-menu .mobile-close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .custom-mega-menu .mobile-back {
        font-size: 18px;
        margin-right: 10px;
        color: currentColor;
    }

    .custom-mega-menu .mobile-close {
        font-size: 24px;
        color: var(--meta-color);
        justify-content: center;
    }

    .custom-mega-menu .mobile-nav-content {
        flex: 1;
        overflow-y: auto;
    }

    .custom-mega-menu .mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .custom-mega-menu .mobile-nav li {
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }

    .custom-mega-menu .mobile-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        text-decoration: none;
        color: var(--text-color);
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    .custom-mega-menu .mobile-nav a span.mobile-arrow-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .custom-mega-menu .mobile-nav a:hover {
        background: var(--background-light);
        color: var(--hover-color);
    }

    .custom-mega-menu .mobile-nav .sub-menu {
        display: none !important;
    }

    .custom-mega-menu .mobile-nav .sub-menu.active-level {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        height: auto !important;
        overflow: visible !important;
    }

    .custom-mega-menu .mobile-nav .sub-menu.active-level li, .custom-mega-menu .mobile-nav .sub-menu.active-level a {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Mobile Responsive Design */
@media screen and (max-width: 1080px) {
    .header-actions {
        gap: 5px;
    }

    .action-link {
        padding: 0.25rem;
        gap: 0;
    }

    .action-text {
        display: none;
    }

    .action-icon {
        padding: 0.25rem;
    }

    .action-icon svg {
        width: 24px;
        height: 24px;
    }

    .cart-count {
        top: -0.125rem;
        right: -0.125rem;
        font-size: 0.6875rem;
        min-width: 1.125rem;
        height: 1.125rem;
    }
}

@media screen and (max-width: 768px) {
    .desktop-search {
        display: none;
    }

    .mobile-search-trigger {
        display: block;
    }

    .search-results {
        max-height: 300px;
    }

    .item-image, .item-placeholder {
        width: 35px;
        height: 35px;
    }

    .category-item, .product-item {
        padding: 10px 12px;
    }

    .item-name {
        font-size: 13px;
    }

    .item-meta {
        font-size: 11px;
    }
}

@media screen and (max-width: 480px) {
    .header-action.help-action {
        display: none;
    }

    .action-icon svg {
        width: 20px;
        height: 20px;
    }

    .mobile-search-header {
        padding: 12px 16px;
    }

    .mobile-search-input-wrapper {
        padding: 12px 16px;
    }

    .category-item, .product-item {
        padding: 8px 12px;
    }
}

/* Accessibility */
.action-link:focus, .search-input:focus, .mobile-search-input:focus, .mobile-search-btn:focus, .mobile-search-close:focus, .category-item:focus, .product-item:focus {
    outline: 0;
    border-color: var(--primary-color) !important;
}

@media (prefers-contrast: high) {
    .action-link {
        border: 1px solid transparent;
    }

    .action-link:hover, .action-link:focus {
        border-color: currentColor;
    }

    .cart-count {
        border: 2px solid white;
    }

    .search-input {
        border-width: 2px;
    }

    .category-item:hover, .product-item:hover {
        border: 1px solid currentColor;
    }
}

@media (prefers-reduced-motion: reduce) {
    .action-link, .cart-count, .search-input, .category-item, .product-item, .mobile-search-content {
        transition: none;
        animation: none;
    }
}




/*---INTERACTIVE CTA---*/

.interactive-call-action{
    transition: all .3s ease;
    height: auto;
}
.interactive-call-action .content{
	gap: 0;
    overflow: hidden;
/*     backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); */
/*     background: rgba(0, 0, 0, 0.2); */
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    color: var(--e-global-color-text);
   
}
.interactive-call-action .content .title{
    font-size: 22px;
}
.interactive-call-action .content .text{
    line-height: 1.5em!important;
}
.interactive-call-action:not(.has-floating-button) .content a{
    background-color: var(--e-global-color-primary);
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 15px 20px;
}
.interactive-call-action:not(.has-floating-button) .content a:hover{
    background-color: var(--e-global-color-accent);
}

.interactive-call-action:not(.has-floating-button) .content a{
    position: absolute;;
    bottom: -100px;
}
.interactive-call-action:not(.has-floating-button):hover .content a{
    position: relative;
    bottom: 0
}

.interactive-call-action .has-video {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.product-category{
    background-color: #fff;
}
.product-category .video-bg {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

/*---AUTH STYLE---*/

.auth-form .form-control,.btn{-webkit-transition:.2s;-o-transition:.2s}.auth-form .form-row,.form-options{display:-webkit-box;display:-ms-flexbox;gap:16px}.btn-link:hover,.forgot-password:hover{text-decoration:underline}.auth-header,.otp-input,.otp-section{text-align:center}.auth-header{margin-bottom:32px}.auth-title{font-size:28px;font-weight:700;color:#111827;margin:0;line-height:1.2}.auth-message{padding:12px 16px;border-radius:8px;font-size:14px;font-weight:500;margin-bottom:12px}.auth-message.success{background:#ecfdf5;color:#065f46;border:1px solid #a7f3d0}.auth-message.error{background:#fef2f2;color:#991b1b;border:1px solid #fecaca}.auth-message.info{background:#eff6ff;color:#1e40af;border:1px solid #bfdbfe}.auth-form .form-group,.success-icon{margin-bottom:24px}.auth-form .form-row{display:flex}.signup-step.active,label{display:block}.auth-form .form-row .form-group{-webkit-box-flex:1;-ms-flex:1;flex:1}.checkbox-label,.password-toggle{-webkit-box-align:center;cursor:pointer}label{font-size:14px;font-weight:600;color:#374151;margin-bottom:8px}.auth-form .form-control{width:100%;padding:12px 16px;border:1px solid #e5e7eb;border-radius:4px;font-size:16px;line-height:1.5;transition:.2s;background:#fff;color:#111827;-webkit-box-sizing:border-box;box-sizing:border-box}.auth-form .form-control:focus,.otp-input:focus{outline:0;border-color:#3b82f6;-webkit-box-shadow:0 0 0 3px rgba(59,130,246,.1);box-shadow:0 0 0 3px rgba(59,130,246,.1)}.form-control::-webkit-input-placeholder{color:#9ca3af}.form-control::-moz-placeholder{color:#9ca3af}.form-control:-ms-input-placeholder{color:#9ca3af}.form-control::-ms-input-placeholder{color:#9ca3af}.form-control::placeholder{color:#9ca3af}.password-input-wrapper{position:relative}.password-toggle{position:absolute;right:12px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);background:0 0!important;border:none;color:#6b7280;padding:4px;border-radius:4px;-webkit-transition:color .2s;-o-transition:color .2s;transition:color .2s;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.password-toggle:hover{color:#374151}.btn:focus,.password-toggle:focus{outline:#3b82f6 solid 2px;outline-offset:2px}.password-strength{margin-top:8px;font-size:12px;height:20px}.password-strength.weak{color:#ef4444}.password-strength.medium{color:#f59e0b}.password-strength.strong{color:#10b981}.form-options{display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.btn-loading,.checkbox-label{display:-webkit-box;display:-ms-flexbox}.checkbox-label{display:flex;-ms-flex-align:center;align-items:center;font-size:14px;color:#374151}.btn,.btn-loading{-webkit-box-align:center}.form-checkbox{margin-right:8px;width:16px;height:16px;accent-color:#3b82f6}.forgot-password{color:#3b82f6;text-decoration:none;font-size:14px;font-weight:500}.btn{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:12px 24px;border:none;border-radius:4px;font-size:16px;font-weight:600;text-decoration:none;cursor:pointer;transition:.2s;min-height:45px;position:relative;width:100%}.btn-google,.otp-input{border:1px solid #e5e7eb}.btn:disabled{opacity:.6;cursor:not-allowed}.btn-primary{background:var(--e-global-color-primary);color:#fff}.btn-primary:hover:not(:disabled){background:#000}.btn-google{background:#fff;color:#374151}.btn-google:hover:not(:disabled){background:#000;border-color:#000}.btn-link{background:0 0;color:#3b82f6;padding:8px 16px;font-size:14px;min-height:auto;width:auto}.btn-link:hover{background:rgba(59,130,246,.05)}.google-icon{margin-right:12px;-ms-flex-negative:0;flex-shrink:0}.btn-loading{display:flex;-ms-flex-align:center;align-items:center}.auth-divider,.otp-input-group{display:-webkit-box;display:-ms-flexbox}.spinner{-webkit-animation:1s linear infinite spin;animation:1s linear infinite spin}@-webkit-keyframes spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.auth-divider{display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:32px 0;color:#6b7280;font-size:14px}.auth-divider::after,.auth-divider::before{content:'';-webkit-box-flex:1;-ms-flex:1;flex:1;height:1px;background:#e5e7eb}.auth-divider span{padding:0 16px;background:#fff}.signup-step{display:none}.otp-section h3{font-size:24px;font-weight:700;color:#111827;margin-bottom:8px}.otp-instruction{color:#6b7280;margin-bottom:32px;font-size:14px;line-height:1.5}.email-display{color:#3b82f6;font-weight:600}.otp-input-group{display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:12px;margin-bottom:32px}.otp-input{width:48px;height:56px;font-size:24px;font-weight:700;border-radius:4px;background:#fff;color:#111827;-webkit-transition:.2s;-o-transition:.2s;transition:.2s}.otp-input.filled{border-color:#10b981;background:#f0fdf4}.otp-input.error{border-color:#ef4444;background:#fef2f2}.otp-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:16px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.verification-success{text-align:center;padding:40px 20px;-webkit-animation:.5s ease-out fadeInScale;animation:.5s ease-out fadeInScale}.verification-success h3{color:#065f46;margin-bottom:8px;font-size:24px}.verification-success p{color:#6b7280;font-size:14px}@-webkit-keyframes fadeInScale{from{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes fadeInScale{from{opacity:0;-webkit-transform:scale(.8);transform:scale(.8)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@media screen and (max-width:768px){.form-options,.form-row{-webkit-box-orient:vertical;-webkit-box-direction:normal}.auth-title{font-size:24px}.form-row{-ms-flex-direction:column;flex-direction:column;gap:0}.otp-input-group{gap:8px}.otp-input{width:40px;height:48px;font-size:20px}.form-options{-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;gap:12px}}@media screen and (max-width:480px){.otp-input{width:36px;height:44px;font-size:18px}.btn{font-size:14px;padding:10px 20px;min-height:44px}}@media (prefers-contrast:high){.btn,.form-control{border-width:1px}}@media (prefers-reduced-motion:reduce){.btn,.form-control,.otp-input,.verification-success{-webkit-transition:none;-o-transition:none;transition:none;-webkit-animation:none;animation:none}.btn:hover{-webkit-transform:none;-ms-transform:none;transform:none}}