/* ===================================
   StickItLab Layout - Figma Design Match
   =================================== */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f9fafb;
    color: #111827;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* Dark Mode Base */
.dark body,
body.dark {
    background-color: #111827;
    color: #f3f4f6;
}

/* Fixed Background Image - Homepage */
.home-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.home-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-texture.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.08;
}

.home-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(249, 250, 251, 0.95) 0%,
        rgba(249, 250, 251, 0.85) 50%,
        rgba(249, 250, 251, 0.95) 100%
    );
}

/* Dark Mode Background */
.dark .home-background::before {
    opacity: 0.05;
}

.dark .home-background::after {
    background: linear-gradient(180deg,
        rgba(17, 24, 39, 0.95) 0%,
        rgba(17, 24, 39, 0.85) 50%,
        rgba(17, 24, 39, 0.95) 100%
    );
}

/* ===================================
   Dark Mode Toggle Button
   =================================== */
.stickitlab-theme-toggle {
    position: relative;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.stickitlab-theme-toggle:hover {
    background: #f3e8ff;
}

.dark .stickitlab-theme-toggle:hover {
    background: rgba(139, 92, 246, 0.3);
}

/* Show/hide icons based on mode */
.stickitlab-icon-sun {
    display: none;
    color: #facc15;
}

.stickitlab-icon-moon {
    display: block;
    color: #374151;
}

.dark .stickitlab-icon-sun {
    display: block;
}

.dark .stickitlab-icon-moon {
    display: none;
}

/* ===================================
   Header - Matching Figma Header.tsx
   =================================== */
.stickitlab-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.15s ease;
}

/* WordPress Admin Bar - offset header when logged in */
.admin-bar .stickitlab-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .stickitlab-header {
        top: 46px;
    }
}

.stickitlab-header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

@media (min-width: 640px) {
    .stickitlab-header-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .stickitlab-header-container {
        padding: 0 2rem;
    }
}

/* Logo */
.stickitlab-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.stickitlab-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .stickitlab-logo-img {
        height: 48px;
    }
}

/* Navigation */
.stickitlab-nav {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .stickitlab-nav {
        display: flex;
    }
}

.stickitlab-nav-item {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: all 0.15s ease;
    background: transparent;
}

.stickitlab-nav-item:hover {
    background: #f3e8ff;
}

.stickitlab-nav-item.active {
    background: linear-gradient(to right, #a855f7, #ec4899);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Header Right */
.stickitlab-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stickitlab-cart-btn {
    position: relative;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.stickitlab-cart-btn:hover {
    background: #f3e8ff;
}

.stickitlab-cart-count {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.25rem;
    background: #ec4899;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.stickitlab-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    order: 3;
}

.stickitlab-mobile-toggle:hover {
    background: #f3e8ff;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger to X animation */
.stickitlab-mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.stickitlab-mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.stickitlab-mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide hamburger on desktop */
@media (min-width: 768px) {
    .stickitlab-mobile-toggle {
        display: none;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .stickitlab-header-container {
        flex-wrap: wrap;
    }

    .stickitlab-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        animation: slideDown 0.3s ease;
    }

    .stickitlab-nav.active {
        display: flex;
    }

    .stickitlab-nav-item {
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        font-size: 1rem;
        text-align: left;
        background: transparent;
    }

    .stickitlab-nav-item:hover {
        background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    }

    .stickitlab-nav-item.active {
        background: linear-gradient(to right, #a855f7, #ec4899);
    }

    .stickitlab-header-right {
        order: 2;
    }

    .stickitlab-logo {
        order: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode - Mobile Menu */
.dark .stickitlab-mobile-toggle:hover {
    background: rgba(139, 92, 246, 0.3);
}

.dark .hamburger-line {
    background: #d1d5db;
}

@media (max-width: 767px) {
    .dark .stickitlab-nav {
        background: rgba(17, 24, 39, 0.98);
        border-top-color: rgba(255, 255, 255, 0.05);
    }
}

.dark .stickitlab-nav-item:hover {
    background: rgba(139, 92, 246, 0.2);
}

/* ===================================
   Footer - Matching Figma Footer.tsx
   =================================== */
.stickitlab-footer {
    background: white;
    border-top: 1px solid #e5e7eb;
    margin-top: 4rem;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.stickitlab-footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .stickitlab-footer-container {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .stickitlab-footer-container {
        padding: 3rem 2rem;
    }
}

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

@media (min-width: 768px) {
    .stickitlab-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stickitlab-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Footer Brand */
.stickitlab-footer-brand .footer-logo {
    margin-bottom: 1rem;
}

.stickitlab-footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .stickitlab-footer-logo-img {
        height: 100px;
    }
}

.stickitlab-footer-brand > p {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.stickitlab-footer-brand .email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.stickitlab-footer-brand .email svg {
    width: 1rem;
    height: 1rem;
}

.stickitlab-footer-brand .email a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s ease;
}

.stickitlab-footer-brand .email a:hover {
    color: #9333ea;
}

/* Footer Navigation */
.stickitlab-footer-nav h4,
.stickitlab-footer-legal h4,
.stickitlab-footer-info h4,
.stickitlab-footer-contact h4 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 500;
}

.stickitlab-footer-nav ul,
.stickitlab-footer-legal ul,
.stickitlab-footer-info ul {
    list-style: none;
}

.stickitlab-footer-nav li,
.stickitlab-footer-legal li,
.stickitlab-footer-info li {
    margin-bottom: 0.5rem;
}

.stickitlab-footer-nav a,
.stickitlab-footer-legal a {
    font-size: 0.875rem;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s ease;
}

.stickitlab-footer-nav a:hover,
.stickitlab-footer-legal a:hover {
    color: #9333ea;
}

.stickitlab-footer-legal li,
.stickitlab-footer-info li {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Footer Contact Form */
.stickitlab-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stickitlab-contact-form input,
.stickitlab-contact-form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: white;
    color: #111827;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.stickitlab-contact-form input::placeholder,
.stickitlab-contact-form textarea::placeholder {
    color: #6b7280;
}

.stickitlab-contact-form input:focus,
.stickitlab-contact-form textarea:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

.stickitlab-contact-form textarea {
    resize: none;
}

.stickitlab-contact-form button {
    width: 100%;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, #a855f7, #ec4899);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: box-shadow 0.15s ease;
}

.stickitlab-contact-form button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stickitlab-contact-form button svg {
    width: 1rem;
    height: 1rem;
}

/* Footer Bottom */
.stickitlab-footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .stickitlab-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.stickitlab-footer-bottom p {
    font-size: 0.875rem;
    color: #4b5563;
}

.stickitlab-footer-bottom .credit {
    font-size: 0.75rem;
    color: #6b7280;
}

.stickitlab-footer-bottom .credit a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s ease;
}

.stickitlab-footer-bottom .credit a:hover {
    color: #9333ea;
}

/* ===================================
   Homepage Sections
   =================================== */
.stickitlab-main {
    min-height: calc(100vh - 4.5rem - 300px);
}

/* ===================================
   Generic Page Content
   =================================== */
.stickitlab-page-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .stickitlab-page-content {
        padding: 3rem 2rem;
    }
}

.stickitlab-page-content article {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.dark .stickitlab-page-content article {
    background: #1f2937;
}

.stickitlab-page-content .entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.dark .stickitlab-page-content .entry-header {
    border-bottom-color: #374151;
}

.stickitlab-page-content .entry-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.dark .stickitlab-page-content .entry-title {
    color: #f3f4f6;
}

.stickitlab-page-content .entry-meta {
    font-size: 0.875rem;
    color: #6b7280;
}

.stickitlab-page-content .entry-meta span {
    margin-right: 1rem;
}

.stickitlab-page-content .entry-content {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
}

.dark .stickitlab-page-content .entry-content {
    color: #d1d5db;
}

.stickitlab-page-content .entry-content h2,
.stickitlab-page-content .entry-content h3,
.stickitlab-page-content .entry-content h4 {
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.dark .stickitlab-page-content .entry-content h2,
.dark .stickitlab-page-content .entry-content h3,
.dark .stickitlab-page-content .entry-content h4 {
    color: #f3f4f6;
}

.stickitlab-page-content .entry-content p {
    margin-bottom: 1rem;
}

.stickitlab-page-content .entry-content a {
    color: #9333ea;
    text-decoration: underline;
}

.stickitlab-page-content .entry-content a:hover {
    color: #7c3aed;
}

.stickitlab-page-content .entry-thumbnail {
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.stickitlab-page-content .entry-thumbnail img {
    width: 100%;
    height: auto;
}

.stickitlab-page-content .entry-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.dark .stickitlab-page-content .entry-footer {
    border-top-color: #374151;
}

.stickitlab-page-content .post-categories,
.stickitlab-page-content .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stickitlab-page-content .post-categories span,
.stickitlab-page-content .post-tags span {
    color: #6b7280;
    margin-right: 0.5rem;
}

.stickitlab-page-content .post-categories a,
.stickitlab-page-content .post-tags a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(to right, #f3e8ff, #fce7f3);
    color: #7c3aed;
    border-radius: 9999px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.15s ease;
}

.stickitlab-page-content .post-categories a:hover,
.stickitlab-page-content .post-tags a:hover {
    background: linear-gradient(to right, #e9d5ff, #fbcfe8);
}

.dark .stickitlab-page-content .post-categories a,
.dark .stickitlab-page-content .post-tags a {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
}

/* Post Navigation */
.post-navigation {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation a {
    display: block;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.15s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dark .post-navigation a {
    background: #1f2937;
}

.post-navigation a:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.post-navigation .nav-title {
    display: block;
    color: #9333ea;
    font-weight: 500;
}

/* ===================================
   Hero Slider
   =================================== */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 700px;
    height: 85vh;
    max-height: 900px;
    overflow: hidden;
    background: #111827;
}

@media (max-width: 767px) {
    .hero-slider {
        min-height: 700px;
        height: auto;
        max-height: none;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(0);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide exit animations */
.hero-slide.exit-left {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.hero-slide.exit-right {
    opacity: 0;
    transform: translateX(100%);
    z-index: 1;
}

/* Slide enter animations */
.hero-slide.enter-left {
    transform: translateX(100%);
    opacity: 0;
}

.hero-slide.enter-right {
    transform: translateX(-100%);
    opacity: 0;
}

.hero-slide.enter-left.active,
.hero-slide.enter-right.active {
    transform: translateX(0);
    opacity: 1;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay gradient for text readability */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(17, 24, 39, 0.85) 0%,
        rgba(17, 24, 39, 0.6) 40%,
        rgba(17, 24, 39, 0.4) 100%
    );
    z-index: 1;
}

/* Hero content on slider */
.hero-slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Inner container to match header width */
.hero-slider-text {
    width: 100%;
    max-width: 80rem;
    padding: 0;
}

/* Limit text width for readability */
.hero-slider-text h1,
.hero-slider-text p {
    max-width: 650px;
}

@media (max-width: 767px) {
    .hero-slider-content {
        padding: 4rem 1rem 6rem;
        align-items: flex-start;
        padding-top: 80px;
    }
}

@media (min-width: 640px) {
    .hero-slider-content {
        padding: 3rem 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-slider-content {
        padding: 4rem 1rem;
    }
}

@media (max-width: 767px) {
    .hero-slider-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 520px;
    }
}

.hero-slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #a855f7, #ec4899, #facc15);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

@media (max-width: 767px) {
    .hero-slider-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }
}

.hero-slider-badge svg {
    width: 1rem;
    height: 1rem;
}

.hero-slider-text h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease 0.1s both;
}

@media (max-width: 767px) {
    .hero-slider-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
}

@media (min-width: 640px) {
    .hero-slider-text h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-slider-text h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-slider-text h1 {
        font-size: 4rem;
    }
}

.hero-slider-text h1 span {
    background: linear-gradient(to right, #a855f7, #ec4899, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slider-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

@media (max-width: 767px) {
    .hero-slider-text p {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
        line-height: 1.8;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .hero-slider-text p {
        font-size: 1.25rem;
    }
}

.hero-slider-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

@media (max-width: 767px) {
    .hero-slider-buttons {
        gap: 0.875rem;
        margin-top: auto;
    }

    .hero-slider-buttons .stickitlab-btn {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 640px) {
    .hero-slider-buttons {
        flex-direction: row;
    }
}

/* Slider controls */
.hero-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

@media (max-width: 767px) {
    .hero-controls {
        padding: 1.25rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-controls {
        padding: 2rem 6rem;
    }
}

/* Progress bar */
.hero-progress {
    flex: 1;
    max-width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #a855f7, #ec4899);
    border-radius: 2px;
}

/* Dots navigation */
.hero-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-dot.active {
    background: linear-gradient(to right, #a855f7, #ec4899);
    border-color: white;
    transform: scale(1.2);
}

/* Slide counter */
.hero-counter {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    min-width: 60px;
    text-align: right;
}

.hero-counter .current {
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark mode adjustments */
.dark .hero-slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(17, 24, 39, 0.9) 0%,
        rgba(17, 24, 39, 0.7) 40%,
        rgba(17, 24, 39, 0.5) 100%
    );
}

/* Hero Section */
.stickitlab-hero-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

@media (min-width: 640px) {
    .stickitlab-hero-section {
        padding: 2rem 1.5rem 3rem;
    }
}

@media (min-width: 768px) {
    .stickitlab-hero-section {
        padding: 3rem 2rem;
    }
}

.stickitlab-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 700px;
}

@media (min-width: 1024px) {
    .stickitlab-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.stickitlab-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #a855f7, #ec4899, #facc15);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.stickitlab-hero-badge svg {
    width: 1rem;
    height: 1rem;
}

.stickitlab-hero-content h1 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #9333ea, #db2777, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .stickitlab-hero-content h1 {
        font-size: 3rem;
    }
}

.stickitlab-hero-content > p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.stickitlab-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .stickitlab-hero-buttons {
        flex-direction: row;
    }
}

.stickitlab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
}

.stickitlab-btn-primary {
    background: linear-gradient(to right, #a855f7, #ec4899);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stickitlab-btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.stickitlab-btn-secondary {
    background: white;
    color: #9333ea;
    border: 2px solid #a855f7;
}

.stickitlab-btn-secondary:hover {
    background: #faf5ff;
}

/* Hero Image */
.stickitlab-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.stickitlab-hero-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

.stickitlab-hero-image::before,
.stickitlab-hero-image::after {
    content: '';
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.2;
}

.stickitlab-hero-image::before {
    background: linear-gradient(to bottom right, #facc15, #ec4899);
    bottom: -1.5rem;
    right: -1.5rem;
}

.stickitlab-hero-image::after {
    background: linear-gradient(to bottom right, #c084fc, #3b82f6);
    top: -1.5rem;
    left: -1.5rem;
}

/* How It Works */
.stickitlab-how-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 4rem;
}

@media (min-width: 640px) {
    .stickitlab-how-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .stickitlab-how-section {
        padding: 1.25rem 2rem 6rem;
    }
}

.stickitlab-section-title {
    font-size: 1.875rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1f2937;
}

.stickitlab-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
}

/* Hide chevrons on mobile and tablet */
.stickitlab-step-chevron {
    display: none;
}

/* Tablet: 2x2 grid without chevrons */
@media (min-width: 768px) {
    .stickitlab-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop: Single row with all 4 cards and chevrons */
@media (min-width: 1024px) {
    .stickitlab-steps-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 1rem;
    }

    .stickitlab-step-card {
        flex: 1;
        max-width: 220px;
    }

    .stickitlab-step-chevron {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 300;
        color: #6b7280;
        flex-shrink: 0;
    }
}

.stickitlab-step-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    padding-top: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stickitlab-step-number {
    position: absolute;
    top: -0.75rem;
    left: -0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.stickitlab-step-number.purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
.stickitlab-step-number.pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.stickitlab-step-number.yellow { background: linear-gradient(135deg, #eab308, #ca8a04); }
.stickitlab-step-number.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.stickitlab-step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stickitlab-step-icon.purple { background: linear-gradient(135deg, #c084fc, #9333ea); }
.stickitlab-step-icon.pink { background: linear-gradient(135deg, #f472b6, #db2777); }
.stickitlab-step-icon.yellow { background: linear-gradient(135deg, #facc15, #ca8a04); }
.stickitlab-step-icon.blue { background: linear-gradient(135deg, #60a5fa, #2563eb); }

.stickitlab-step-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.stickitlab-step-card h3 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.stickitlab-step-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Features Section */
.stickitlab-features-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 4rem;
}

@media (min-width: 640px) {
    .stickitlab-features-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .stickitlab-features-section {
        padding: 1.25rem 2rem 6rem;
    }
}

.stickitlab-features-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .stickitlab-features-card {
        padding: 3rem;
    }
}

.stickitlab-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stickitlab-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stickitlab-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stickitlab-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.stickitlab-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stickitlab-feature-icon.purple { background: #f3e8ff; }
.stickitlab-feature-icon.pink { background: #fce7f3; }
.stickitlab-feature-icon.yellow { background: rgba(250, 204, 21, 0.2); }

.stickitlab-feature-icon.purple svg { color: #9333ea; }
.stickitlab-feature-icon.pink svg { color: #db2777; }
.stickitlab-feature-icon.yellow svg { color: #ca8a04; }

.stickitlab-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.stickitlab-feature-item h3 {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.stickitlab-feature-item p {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Testimonials Section */
.stickitlab-testimonials-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 4rem;
}

@media (min-width: 640px) {
    .stickitlab-testimonials-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .stickitlab-testimonials-section {
        padding: 1.25rem 2rem 6rem;
    }
}

.stickitlab-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stickitlab-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stickitlab-testimonial-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stickitlab-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stickitlab-testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: #facc15;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.author-location {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Why Choose Us Section */
.stickitlab-why-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 4rem;
}

@media (min-width: 640px) {
    .stickitlab-why-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .stickitlab-why-section {
        padding: 1.25rem 2rem 6rem;
    }
}

.stickitlab-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stickitlab-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stickitlab-why-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stickitlab-why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.tips-card .why-card-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.limits-card .why-card-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.quality-card .why-card-icon {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #9333ea;
}

.shipping-card .why-card-icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.stickitlab-why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.why-card-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Pro Tips List */
.why-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-tips-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    border-bottom: 1px solid #f3f4f6;
}

.why-tips-list li:last-child {
    border-bottom: none;
}

.why-tips-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.why-tips-list li strong {
    color: #111827;
    display: block;
    margin-bottom: 0.25rem;
}

/* Account Limits */
.why-limits-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.limit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.limit-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.limit-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Spec Badges */
.why-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.spec-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    color: #9333ea;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Shipping Prices */
.shipping-prices {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.shipping-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
}

.shipping-region {
    font-size: 0.9rem;
    color: #4b5563;
}

.shipping-cost {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

/* Dark Mode - Testimonials */
.dark .stickitlab-testimonial-card {
    background: #1f2937;
}

.dark .testimonial-text {
    color: #9ca3af;
}

.dark .author-name {
    color: #f3f4f6;
}

.dark .author-location {
    color: #6b7280;
}

/* Dark Mode - Why Choose Us */
.dark .stickitlab-why-card {
    background: #1f2937;
}

.dark .stickitlab-why-card h3 {
    color: #f3f4f6;
}

.dark .why-card-text {
    color: #9ca3af;
}

.dark .why-tips-list li {
    color: #9ca3af;
    border-bottom-color: #374151;
}

.dark .why-tips-list li strong {
    color: #f3f4f6;
}

.dark .limit-label {
    color: #9ca3af;
}

.dark .spec-badge {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
}

.dark .shipping-price-item {
    background: #374151;
}

.dark .shipping-region {
    color: #d1d5db;
}

/* Old Shipping Section - keeping for backwards compatibility */
.stickitlab-shipping-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 4rem;
}

@media (min-width: 640px) {
    .stickitlab-shipping-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .stickitlab-shipping-section {
        padding: 1.25rem 2rem 6rem;
    }
}

.stickitlab-shipping-banner {
    background: linear-gradient(to right, #eff6ff, rgba(224, 231, 255, 0.5));
    border: 2px solid #bfdbfe;
    border-radius: 1rem;
    padding: 2rem;
}

.stickitlab-shipping-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stickitlab-shipping-header svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.stickitlab-shipping-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1f2937;
}

.stickitlab-shipping-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stickitlab-shipping-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stickitlab-shipping-card {
    text-align: center;
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.stickitlab-shipping-card .label {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.stickitlab-shipping-card .price {
    font-size: 1.875rem;
    font-weight: 500;
    color: #2563eb;
}

.stickitlab-shipping-card .note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* CTA Section */
.stickitlab-cta-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 4rem;
}

@media (min-width: 640px) {
    .stickitlab-cta-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .stickitlab-cta-section {
        padding: 1.25rem 2rem 6rem;
    }
}

.stickitlab-cta-card {
    background: linear-gradient(to right, #a855f7, #ec4899, #facc15);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    color: white;
}

.stickitlab-cta-card h3 {
    font-size: 1.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.stickitlab-cta-card > p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.stickitlab-cta-card .stickitlab-btn {
    background: white;
    color: #9333ea;
}

.stickitlab-cta-card .stickitlab-btn:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* ===================================
   Login Prompt - Matching LoginPrompt.tsx
   =================================== */
.stickitlab-login-prompt {
    max-width: 28rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 4rem;
}

.stickitlab-login-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stickitlab-login-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, #c084fc, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stickitlab-login-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.stickitlab-login-card h2 {
    font-size: 1.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #9333ea, #db2777, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stickitlab-login-card > p {
    color: #4b5563;
    margin-bottom: 2rem;
}

.stickitlab-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stickitlab-login-buttons .stickitlab-btn {
    width: 100%;
}

/* ===================================
   My Account Page - Matching MyAccountPage.tsx
   =================================== */
.stickitlab-account-section {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

@media (min-width: 640px) {
    .stickitlab-account-section {
        padding: 2rem 1.5rem 3rem;
    }
}

@media (min-width: 768px) {
    .stickitlab-account-section {
        padding: 3rem 2rem;
    }
}

.stickitlab-account-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #9333ea, #db2777, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stickitlab-account-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .stickitlab-account-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stickitlab-profile-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stickitlab-profile-avatar {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #c084fc, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stickitlab-profile-avatar svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.stickitlab-profile-card h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.stickitlab-profile-card p {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.stickitlab-stat-card {
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stickitlab-stat-card.purple {
    background: linear-gradient(to bottom right, #faf5ff, #f3e8ff);
}

.stickitlab-stat-card.pink {
    background: linear-gradient(to bottom right, #fdf2f8, #fce7f3);
}

.stickitlab-stat-card .stat-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stickitlab-stat-card .stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stickitlab-stat-card.purple .stat-icon {
    background: #a855f7;
}

.stickitlab-stat-card.pink .stat-icon {
    background: #ec4899;
}

.stickitlab-stat-card .stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.stickitlab-stat-card .stat-value {
    font-size: 1.875rem;
    font-weight: 500;
}

.stickitlab-stat-card.purple .stat-value {
    color: #581c87;
}

.stickitlab-stat-card.pink .stat-value {
    color: #831843;
}

.stickitlab-stat-card .stat-label {
    font-size: 0.875rem;
}

.stickitlab-stat-card.purple .stat-label {
    color: #6b21a8;
}

.stickitlab-stat-card.pink .stat-label {
    color: #9d174d;
}

/* Account Tabs */
.stickitlab-account-tabs {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.stickitlab-tabs-header {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.stickitlab-tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stickitlab-tab-btn:hover {
    background: #f9fafb;
}

.stickitlab-tab-btn.active {
    background: linear-gradient(to right, #a855f7, #ec4899);
    color: white;
}

.stickitlab-tab-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.stickitlab-tabs-content {
    padding: 2rem;
}

/* Upload Grid */
.stickitlab-uploads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stickitlab-uploads-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .stickitlab-uploads-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stickitlab-upload-item {
    background: linear-gradient(to bottom right, #faf5ff, #fdf2f8);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: box-shadow 0.15s ease;
}

.stickitlab-upload-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stickitlab-upload-item .upload-preview {
    aspect-ratio: 1;
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.stickitlab-upload-item .upload-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.stickitlab-upload-item .upload-name {
    font-size: 0.875rem;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.stickitlab-upload-item .upload-date {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Empty State */
.stickitlab-empty-state {
    text-align: center;
    padding: 3rem;
}

.stickitlab-empty-state svg {
    width: 4rem;
    height: 4rem;
    color: #d1d5db;
    margin: 0 auto 1rem;
}

.stickitlab-empty-state h3 {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.stickitlab-empty-state p {
    color: #6b7280;
}

/* ===================================
   WooCommerce Override Styles
   =================================== */
.woocommerce-account .woocommerce {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.woocommerce-MyAccount-navigation {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.15s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: #f3e8ff;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: linear-gradient(to right, #a855f7, #ec4899);
    color: white;
}

.woocommerce-MyAccount-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.woocommerce form.login,
.woocommerce form.register {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.woocommerce form .form-row label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
    background: linear-gradient(to right, #a855f7, #ec4899) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.15s ease !important;
}

.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-1px);
}

/* ===================================
   DARK MODE STYLES
   =================================== */

/* Header - Dark Mode */
.dark .stickitlab-header {
    background: rgba(31, 41, 55, 0.9);
}

.dark .stickitlab-nav-item {
    color: #d1d5db;
    background: transparent;
}

.dark .stickitlab-nav-item:hover {
    background: rgba(139, 92, 246, 0.3);
}

.dark .stickitlab-nav-item.active {
    background: linear-gradient(to right, #a855f7, #ec4899);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.dark .stickitlab-cart-btn {
    color: #d1d5db;
}

.dark .stickitlab-cart-btn:hover {
    background: rgba(139, 92, 246, 0.3);
}

/* Hero Section - Dark Mode */
.dark .stickitlab-hero-content > p {
    color: #d1d5db;
}

.dark .stickitlab-btn-secondary {
    background: #1f2937;
    color: #c084fc;
    border-color: #a855f7;
}

.dark .stickitlab-btn-secondary:hover {
    background: rgba(139, 92, 246, 0.3);
}

/* Section Titles - Dark Mode */
.dark .stickitlab-section-title {
    color: #f3f4f6;
}

/* Step Cards - Dark Mode */
.dark .stickitlab-step-card {
    background: #1f2937;
}

.dark .stickitlab-step-card h3 {
    color: #f3f4f6;
}

.dark .stickitlab-step-card p {
    color: #9ca3af;
}

.dark .stickitlab-step-chevron {
    color: #6b7280;
}

/* Features Card - Dark Mode */
.dark .stickitlab-features-card {
    background: #1f2937;
}

.dark .stickitlab-feature-icon.purple {
    background: rgba(139, 92, 246, 0.3);
}

.dark .stickitlab-feature-icon.pink {
    background: rgba(236, 72, 153, 0.3);
}

.dark .stickitlab-feature-icon.yellow {
    background: rgba(250, 204, 21, 0.3);
}

.dark .stickitlab-feature-item h3 {
    color: #f3f4f6;
}

.dark .stickitlab-feature-item p {
    color: #9ca3af;
}

/* Shipping Banner - Dark Mode */
.dark .stickitlab-shipping-banner {
    background: linear-gradient(to right, rgba(30, 64, 175, 0.2), rgba(67, 56, 202, 0.2));
    border-color: #1e40af;
}

.dark .stickitlab-shipping-header h3 {
    color: #f3f4f6;
}

.dark .stickitlab-shipping-card {
    background: #1f2937;
}

.dark .stickitlab-shipping-card .label {
    color: #9ca3af;
}

.dark .stickitlab-shipping-card .price {
    color: #60a5fa;
}

.dark .stickitlab-shipping-card .note {
    color: #6b7280;
}

/* Footer - Dark Mode */
.dark .stickitlab-footer {
    background: #1f2937;
    border-top-color: #374151;
}

.dark .stickitlab-footer-brand > p {
    color: #9ca3af;
}

.dark .stickitlab-footer-brand .email {
    color: #6b7280;
}

.dark .stickitlab-footer-brand .email a {
    color: #6b7280;
}

.dark .stickitlab-footer-brand .email a:hover {
    color: #c084fc;
}

.dark .stickitlab-footer-nav h4,
.dark .stickitlab-footer-legal h4,
.dark .stickitlab-footer-info h4,
.dark .stickitlab-footer-contact h4 {
    color: #f3f4f6;
}

.dark .stickitlab-footer-nav a,
.dark .stickitlab-footer-legal a {
    color: #9ca3af;
}

.dark .stickitlab-footer-nav a:hover,
.dark .stickitlab-footer-legal a:hover {
    color: #c084fc;
}

.dark .stickitlab-footer-legal li,
.dark .stickitlab-footer-info li {
    color: #9ca3af;
}

.dark .stickitlab-contact-form input,
.dark .stickitlab-contact-form textarea {
    background: #374151;
    border-color: #4b5563;
    color: #f3f4f6;
}

.dark .stickitlab-contact-form input::placeholder,
.dark .stickitlab-contact-form textarea::placeholder {
    color: #9ca3af;
}

.dark .stickitlab-contact-form input:focus,
.dark .stickitlab-contact-form textarea:focus {
    border-color: #a855f7;
}

.dark .stickitlab-footer-bottom {
    border-top-color: #374151;
}

.dark .stickitlab-footer-bottom p {
    color: #9ca3af;
}

.dark .stickitlab-footer-bottom .credit {
    color: #6b7280;
}

.dark .stickitlab-footer-bottom .credit a {
    color: #6b7280;
}

.dark .stickitlab-footer-bottom .credit a:hover {
    color: #c084fc;
}

/* Login Card - Dark Mode */
.dark .stickitlab-login-card {
    background: #1f2937;
}

.dark .stickitlab-login-card > p {
    color: #9ca3af;
}

/* Profile/Account Cards - Dark Mode */
.dark .stickitlab-profile-card {
    background: #1f2937;
}

.dark .stickitlab-profile-card h3 {
    color: #f3f4f6;
}

.dark .stickitlab-profile-card p {
    color: #9ca3af;
}

.dark .stickitlab-stat-card.purple {
    background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.3), rgba(192, 132, 252, 0.2));
}

.dark .stickitlab-stat-card.pink {
    background: linear-gradient(to bottom right, rgba(236, 72, 153, 0.3), rgba(244, 114, 182, 0.2));
}

.dark .stickitlab-stat-card.purple .stat-value {
    color: #c084fc;
}

.dark .stickitlab-stat-card.pink .stat-value {
    color: #f472b6;
}

.dark .stickitlab-stat-card.purple .stat-label {
    color: #c084fc;
}

.dark .stickitlab-stat-card.pink .stat-label {
    color: #f472b6;
}

/* Account Tabs - Dark Mode */
.dark .stickitlab-account-tabs {
    background: #1f2937;
}

.dark .stickitlab-tabs-header {
    border-bottom-color: #374151;
}

.dark .stickitlab-tab-btn {
    color: #d1d5db;
}

.dark .stickitlab-tab-btn:hover {
    background: #374151;
}

/* Upload Items - Dark Mode */
.dark .stickitlab-upload-item {
    background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
}

.dark .stickitlab-upload-item .upload-preview {
    background: #374151;
}

.dark .stickitlab-upload-item .upload-name {
    color: #f3f4f6;
}

.dark .stickitlab-upload-item .upload-date {
    color: #9ca3af;
}

/* Empty State - Dark Mode */
.dark .stickitlab-empty-state svg {
    color: #4b5563;
}

.dark .stickitlab-empty-state h3 {
    color: #d1d5db;
}

.dark .stickitlab-empty-state p {
    color: #9ca3af;
}

/* WooCommerce - Dark Mode */
.dark .woocommerce-MyAccount-navigation {
    background: #1f2937;
}

.dark .woocommerce-MyAccount-navigation ul li a {
    color: #d1d5db;
}

.dark .woocommerce-MyAccount-navigation ul li a:hover {
    background: rgba(139, 92, 246, 0.3);
}

.dark .woocommerce-MyAccount-content {
    background: #1f2937;
}

.dark .woocommerce form.login,
.dark .woocommerce form.register {
    background: #1f2937;
}

.dark .woocommerce form .form-row label {
    color: #d1d5db;
}

.dark .woocommerce form .form-row input.input-text,
.dark .woocommerce form .form-row textarea {
    background: #374151;
    border-color: #4b5563;
    color: #f3f4f6;
}

.dark .woocommerce form .form-row input.input-text:focus,
.dark .woocommerce form .form-row textarea:focus {
    border-color: #a855f7;
}

/* ============================================
   LOGIN REQUIRED SECTION
   ============================================ */
.stickitlab-login-required {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.stickitlab-login-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    max-width: 540px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.stickitlab-login-icon {
    margin-bottom: 24px;
}

.stickitlab-login-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.stickitlab-login-subtitle {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.stickitlab-login-benefits {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.stickitlab-login-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #374151;
    font-size: 15px;
}

.stickitlab-login-benefits .benefit-item svg {
    color: #9333ea;
    flex-shrink: 0;
}

.stickitlab-login-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.stickitlab-login-actions .stickitlab-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stickitlab-btn-large {
    padding: 16px 32px !important;
    font-size: 16px !important;
}

.stickitlab-login-note {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.stickitlab-login-note a {
    color: #9333ea;
    text-decoration: none;
}

.stickitlab-login-note a:hover {
    text-decoration: underline;
}

/* Dark Mode - Login Required */
.dark .stickitlab-login-card {
    background: #1f2937;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.dark .stickitlab-login-card h2 {
    color: #f3f4f6;
}

.dark .stickitlab-login-subtitle {
    color: #9ca3af;
}

.dark .stickitlab-login-benefits {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.15));
}

.dark .stickitlab-login-benefits .benefit-item {
    color: #d1d5db;
}

.dark .stickitlab-login-note {
    color: #6b7280;
}

/* ============================================
   LEGAL PAGES STYLING
   ============================================ */
.stickitlab-legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.stickitlab-legal-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stickitlab-legal-page .last-updated {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 40px;
}

.stickitlab-legal-page h2 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin: 40px 0 16px 0;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.stickitlab-legal-page h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.stickitlab-legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 12px 0;
}

.stickitlab-legal-page p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 16px 0;
}

.stickitlab-legal-page ul,
.stickitlab-legal-page ol {
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.stickitlab-legal-page li {
    margin-bottom: 8px;
}

.stickitlab-legal-page a {
    color: #9333ea;
    text-decoration: none;
}

.stickitlab-legal-page a:hover {
    text-decoration: underline;
}

.stickitlab-legal-page .contact-info {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.stickitlab-legal-page .contact-info p {
    margin: 8px 0;
}

/* Dark Mode - Legal Pages */
.dark .stickitlab-legal-page h1 {
    background: linear-gradient(135deg, #a855f7, #f472b6, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark .stickitlab-legal-page .last-updated {
    color: #9ca3af;
}

.dark .stickitlab-legal-page h2 {
    color: #f3f4f6;
    border-top-color: #374151;
}

.dark .stickitlab-legal-page h3 {
    color: #d1d5db;
}

.dark .stickitlab-legal-page p,
.dark .stickitlab-legal-page ul,
.dark .stickitlab-legal-page ol {
    color: #9ca3af;
}

.dark .stickitlab-legal-page .contact-info {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.15));
}

/* ============================================
   RESPONSIVE - Login & Legal
   ============================================ */
@media (max-width: 640px) {
    .stickitlab-login-card {
        padding: 32px 24px;
    }

    .stickitlab-login-card h2 {
        font-size: 24px;
    }

    .stickitlab-login-actions {
        flex-direction: column;
    }

    .stickitlab-legal-page h1 {
        font-size: 28px;
    }

    .stickitlab-legal-page h2 {
        font-size: 20px;
    }
}

/* ============================================
   AUTHENTICATION PAGES
   Registration, Login, Guest Checkout
   ============================================ */
.stickitlab-auth-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: stretch;
}

/* Remove footer margin on auth pages */
.page-template-page-login .stickitlab-footer,
.page-template-page-register .stickitlab-footer,
.page-template-page-guest-checkout .stickitlab-footer {
    margin-top: 0;
}

.stickitlab-auth-container {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .stickitlab-auth-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left Side - Branding */
.stickitlab-auth-branding {
    display: none;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .stickitlab-auth-branding {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.auth-branding-content {
    position: relative;
    z-index: 1;
    max-width: 480px;
}

.auth-logo {
    margin-bottom: 32px;
}

.auth-logo img {
    height: 80px;
    width: auto;
}

.stickitlab-auth-branding h1 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #ec4899, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.stickitlab-auth-branding > .auth-branding-content > p {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 48px 0;
}

/* Auth Features */
.auth-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.auth-feature .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-feature .feature-icon svg {
    color: #c084fc;
}

.auth-feature .feature-text h3 {
    color: #f3f4f6;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.auth-feature .feature-text p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Right Side - Form */
.stickitlab-auth-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #111827;
}

@media (min-width: 640px) {
    .stickitlab-auth-form-wrapper {
        padding: 60px 40px;
    }
}

.stickitlab-auth-card {
    width: 100%;
    max-width: 440px;
    background: #1f2937;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
    .stickitlab-auth-card {
        padding: 32px 24px;
    }
}

.auth-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-card-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f3f4f6;
    margin: 0 0 8px 0;
}

.auth-card-header p {
    color: #9ca3af;
    font-size: 15px;
    margin: 0;
}

/* Auth Error/Success Messages */
.stickitlab-auth-error {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 24px;
}

.stickitlab-auth-error svg {
    flex-shrink: 0;
    color: #ef4444;
}

.stickitlab-auth-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 24px;
}

.stickitlab-auth-success svg {
    flex-shrink: 0;
    color: #22c55e;
}

/* Auth Form Styles */
.stickitlab-auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stickitlab-auth-form .form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .stickitlab-auth-form .form-row-group {
        grid-template-columns: 1fr;
    }
}

.stickitlab-auth-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stickitlab-auth-form label {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 500;
}

.stickitlab-auth-form label .required {
    color: #f472b6;
}

.stickitlab-auth-form input[type="text"],
.stickitlab-auth-form input[type="email"],
.stickitlab-auth-form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 12px;
    color: #f3f4f6;
    font-size: 15px;
    transition: all 0.2s ease;
}

.stickitlab-auth-form input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.stickitlab-auth-form input::placeholder {
    color: #6b7280;
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 48px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: #9ca3af;
}

.field-hint {
    color: #6b7280;
    font-size: 12px;
}

/* Checkbox Styling */
.form-row-checkbox {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-color: transparent;
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label input:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.checkbox-text {
    color: #9ca3af;
    line-height: 1.5;
}

.checkbox-text a {
    color: #c084fc;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Auth Buttons */
.stickitlab-btn-full {
    width: 100%;
}

.stickitlab-btn-outline {
    background: transparent !important;
    border: 2px solid #4b5563 !important;
    color: #d1d5db !important;
}

.stickitlab-btn-outline:hover {
    border-color: #a855f7 !important;
    color: #c084fc !important;
    background: rgba(168, 85, 247, 0.1) !important;
}

/* Auth Footer */
.auth-card-footer {
    text-align: center;
    margin-top: 24px;
}

.auth-card-footer p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

.auth-card-footer a {
    color: #c084fc;
    text-decoration: none;
    font-weight: 500;
}

.auth-card-footer a:hover {
    text-decoration: underline;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #374151;
}

.auth-divider span {
    color: #6b7280;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Guest Note */
.guest-note {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    margin: 12px 0 0 0;
}

/* ============================================
   LOGIN PAGE IMPROVED
   ============================================ */
.stickitlab-login-prompt .woocommerce-login-form-wrapper {
    text-align: left;
}

.stickitlab-login-prompt .woocommerce form.login {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.dark .stickitlab-login-prompt .woocommerce form.login {
    background: transparent;
}

.stickitlab-login-prompt .woocommerce form .form-row {
    margin-bottom: 16px;
}

.stickitlab-login-prompt .woocommerce form .form-row label {
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.dark .stickitlab-login-prompt .woocommerce form .form-row label {
    color: #d1d5db;
}

.stickitlab-login-prompt .woocommerce form .form-row input.input-text {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.dark .stickitlab-login-prompt .woocommerce form .form-row input.input-text {
    background: #374151;
    border-color: #4b5563;
    color: #f3f4f6;
}

.stickitlab-login-prompt .woocommerce form .form-row input.input-text:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.stickitlab-login-prompt .woocommerce form .form-row.form-row-wide {
    display: flex;
    flex-direction: column;
}

.stickitlab-login-prompt .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 16px 0;
}

.stickitlab-login-prompt .woocommerce-form-login__rememberme input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #a855f7;
}

.stickitlab-login-prompt .woocommerce button.button {
    width: 100%;
    padding: 14px 24px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
}

.stickitlab-login-prompt .woocommerce-LostPassword {
    text-align: center;
    margin-top: 16px;
}

.stickitlab-login-prompt .woocommerce-LostPassword a {
    color: #9333ea;
    font-size: 14px;
}

.dark .stickitlab-login-prompt .woocommerce-LostPassword a {
    color: #c084fc;
}

/* Register Link in Login Card */
.dark .stickitlab-register-link {
    border-top-color: #374151 !important;
}

.dark .stickitlab-register-link p {
    color: #9ca3af !important;
}

/* ============================================
   GUEST CHECKOUT NOTICE
   ============================================ */
.stickitlab-guest-notice {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stickitlab-guest-notice .notice-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stickitlab-guest-notice .notice-icon svg {
    color: white;
}

.stickitlab-guest-notice .notice-content h4 {
    color: #f3f4f6;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.stickitlab-guest-notice .notice-content p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

.stickitlab-guest-notice .notice-content a {
    color: #c084fc;
    text-decoration: none;
}

.stickitlab-guest-notice .notice-content a:hover {
    text-decoration: underline;
}

/* ============================================
   AUTH PAGES RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
    .stickitlab-auth-card {
        border-radius: 20px;
    }

    .auth-card-header h2 {
        font-size: 24px;
    }

    .stickitlab-auth-form input[type="text"],
    .stickitlab-auth-form input[type="email"],
    .stickitlab-auth-form input[type="password"] {
        padding: 12px 14px;
    }
}
