.user-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 240px;
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
    z-index: var(--z-dropdown);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.user-dropdown-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(255, 255, 255, 0.02);
}
.dropdown-user-info { display: flex; align-items: center; gap: 0.65rem; }
.dropdown-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}
.dropdown-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dropdown-user-details h4 {
    font-size: 0.82rem;
    font-weight: var(--font-weight-semibold);
    color: var(--store-text);
    margin: 0;
    letter-spacing: -0.01em;
}
.dropdown-user-details p {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.28);
    margin: 0;
    font-family: var(--font-body);
}

.dropdown-menu { list-style: none; padding: 0.3rem 0; margin: 0; }
.dropdown-divider { height: 1px; background: rgba(255, 255, 255, 0.055); margin: 0.2rem 0; }

.dropdown-item a,
.dropdown-item button {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.8rem;
    font-family: var(--font-display);
    font-weight: var(--font-weight-medium);
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    min-height: 38px;
    touch-action: manipulation;
    letter-spacing: -0.01em;
}
.dropdown-item a:hover,
.dropdown-item button:hover {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
}
.dropdown-item i {
    width: 14px;
    text-align: center;
    color: rgba(104, 190, 124, 0.6);
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: color 0.15s;
}
.dropdown-item a:hover i,
.dropdown-item button:hover i { color: var(--store-primary); }
.dropdown-item.danger a:hover,
.dropdown-item.danger button:hover {
    background: rgba(255, 69, 58, 0.06);
    color: var(--store-error);
}
.dropdown-item.danger i { color: rgba(255, 69, 58, 0.5); }
.dropdown-item.danger a:hover i,
.dropdown-item.danger button:hover i { color: var(--store-error); }

.store-footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    color: var(--store-text);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.footer-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; }
.footer-orbs { position: absolute; width: 100%; height: 100%; }
.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.05;
    animation: orbFloat 16s ease-in-out infinite;
}
.footer-orb-1 { width: 400px; height: 400px; background: var(--store-primary); top: 10%; left: 5%; }
.footer-orb-2 { width: 280px; height: 280px; background: var(--store-secondary); top: 60%; right: 8%; animation-delay: 6s; }
.footer-orb-3 { width: 200px; height: 200px; background: var(--store-primary-light); bottom: 20%; left: 65%; animation-delay: 12s; }

.footer-content {
    position: relative;
    z-index: 10;
    padding: 4rem 0 2.5rem;
}

.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 3rem; }

.footer-brand { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-logo { width: 44px; height: 44px; border-radius: 10px; overflow: hidden; display: block; }
.footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--store-primary), var(--store-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
}

.footer-social { display: flex; gap: 0.5rem; margin-top: 0.25rem; flex-wrap: wrap; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.2s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.footer-social a:hover {
    background: var(--store-primary);
    color: #000;
    border-color: var(--store-primary);
    transform: translateY(-2px);
}
.footer-social a i { font-size: 0.95rem; }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-column h4 {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    margin-bottom: 0.875rem;
    font-weight: var(--font-weight-semibold);
    position: relative;
    padding-bottom: 0;
    letter-spacing: -0.01em;
}
.footer-column h4::after { display: none; }
.footer-column ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    font-size: 0.78rem;
    font-family: var(--font-body);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    min-height: 30px;
    letter-spacing: -0.005em;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.footer-column ul li a:hover { color: rgba(255, 255, 255, 0.75); }

.footer-middle {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.newsletter-section { display: flex; flex-direction: column; gap: 1.1rem; }
.newsletter-content h4 {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.02em;
}
.newsletter-content p { color: rgba(255, 255, 255, 0.28); margin: 0; font-family: var(--font-body); line-height: 1.5; font-size: 0.8rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.6rem; }
.newsletter-input-group {
    display: flex;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-full);
    padding: 0.25rem;
    transition: border-color 0.2s;
}
.newsletter-input-group:focus-within {
    border-color: rgba(104, 190, 124, 0.3);
    box-shadow: 0 0 0 3px rgba(104, 190, 124, 0.06);
}
.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--store-text);
    padding: 0.55rem 1rem;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    min-height: 38px;
    touch-action: manipulation;
}
.newsletter-input-group input::placeholder { color: rgba(255, 255, 255, 0.2); }
.newsletter-input-group button {
    background: var(--store-primary);
    color: #000;
    border: none;
    border-radius: var(--radius-full);
    padding: 0.55rem 1.1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    font-size: 0.8rem;
    font-family: var(--font-display);
    min-height: 38px;
    touch-action: manipulation;
}
.newsletter-input-group button:hover { background: #80d494; }
.newsletter-privacy { font-size: 0.7rem; color: rgba(255, 255, 255, 0.2); font-family: var(--font-body); line-height: 1.4; }
.newsletter-privacy a { color: rgba(104, 190, 124, 0.6); text-decoration: none; }
.newsletter-privacy a:hover { color: var(--store-primary); }

.footer-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.footer-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, background 0.2s;
    min-height: 52px;
}
.footer-feature:hover { background: rgba(255, 255, 255, 0.035); border-color: rgba(255, 255, 255, 0.08); }
.feature-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(104, 190, 124, 0.07);
    border: 1px solid rgba(104, 190, 124, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(104, 190, 124, 0.7);
}
.feature-icon i { font-size: 0.95rem; }
.feature-content h5 { color: rgba(255, 255, 255, 0.65); font-size: 0.75rem; margin: 0 0 0.1rem; font-weight: var(--font-weight-semibold); letter-spacing: -0.01em; }
.feature-content p { color: rgba(255, 255, 255, 0.25); font-size: 0.68rem; margin: 0; font-family: var(--font-body); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.25rem;
}
.footer-copyright p { color: rgba(255, 255, 255, 0.2); margin: 0; font-size: 0.75rem; font-family: var(--font-body); }
.footer-certifications { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.certification {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.35rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s;
    min-height: 36px;
    min-width: 36px;
    touch-action: manipulation;
}
.certification:hover { background: rgba(104, 190, 124, 0.07); color: var(--store-primary); transform: translateY(-1px); }
.certification i { font-size: 0.85rem; }

.footer-payment {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-family: var(--font-body);
    flex-wrap: wrap;
}
.payment-methods { display: flex; gap: 0.3rem; flex-wrap: wrap; align-items: center; }
.payment-methods i { font-size: 1.35rem; color: rgba(255, 255, 255, 0.18); transition: all 0.2s; cursor: default; }
.payment-methods i:hover { color: rgba(255, 255, 255, 0.4); }

@media (max-width: 1200px) { .footer-top { gap: 2.5rem; } .footer-links { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .footer-content { padding: 3rem 0 2rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .footer-middle { grid-template-columns: 1fr; gap: 1.75rem; padding: 1.5rem 0; }
    .footer-features { grid-template-columns: 1fr; gap: 0.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.875rem; }
    .newsletter-input-group { flex-direction: column; padding: 0.4rem; gap: 0.4rem; border-radius: var(--radius-xl); }
    .newsletter-input-group button { width: 100%; justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-payment { justify-content: center; }
}
@media (max-width: 576px) {
    .footer-links { grid-template-columns: 1fr; text-align: center; gap: 1.25rem; }
    .footer-brand { align-items: center; text-align: center; }
}