/* assets/css/style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --text-primary: #0a0a0a;
    --text-secondary: #666666;
    --accent: #d4af37;
    --border: #e0e0e0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25em 2.5em;
    z-index: 1100;
    transition: all 0.3s ease;
    background: transparent;
}

nav.scrolled {
    backdrop-filter: blur(20px);
    background: rgb(251 251 251 / 95%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 0.9375em 2.5em;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5em;
    font-weight: 900;
    letter-spacing: -2px;
    cursor: pointer;
    color:#000;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5em;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-size: 0.875em;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s ease;
}

.nav-menu > li:hover > a::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu > li.mega-menu-open > a::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu > li.mega-menu-open > a svg {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 90vw;
    max-width: 1200px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 1099;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3em;
}

.mega-menu-column h4 {
    font-size: 0.875em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 1em;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 0.75em;
}

.mega-menu-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875em;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.mega-menu-column ul li a:hover {
    color: var(--text-primary);
}

.mega-menu-promo {
    background: var(--bg-secondary);
    padding: 1.5em;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.mega-menu-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.mega-menu-promo h4 {
    color: var(--accent);
    margin-bottom: 0.5em;
    position: relative;
    z-index: 1;
}

.mega-menu-promo p {
    font-size: 0.875em;
    color: var(--text-secondary);
    margin-bottom: 1em;
    position: relative;
    z-index: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25em;
}

.nav-icon {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 0.5em;
    position: relative;
    transition: transform 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.cart-count, .wishlist-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    width: 1.125em;
    height: 1.125em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875em;
    font-weight: bold;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5em;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-secondary);
    transition: left 0.3s ease;
    z-index: 1102;
    padding: 5em 2.5em 2.5em;
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: none;
    z-index: 1101;
}

.mobile-menu-overlay.show {
    display: block;
}

/* Mobile Menu Items */
.mobile-menu-item {
    margin-bottom: 1em;
}

.mobile-menu-item > a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.125em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 0;
}

.mobile-menu-item > a svg {
    width: 1em;
    height: 1em;
    transition: transform 0.3s ease;
}

.mobile-menu-item.active > a svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.open {
    max-height: 500px;
}

.mobile-submenu ul {
    list-style: none;
    padding: 0.5em 0 0.5em 1em;
}

.mobile-submenu ul li {
    margin-bottom: 0.75em;
}

.mobile-submenu ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375em;
}

/* Hero Section */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider-new {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide-new.active {
    opacity: 1;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-media video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-overlay.gradient {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content-new {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.hero-text-new {
    text-align: left;
    color: #fff;
    max-width: 800px;
}

.hero-text-new.center {
    text-align: center;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .line {
    display: block;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-title .outline {
    -webkit-text-stroke: 2px #fff;
    -webkit-text-fill-color: transparent;
}

.hero-title.sale .huge {
    font-size: clamp(5rem, 12vw, 10rem);
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background: #fff;
    color: #000;
}

.hero-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn.accent {
    background: var(--accent);
    color: #000;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 3;
    pointer-events: none;
}

.hero-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.hero-nav-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 3;
}

.hero-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 5s linear;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 3;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #fff;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-20px); }
    100% { transform: translateY(80px); }
}

/* Categories Grid */
.categories-grid {
    background: var(--bg-primary);
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.category-card {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: rgba(0,0,0,0.6);
}

.category-overlay h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.category-link {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

/* Featured Products */
.featured-products {
    background: var(--bg-primary);
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

}

.product-card-lime {
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image-lime {
    position: relative;
    aspect-ratio: 3/4;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-lime:hover .product-image-lime {
    background-size: 100%;
}

/* Hover Actions */
.product-hover-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card-lime:hover .product-hover-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-btn svg {
    width: 18px;
    height: 18px;
    stroke: #000;
}

/* Size Selector */
.size-selector {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card-lime:hover .size-selector {
    transform: translateY(0);
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.875rem;
    background: #000;
    color: #fff;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.add-to-cart-btn:hover {
    background: var(--accent);
    color: #000;
}

/* Product Info */
.product-info-lime {
    padding: 1rem 0;
    text-align: left;
}

.product-name-lime {
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.product-price-lime {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.price-old {
    text-decoration: line-through;
    font-weight: 400;
    color: var(--text-secondary);
}

.price-current {
    font-weight: 500;
    color: var(--text-primary);
}

.price-current.sale {
    color: #d73502;
    font-weight: 600;
}

/* View All Section */
.view-all-section {
    text-align: center;
    margin-top: 4rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: #000;
    border: none;
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Brand Story */
.brand-story {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.story-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 0 1rem;
}

.story-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.story-title {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.story-title .accent {
    color: var(--accent);
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.story-link {
    display: inline-block;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.story-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.story-link:hover::after {
    width: 100%;
}

.story-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:24px;
}

/* Newsletter */
.newsletter {
    padding: 6.25em 3.75em;
    background: var(--accent);
    color: #000;
}

.newsletter input {
    flex: 1;
    padding: 1.25em;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #fff;
    color: #000;
    font-size: 1em;
    font-weight: 500;
}

.newsletter input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.newsletter button {
    padding: 1.25em 2.5em;
    background: #fff;
    color: var(--accent);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
}

.newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    padding: 5em 3.75em 2.5em;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--text-primary);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--bg-primary);
    border-left: 1px solid var(--border);
    transition: right 0.4s ease;
    z-index: 1103;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1104;
    padding: 1.25em;
}

.quick-view-modal.show {
    display: flex;
}

.quick-view-content {
    background: var(--bg-primary);
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    max-height: 90vh;
    overflow: auto;
}

.quick-view-close {
    position: absolute;
    top: 1.25em;
    right: 1.25em;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.875em;
    cursor: pointer;
    z-index: 1;
}

.quick-view-image {
    height: 31.25em;
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-info {
    padding: 2.5em;
}

.quick-view-info h2 {
    font-size: 2em;
    font-weight: 900;
    margin-bottom: 1.25em;
    text-transform: uppercase;
}

.quick-view-price {
    font-size: 1.75em;
    color: var(--accent);
    margin-bottom: 1.875em;
}

.quick-view-actions {
    display: flex;
    gap: 1.25em;
    margin-top: 2.5em;
}

/* Auth Modal */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1104;
}

/* ===== USER MENU STYLES ===== */
.user-menu {
    position: relative;
}

.user-button {
    display: flex;
    align-items: center;
    gap: 0.5em;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5em;
    transition: color 0.3s ease;
}

.user-button:hover {
    color: var(--accent);
}

.user-name {
    font-size: 0.875em;
    font-weight: 500;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 1em;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
}

.user-info {
    padding: 1.5em;
    border-bottom: 1px solid var(--border);
}

.user-greeting {
    font-weight: 600;
    margin-bottom: 0.25em;
    color: var(--text-primary);
}

.user-email {
    font-size: 0.875em;
    color: var(--text-secondary);
}

.user-menu-list {
    list-style: none;
    padding: 0.5em 0;
}

.user-menu-list li {
    margin: 0;
}

.user-menu-list a {
    display: block;
    padding: 0.75em 1.5em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.user-menu-list a:hover {
    background: var(--bg-primary);
    color: var(--accent);
    padding-left: 2em;
}

/* Разделитель перед выходом */
.user-menu-list li:last-child {
    border-top: 1px solid var(--border);
    margin-top: 0.5em;
    padding-top: 0.5em;
}

/* ===== FORM ERROR STYLES ===== */
.form-error {
    color: #ff4444;
    font-size: 0.875em;
    margin-top: 0.5em;
    padding: 0.75em;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 4px;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ===== LOADING STATES ===== */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== SUCCESS NOTIFICATION ===== */
.notification-success {
    background: #4caf50 !important;
    color: white !important;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .user-name {
        display: none;
    }
    
    .user-dropdown {
        right: -10px;
        min-width: 200px;
    }
    
    .user-dropdown::before {
        right: 15px;
    }
}

.auth-modal.show {
    display: flex;
}

.auth-content {
    background: var(--bg-primary);
    padding: 3.75em;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    border-radius:20px;
}

.auth-close {
    position: absolute;
    top: 1.25em;
    right: 1.25em;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5em;
    cursor: pointer;
}

.auth-form input {
    width: 100%;
    padding: 0.9375em;
    margin-bottom: 1.25em;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1em;
}

.auth-form button {
    width: 100%;
    padding: 0.9375em;
    background: var(--accent);
    color: #000;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.125em 2.5em;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875em;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Product Action Button */
.product-action-btn {
    width: 2.5em;
    height: 2.5em;
    background: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.product-action-btn svg {
    stroke: #fff;
    width: 1.25em;
    height: 1.25em;
}

.product-action-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.product-action-btn:hover svg {
    stroke: #000;
}

/* Form elements */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 0.8s ease-in-out infinite;
}

/* Notification Toast */
.notification {
    position: fixed;
    bottom: 2em;
    right: 2em;
    background: var(--accent);
    color: #000;
    padding: 1em 2em;
    border-radius: 4px;
    font-weight: 600;
    z-index: 3000;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1400px) {
    .mega-menu {
        width: 95vw;
    }
    
    .products-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2em;
    }
    
    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.9375em 1.25em;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-actions {
        gap: 0.625em;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }
    
    .hero-nav {
        display: none;
    }
    
    .category-cards {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 300px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image {
        height: 400px;
    }

    .quick-view-content {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .newsletter form {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }
    
    .product-info-lime {
        padding: 0.75rem 0;
    }
    
    .product-name-lime {
        font-size: 0.75rem;
    }
    
    .product-price-lime {
        font-size: 0.75rem;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
    }
    
    .size-selector {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

/* Print styles */
@media print {
    nav, footer, .nav-actions, .product-actions, .cta-button {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}