/**
 * Syntekpro-Toggle - Dark Mode Styles
 * CSS Variables for All WordPress Block Themes
 */

/* ===================================
   Default Light Mode (Theme Variables)
   =================================== */
:root {
    /* Smooth transitions for all color changes */
    --syntekpro-transition-duration: 0.3s;
    --syntekpro-toggle-animation-duration: 0.3s;
    --syntekpro-transition: background-color var(--syntekpro-transition-duration) ease, color var(--syntekpro-transition-duration) ease, border-color var(--syntekpro-transition-duration) ease;
}

html.syntekpro-animations-disabled * {
    transition: none !important;
    animation: none !important;
}

html.syntekpro-reduced-motion * {
    transition: none !important;
    animation: none !important;
}

html.syntekpro-focus-strong .syntekpro-toggle-btn:focus {
    outline: 3px solid #6ea8fe;
    outline-offset: 3px;
}

html.syntekpro-focus-minimal .syntekpro-toggle-btn:focus {
    outline: 1px dashed #6ea8fe;
    outline-offset: 2px;
}

html.syntekpro-focus-default .syntekpro-toggle-btn:focus {
    outline: 2px solid #6ea8fe;
    outline-offset: 2px;
}

/* ===================================
   Dark Mode Overrides
   Compatible with ALL Block Themes
   =================================== */
html.dark-mode,
html.dark-mode body {
    /* Twenty Twenty-Five variables */
    --wp--preset--color--base: #1a1a1a !important;
    --wp--preset--color--contrast: #ffffff !important;
    --wp--preset--color--primary: #ffffff !important;
    --wp--preset--color--secondary: #e0e0e0 !important;
    --wp--preset--color--tertiary: #cccccc !important;
    
    /* Twenty Twenty-Four variables */
    --wp--preset--color--base-2: #2d2d2d !important;
    --wp--preset--color--accent: #6ea8fe !important;
    --wp--preset--color--accent-2: #9ec5fe !important;
    
    /* Twenty Twenty-Three variables */
    --wp--preset--color--background: #1a1a1a !important;
    --wp--preset--color--foreground: #ffffff !important;
    
    /* General block theme variables */
    --wp--style--root--padding-top: 0;
    --wp--style--root--padding-bottom: 0;
    
    /* Custom fallback colors */
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    
    /* Smooth transition */
    transition: var(--syntekpro-transition);
}

/* Text elements in dark mode */
html.dark-mode body,
html.dark-mode p,
html.dark-mode h1,
html.dark-mode h2,
html.dark-mode h3,
html.dark-mode h4,
html.dark-mode h5,
html.dark-mode h6,
html.dark-mode span,
html.dark-mode div {
    color: #ffffff;
    transition: var(--syntekpro-transition);
}

/* Links in dark mode */
html.dark-mode a {
    color: #6ea8fe;
    transition: var(--syntekpro-transition);
}

html.dark-mode a:hover {
    color: #9ec5fe;
}

/* Headers and navigation in dark mode */
html.dark-mode header,
html.dark-mode nav,
html.dark-mode footer {
    background-color: #2d2d2d !important;
    color: #ffffff !important;
    transition: var(--syntekpro-transition);
}

/* Content areas in dark mode */
html.dark-mode article,
html.dark-mode section,
html.dark-mode main {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    transition: var(--syntekpro-transition);
}

/* Input fields and forms in dark mode */
html.dark-mode input,
html.dark-mode textarea,
html.dark-mode select {
    background-color: #2d2d2d !important;
    color: #ffffff !important;
    border-color: #444444 !important;
    transition: var(--syntekpro-transition);
}

/* Buttons in dark mode */
html.dark-mode button,
html.dark-mode .wp-block-button__link {
    background-color: #383838 !important;
    color: #ffffff !important;
    border-color: #555555 !important;
    transition: var(--syntekpro-transition);
}

/* Code blocks in dark mode */
html.dark-mode code,
html.dark-mode pre {
    background-color: #2d2d2d !important;
    color: #f8f8f2 !important;
    border-color: #444444 !important;
    transition: var(--syntekpro-transition);
}

/* Tables in dark mode */
html.dark-mode table,
html.dark-mode th,
html.dark-mode td {
    background-color: #2d2d2d !important;
    color: #ffffff !important;
    border-color: #444444 !important;
    transition: var(--syntekpro-transition);
}

/* Sidebar and widgets in dark mode */
html.dark-mode aside,
html.dark-mode .widget {
    background-color: #2d2d2d !important;
    color: #ffffff !important;
    transition: var(--syntekpro-transition);
}

/* WordPress blocks support */
html.dark-mode .wp-block-cover,
html.dark-mode .wp-block-group,
html.dark-mode .wp-block-columns,
html.dark-mode .wp-block-media-text {
    color: #ffffff !important;
}

html.dark-mode .wp-block-cover__inner-container,
html.dark-mode .wp-block-group__inner-container {
    color: inherit;
}

html.dark-mode .wp-block-button__link {
    background-color: #383838 !important;
    color: #ffffff !important;
}

html.dark-mode .wp-block-search__button {
    background-color: #383838 !important;
    color: #ffffff !important;
}

html.dark-mode .wp-block-navigation,
html.dark-mode .wp-block-navigation__container {
    background-color: transparent;
}

html.dark-mode .wp-block-navigation-item a {
    color: #ffffff !important;
}

/* ===================================
   Images, Videos, and Slides Filters
   =================================== */

/* Image filters in dark mode - exclude images inside slide containers */
html.dark-mode img:not(.slides img):not(.slide img):not(.presentation img):not([class*="slide"] img):not(.reveal img):not(.slideshare img) {
    filter: brightness(var(--syntekpro-image-brightness, 1)) contrast(var(--syntekpro-image-contrast, 1)) !important;
    transition: filter 0.3s ease;
}

/* Video filters in dark mode - exclude videos inside slide containers */
html.dark-mode video:not(.slides video):not(.slide video):not(.presentation video):not([class*="slide"] video):not(.reveal video):not(.slideshare video),
html.dark-mode embed[type*="video"]:not(.slides embed):not(.slide embed):not(.presentation embed):not([class*="slide"] embed):not(.reveal embed):not(.slideshare embed),
html.dark-mode object[type*="video"]:not(.slides object):not(.slide object):not(.presentation object):not([class*="slide"] object):not(.reveal object):not(.slideshare object) {
    filter: brightness(var(--syntekpro-video-brightness, 1)) contrast(var(--syntekpro-video-contrast, 1)) !important;
    transition: filter 0.3s ease;
}

/* Iframe filters (YouTube, Vimeo, etc.) - exclude iframes inside slide containers */
html.dark-mode iframe:not(.slides iframe):not(.slide iframe):not(.presentation iframe):not([class*="slide"] iframe):not(.reveal iframe):not(.slideshare iframe) {
    filter: brightness(var(--syntekpro-video-brightness, 1)) contrast(var(--syntekpro-video-contrast, 1)) !important;
    transition: filter 0.3s ease;
}

/* Slide filters - apply to slide containers and their content */
html.dark-mode .slides,
html.dark-mode .slide,
html.dark-mode .presentation,
html.dark-mode [class*="slide"],
html.dark-mode [data-transition],
html.dark-mode .reveal,
html.dark-mode .slideshare {
    filter: brightness(var(--syntekpro-slide-brightness, 1)) invert(var(--syntekpro-slide-invert, 0)) !important;
    transition: filter 0.3s ease;
}

/* WordPress gallery images */
html.dark-mode .wp-block-gallery img,
html.dark-mode .gallery img,
html.dark-mode .wp-block-image img {
    filter: brightness(var(--syntekpro-image-brightness, 1)) contrast(var(--syntekpro-image-contrast, 1)) !important;
}

/* WordPress video block */
html.dark-mode .wp-block-video video,
html.dark-mode .wp-block-video iframe,
html.dark-mode .wp-block-embed iframe {
    filter: brightness(var(--syntekpro-video-brightness, 1)) contrast(var(--syntekpro-video-contrast, 1)) !important;
}

/* ===================================
   Toggle Button Styles - Base
   =================================== */
.syntekpro-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333333;
    color: #ffffff;
    border: 2px solid #555555;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all var(--syntekpro-toggle-animation-duration) ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.syntekpro-toggle-inline {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0;
}

.syntekpro-toggle-btn:hover {
    background-color: #444444;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.syntekpro-toggle-btn:active {
    transform: scale(0.95);
}

/* Icon container */
.syntekpro-toggle-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.syntekpro-toggle-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.syntekpro-toggle-btn .syntekpro-icon-custom {
    display: none;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

.syntekpro-toggle-btn .syntekpro-icon-custom img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: filter var(--syntekpro-toggle-animation-duration) ease;
    filter: brightness(0) saturate(100%) invert(16%) sepia(6%) saturate(5%) hue-rotate(342deg) brightness(95%) contrast(88%);
}

.syntekpro-toggle-btn.has-custom-icon .syntekpro-icon-custom {
    display: flex;
}

.syntekpro-toggle-btn.has-custom-icon .syntekpro-icon-sun,
.syntekpro-toggle-btn.has-custom-icon .syntekpro-icon-moon {
    display: none !important;
}

html.dark-mode .syntekpro-toggle-btn.has-custom-icon .syntekpro-icon-custom img,
.syntekpro-toggle-btn.has-custom-icon.is-dark .syntekpro-icon-custom img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(183deg) brightness(104%) contrast(102%);
}

/* Icon visibility - Sun shows in dark mode, Moon shows in light mode */
.syntekpro-icon-sun {
    display: none;
}

.syntekpro-icon-moon {
    display: block;
}

html.dark-mode .syntekpro-icon-sun {
    display: block;
}

html.dark-mode .syntekpro-icon-moon {
    display: none;
}

/* Light mode button appearance */
html:not(.dark-mode) .syntekpro-toggle-btn {
    background-color: #f0f0f0;
    color: #333333;
    border-color: #cccccc;
}

html:not(.dark-mode) .syntekpro-toggle-btn:hover {
    background-color: #e0e0e0;
}

/* ===================================
   Toggle Button Themes
   =================================== */

/* Theme: Default (classic circular) */
.syntekpro-toggle-btn.theme-default {
    /* Already styled by base styles */
}

/* Theme: Minimal */
.syntekpro-toggle-btn.theme-minimal {
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
html.dark-mode .syntekpro-toggle-btn.theme-minimal {
    background-color: #212529;
    color: #f8f9fa;
    border-color: #495057;
}
.syntekpro-toggle-btn.theme-minimal:hover {
    background-color: #e9ecef;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
html.dark-mode .syntekpro-toggle-btn.theme-minimal:hover {
    background-color: #343a40;
}

/* Theme: Neumorphic */
.syntekpro-toggle-btn.theme-neumorphic {
    background: #e0e5ec;
    color: #333;
    border: none;
    box-shadow: 8px 8px 16px #a3b1c6, -8px -8px 16px #ffffff;
}
html.dark-mode .syntekpro-toggle-btn.theme-neumorphic {
    background: #2c3e50;
    color: #ecf0f1;
    box-shadow: 8px 8px 16px #1a252f, -8px -8px 16px #3e5771;
}
.syntekpro-toggle-btn.theme-neumorphic:hover {
    box-shadow: 4px 4px 8px #a3b1c6, -4px -4px 8px #ffffff;
}
html.dark-mode .syntekpro-toggle-btn.theme-neumorphic:hover {
    box-shadow: 4px 4px 8px #1a252f, -4px -4px 8px #3e5771;
}

/* Theme: Glassmorphic */
.syntekpro-toggle-btn.theme-glassmorphic {
    background: rgba(255, 255, 255, 0.25);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
html.dark-mode .syntekpro-toggle-btn.theme-glassmorphic {
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}
.syntekpro-toggle-btn.theme-glassmorphic:hover {
    background: rgba(255, 255, 255, 0.35);
}
html.dark-mode .syntekpro-toggle-btn.theme-glassmorphic:hover {
    background: rgba(0, 0, 0, 0.35);
}

/* Theme: Neon */
.syntekpro-toggle-btn.theme-neon {
    background: #0a0e27;
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px #00ffff, inset 0 0 20px rgba(0, 255, 255, 0.2);
}
html.dark-mode .syntekpro-toggle-btn.theme-neon {
    color: #ff00ff;
    border-color: #ff00ff;
    box-shadow: 0 0 20px #ff00ff, inset 0 0 20px rgba(255, 0, 255, 0.2);
}
.syntekpro-toggle-btn.theme-neon:hover {
    box-shadow: 0 0 30px #00ffff, inset 0 0 30px rgba(0, 255, 255, 0.3);
    transform: scale(1.1);
}
html.dark-mode .syntekpro-toggle-btn.theme-neon:hover {
    box-shadow: 0 0 30px #ff00ff, inset 0 0 30px rgba(255, 0, 255, 0.3);
}

/* Theme: Gradient */
.syntekpro-toggle-btn.theme-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
html.dark-mode .syntekpro-toggle-btn.theme-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}
.syntekpro-toggle-btn.theme-gradient:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Theme: Retro */
.syntekpro-toggle-btn.theme-retro {
    background: linear-gradient(45deg, #ff006e, #ffbe0b);
    color: #fff;
    border: 3px solid #000;
    border-radius: 8px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
}
html.dark-mode .syntekpro-toggle-btn.theme-retro {
    background: linear-gradient(45deg, #00b4d8, #90e0ef);
    border-color: #023e8a;
    box-shadow: 4px 4px 0 rgba(2, 62, 138, 0.8);
}
.syntekpro-toggle-btn.theme-retro:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

/* Theme: Modern */
.syntekpro-toggle-btn.theme-modern {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
html.dark-mode .syntekpro-toggle-btn.theme-modern {
    background: #fff;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.syntekpro-toggle-btn.theme-modern:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Theme: Flat */
.syntekpro-toggle-btn.theme-flat {
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: none;
}
html.dark-mode .syntekpro-toggle-btn.theme-flat {
    background: #e74c3c;
}
.syntekpro-toggle-btn.theme-flat:hover {
    background: #2980b9;
}
html.dark-mode .syntekpro-toggle-btn.theme-flat:hover {
    background: #c0392b;
}

/* Theme: Material */
.syntekpro-toggle-btn.theme-material {
    background: #2196F3;
    color: #fff;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.2);
}
html.dark-mode .syntekpro-toggle-btn.theme-material {
    background: #FF9800;
}
.syntekpro-toggle-btn.theme-material:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Theme: iOS Style */
.syntekpro-toggle-btn.theme-ios {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
html.dark-mode .syntekpro-toggle-btn.theme-ios {
    background: linear-gradient(180deg, #3a3a3c 0%, #2c2c2e 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}
.syntekpro-toggle-btn.theme-ios:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

/* Theme: Cyberpunk */
.syntekpro-toggle-btn.theme-cyberpunk {
    background: linear-gradient(135deg, #f72585, #7209b7, #3a0ca3);
    color: #00ff41;
    border: 1px solid #00ff41;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.6);
}
html.dark-mode .syntekpro-toggle-btn.theme-cyberpunk {
    background: linear-gradient(135deg, #06ffa5, #0a84ff, #bf0eff);
    color: #000;
    border-color: #000;
    box-shadow: 0 0 20px rgba(10, 132, 255, 0.6);
}
.syntekpro-toggle-btn.theme-cyberpunk:hover {
    box-shadow: 0 0 30px rgba(247, 37, 133, 0.8);
}

/* Theme: Elegant */
.syntekpro-toggle-btn.theme-elegant {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
    border: 2px solid rgba(236, 240, 241, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
html.dark-mode .syntekpro-toggle-btn.theme-elegant {
    background: linear-gradient(135deg, #bdc3c7, #95a5a6);
    color: #2c3e50;
    border-color: rgba(44, 62, 80, 0.2);
}
.syntekpro-toggle-btn.theme-elegant:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Theme: Playful */
.syntekpro-toggle-btn.theme-playful {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.5);
    animation: playful-bounce 2s infinite;
}
html.dark-mode .syntekpro-toggle-btn.theme-playful {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.5);
}
.syntekpro-toggle-btn.theme-playful:hover {
    animation: playful-wiggle 0.5s;
}
@keyframes playful-bounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-3px); }
}
@keyframes playful-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Theme: Professional */
.syntekpro-toggle-btn.theme-professional {
    background: #1a1a2e;
    color: #eee;
    border: 1px solid #16213e;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
html.dark-mode .syntekpro-toggle-btn.theme-professional {
    background: #f8f9fa;
    color: #1a1a2e;
    border-color: #dee2e6;
}
.syntekpro-toggle-btn.theme-professional:hover {
    background: #0f3460;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
html.dark-mode .syntekpro-toggle-btn.theme-professional:hover {
    background: #e9ecef;
}

/* Theme: Square */
.syntekpro-toggle-btn.theme-square {
    background: #444;
    color: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
html.dark-mode .syntekpro-toggle-btn.theme-square {
    background: #ddd;
    color: #333;
}
.syntekpro-toggle-btn.theme-square:hover {
    background: #555;
}
html.dark-mode .syntekpro-toggle-btn.theme-square:hover {
    background: #ccc;
}

/* Theme: Pill */
.syntekpro-toggle-btn.theme-pill {
    background: #5e60ce;
    color: #fff;
    border: none;
    border-radius: 25px;
    width: 70px;
    box-shadow: 0 4px 12px rgba(94, 96, 206, 0.4);
}
html.dark-mode .syntekpro-toggle-btn.theme-pill {
    background: #80ed99;
    color: #333;
    box-shadow: 0 4px 12px rgba(128, 237, 153, 0.4);
}
.syntekpro-toggle-btn.theme-pill:hover {
    box-shadow: 0 6px 16px rgba(94, 96, 206, 0.6);
}

/* Theme: Hexagon */
.syntekpro-toggle-btn.theme-hexagon {
    background: #ff6b6b;
    color: #fff;
    border: none;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}
html.dark-mode .syntekpro-toggle-btn.theme-hexagon {
    background: #51cf66;
    box-shadow: 0 4px 12px rgba(81, 207, 102, 0.4);
}
.syntekpro-toggle-btn.theme-hexagon:hover {
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.6);
}

/* Theme: Diamond */
.syntekpro-toggle-btn.theme-diamond {
    background: #4ecdc4;
    color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.4);
}
html.dark-mode .syntekpro-toggle-btn.theme-diamond {
    background: #ffd93d;
    color: #333;
    box-shadow: 0 4px 12px rgba(255, 217, 61, 0.4);
}
.syntekpro-toggle-btn.theme-diamond:hover {
    transform: scale(1.1) rotate(45deg);
}
.syntekpro-toggle-btn.theme-diamond span {
    transform: rotate(45deg);
}
.syntekpro-toggle-btn.theme-diamond:hover span {
    transform: rotate(0deg);
}

/* Theme: Morphing */
.syntekpro-toggle-btn.theme-morphing {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #fff;
    border: none;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
    animation: morph-shape 3s infinite;
}
html.dark-mode .syntekpro-toggle-btn.theme-morphing {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 4px 15px rgba(48, 207, 208, 0.4);
}
.syntekpro-toggle-btn.theme-morphing:hover {
    animation-duration: 1s;
}
@keyframes morph-shape {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* ===================================
   Additional Button Designs
   =================================== */

/* Theme: Soft Shadow */
.syntekpro-toggle-btn.theme-soft-shadow {
    background: #fff;
    color: #333;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
html.dark-mode .syntekpro-toggle-btn.theme-soft-shadow {
    background: #27272a;
    color: #fff;
    border-color: #3f3f46;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.syntekpro-toggle-btn.theme-soft-shadow:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* Theme: Outline */
.syntekpro-toggle-btn.theme-outline {
    background: transparent;
    color: #333;
    border: 3px solid #333;
}
html.dark-mode .syntekpro-toggle-btn.theme-outline {
    color: #fff;
    border-color: #fff;
}
.syntekpro-toggle-btn.theme-outline:hover {
    background: rgba(51, 51, 51, 0.1);
    transform: scale(1.15);
}
html.dark-mode .syntekpro-toggle-btn.theme-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Theme: Floating */
.syntekpro-toggle-btn.theme-floating {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
html.dark-mode .syntekpro-toggle-btn.theme-floating {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5), 0 4px 10px rgba(0, 0, 0, 0.5);
}
.syntekpro-toggle-btn.theme-floating:hover {
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4), 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
}

/* Theme: Glow */
.syntekpro-toggle-btn.theme-glow {
    background: #00d4ff;
    color: #000;
    border: none;
    box-shadow: 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 60px #00d4ff;
}
html.dark-mode .syntekpro-toggle-btn.theme-glow {
    background: #ff00ff;
    box-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff, 0 0 60px #ff00ff;
}
.syntekpro-toggle-btn.theme-glow:hover {
    box-shadow: 0 0 30px #00d4ff, 0 0 60px #00d4ff, 0 0 90px #00d4ff, inset 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Theme: Brutalist */
.syntekpro-toggle-btn.theme-brutalist {
    background: #1a1a1a;
    color: #fff;
    border: 4px solid #fff;
    box-shadow: none;
    border-radius: 0;
}
html.dark-mode .syntekpro-toggle-btn.theme-brutalist {
    background: #fff;
    color: #000;
    border-color: #000;
}
.syntekpro-toggle-btn.theme-brutalist:hover {
    transform: translate(2px, 2px);
    background: #333;
}
html.dark-mode .syntekpro-toggle-btn.theme-brutalist:hover {
    background: #e0e0e0;
}

/* Theme: 3D */
.syntekpro-toggle-btn.theme-3d {
    background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    border: 3px solid #0284c7;
    box-shadow: 
        0 5px 0 #0284c7,
        0 10px 20px rgba(0, 0, 0, 0.3);
}
html.dark-mode .syntekpro-toggle-btn.theme-3d {
    background: linear-gradient(180deg, #ff6b9d 0%, #c44569 100%);
    border-color: #8b2d47;
    box-shadow: 
        0 5px 0 #8b2d47,
        0 10px 20px rgba(0, 0, 0, 0.5);
}
.syntekpro-toggle-btn.theme-3d:active {
    transform: translate(0, 5px);
    box-shadow: 0 0 0 #0284c7, 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Theme: Neon Pulse */
.syntekpro-toggle-btn.theme-neon-pulse {
    background: #0a0e27;
    color: #0ff;
    border: 2px solid #0ff;
    box-shadow: 0 0 10px #0ff;
    animation: neon-pulse 2s infinite;
}
html.dark-mode .syntekpro-toggle-btn.theme-neon-pulse {
    color: #f0f;
    border-color: #f0f;
    box-shadow: 0 0 10px #f0f;
}
.syntekpro-toggle-btn.theme-neon-pulse:hover {
    animation-duration: 0.3s;
}
@keyframes neon-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), inset 0 0 10px rgba(0, 255, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), inset 0 0 20px rgba(0, 255, 255, 0.4); }
}

/* Theme: Aurora */
.syntekpro-toggle-btn.theme-aurora {
    background: linear-gradient(45deg, #00d4ff, #00ff87, #ff00d4, #00d4ff);
    background-size: 300% 300%;
    color: #fff;
    border: none;
    animation: aurora-shift 6s ease infinite;
}
html.dark-mode .syntekpro-toggle-btn.theme-aurora {
    background: linear-gradient(45deg, #ff006e, #ffbe0b, #06ffa5, #ff006e);
    background-size: 300% 300%;
    animation: aurora-shift 6s ease infinite;
}
.syntekpro-toggle-btn.theme-aurora:hover {
    animation-duration: 1s;
}
@keyframes aurora-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Theme: Hologram */
.syntekpro-toggle-btn.theme-hologram {
    background: rgba(0, 255, 255, 0.1);
    color: #0ff;
    border: 2px solid #0ff;
    box-shadow: 
        0 0 10px #0ff,
        inset 0 0 10px rgba(0, 255, 255, 0.3),
        0 0 20px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
html.dark-mode .syntekpro-toggle-btn.theme-hologram {
    background: rgba(255, 0, 255, 0.1);
    color: #f0f;
    border-color: #f0f;
    box-shadow: 
        0 0 10px #f0f,
        inset 0 0 10px rgba(255, 0, 255, 0.3),
        0 0 20px rgba(255, 0, 255, 0.2);
}
.syntekpro-toggle-btn.theme-hologram:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 
        0 0 20px #0ff,
        inset 0 0 20px rgba(0, 255, 255, 0.5),
        0 0 30px rgba(0, 255, 255, 0.3);
}

/* Theme: Vaporwave */
.syntekpro-toggle-btn.theme-vaporwave {
    background: linear-gradient(135deg, #ff006e, #d62839);
    color: #00ff41;
    border: 2px solid #00ff41;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
}
html.dark-mode .syntekpro-toggle-btn.theme-vaporwave {
    background: linear-gradient(135deg, #00d9ff, #0a00d9);
    color: #ffff00;
    border-color: #ffff00;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}
.syntekpro-toggle-btn.theme-vaporwave:hover {
    transform: scale(1.15) skew(-5deg);
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.8);
}

/* Theme: Aquamorphic */
.syntekpro-toggle-btn.theme-aquamorphic {
    background: linear-gradient(135deg, #0084ff, #00d4ff);
    color: #fff;
    border: none;
    border-radius: 30%;
    box-shadow: 0 8px 30px rgba(0, 132, 255, 0.4), inset -2px -2px 5px rgba(0, 0, 0, 0.1);
}
html.dark-mode .syntekpro-toggle-btn.theme-aquamorphic {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.4), inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}
.syntekpro-toggle-btn.theme-aquamorphic:hover {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow: 0 12px 40px rgba(0, 132, 255, 0.6), inset -3px -3px 8px rgba(0, 0, 0, 0.15);
}

/* Theme: Sunset */
.syntekpro-toggle-btn.theme-sunset {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #fdb833);
    color: #fff;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}
html.dark-mode .syntekpro-toggle-btn.theme-sunset {
    background: linear-gradient(135deg, #1a1a6e, #0f3c5d, #0f5f8f);
    box-shadow: 0 5px 20px rgba(15, 95, 143, 0.5);
}
.syntekpro-toggle-btn.theme-sunset:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Theme: Minimalist */
.syntekpro-toggle-btn.theme-minimalist {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    box-shadow: none;
    width: 50px;
    height: 50px;
}
html.dark-mode .syntekpro-toggle-btn.theme-minimalist {
    color: #fff;
    border-color: #fff;
}
.syntekpro-toggle-btn.theme-minimalist:hover {
    background: #333;
    color: #fff;
}
html.dark-mode .syntekpro-toggle-btn.theme-minimalist:hover {
    background: #fff;
    color: #333;
}

/* Theme: Cyber */
.syntekpro-toggle-btn.theme-cyber {
    background: #000;
    color: #0f0;
    border: 2px solid #0f0;
    box-shadow: 0 0 5px #0f0, inset 0 0 5px rgba(0, 255, 0, 0.2);
    font-family: 'Courier New', monospace;
    font-weight: bold;
}
html.dark-mode .syntekpro-toggle-btn.theme-cyber {
    color: #ff00ff;
    border-color: #ff00ff;
    box-shadow: 0 0 5px #ff00ff, inset 0 0 5px rgba(255, 0, 255, 0.2);
}
.syntekpro-toggle-btn.theme-cyber:hover {
    box-shadow: 0 0 15px #0f0, inset 0 0 10px rgba(0, 255, 0, 0.3);
    transform: scale(1.08);
}

/* Theme: Gemstone */
.syntekpro-toggle-btn.theme-gemstone {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
    border: 3px solid #ff9a56;
    box-shadow: 0 4px 15px rgba(255, 154, 86, 0.3), inset 0 -2px 5px rgba(255, 255, 255, 0.5);
}
html.dark-mode .syntekpro-toggle-btn.theme-gemstone {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #ffd89b;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5), inset 0 -2px 5px rgba(255, 255, 255, 0.2);
}
.syntekpro-toggle-btn.theme-gemstone:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 154, 86, 0.4), inset 0 -3px 8px rgba(255, 255, 255, 0.6);
}

/* Theme: Monochrome */
.syntekpro-toggle-btn.theme-monochrome {
    background: #808080;
    color: #fff;
    border: 2px solid #404040;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
html.dark-mode .syntekpro-toggle-btn.theme-monochrome {
    background: #b0b0b0;
    color: #000;
    border-color: #d0d0d0;
}
.syntekpro-toggle-btn.theme-monochrome:hover {
    background: #707070;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
html.dark-mode .syntekpro-toggle-btn.theme-monochrome:hover {
    background: #a0a0a0;
}

/* Theme: Frosted Ice */
.syntekpro-toggle-btn.theme-frosted {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
html.dark-mode .syntekpro-toggle-btn.theme-frosted {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}
.syntekpro-toggle-btn.theme-frosted:hover {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}

/* ===================================
   Button Size Variations
   =================================== */

/* Size: Extra Small */
.syntekpro-toggle-btn.size-xs {
    width: 40px;
    height: 40px;
}

.syntekpro-toggle-btn.size-xs svg {
    width: 18px;
    height: 18px;
}

/* Size: Small */
.syntekpro-toggle-btn.size-sm {
    width: 45px;
    height: 45px;
}

.syntekpro-toggle-btn.size-sm svg {
    width: 20px;
    height: 20px;
}

/* Size: Large */
.syntekpro-toggle-btn.size-lg {
    width: 60px;
    height: 60px;
}

.syntekpro-toggle-btn.size-lg svg {
    width: 28px;
    height: 28px;
}

/* Size: Extra Large */
.syntekpro-toggle-btn.size-xl {
    width: 70px;
    height: 70px;
}

.syntekpro-toggle-btn.size-xl svg {
    width: 32px;
    height: 32px;
}

/* ===================================
   Button Shape Variations
   =================================== */

/* Shape: Pill (elongated horizontal) */
.syntekpro-toggle-btn.shape-pill {
    width: 120px;
    height: 50px;
    border-radius: 25px;
    gap: 8px;
}

.syntekpro-toggle-btn.shape-pill span {
    margin-left: 5px;
}

/* Shape: Square */
.syntekpro-toggle-btn.shape-square {
    border-radius: 8px;
}

/* Shape: Rounded Square */
.syntekpro-toggle-btn.shape-rounded {
    border-radius: 15px;
}

/* Shape: Stretched Horizontal */
.syntekpro-toggle-btn.shape-stretched {
    width: 130px;
    height: 45px;
    border-radius: 22px;
}

/* Shape: Stretched Vertical */
.syntekpro-toggle-btn.shape-vertical {
    width: 45px;
    height: 130px;
    flex-direction: column;
    border-radius: 22px;
}

/* ===================================
   Button Animation Variations
   =================================== */

/* Animation: Pulse (continuous glowing pulse) */
.syntekpro-toggle-btn.anim-pulse {
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(102, 126, 234, 0.8);
    }
}

html.dark-mode .syntekpro-toggle-btn.anim-pulse {
    animation: btn-pulse-dark 2s ease-in-out infinite;
}

@keyframes btn-pulse-dark {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 100, 150, 0.5);
    }
    50% {
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 100, 150, 0.8);
    }
}

/* Animation: Bounce (continuous bouncing) */
.syntekpro-toggle-btn.anim-bounce {
    animation: btn-bounce 1s ease-in-out infinite;
}

@keyframes btn-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.syntekpro-toggle-btn.anim-bounce:active {
    animation: none;
}

/* Animation: Float (floating up and down) */
.syntekpro-toggle-btn.anim-float {
    animation: btn-float 3s ease-in-out infinite;
}

@keyframes btn-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.syntekpro-toggle-btn.anim-float:active {
    animation: none;
}

/* Animation: Rotate (subtle rotation) */
.syntekpro-toggle-btn.anim-rotate {
    animation: btn-rotate 4s linear infinite;
}

@keyframes btn-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.syntekpro-toggle-btn.anim-rotate:hover,
.syntekpro-toggle-btn.anim-rotate:active {
    animation: none;
}

/* Animation: Glow Breath (breathing glow) */
.syntekpro-toggle-btn.anim-breath {
    animation: btn-breath 2.5s ease-in-out infinite;
}

@keyframes btn-breath {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        opacity: 1;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
}

/* Animation: Shake (subtle shake effect) */
.syntekpro-toggle-btn.anim-shake {
    animation: btn-shake 0.5s ease-in-out infinite;
}

@keyframes btn-shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-3px);
    }
    75% {
        transform: translateX(3px);
    }
}

.syntekpro-toggle-btn.anim-shake:active {
    animation: none;
}

/* Animation: Spin (fast spinning) */
.syntekpro-toggle-btn.anim-spin {
    animation: btn-spin 1s linear infinite;
}

@keyframes btn-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.syntekpro-toggle-btn.anim-spin:active {
    animation: none;
}

/* Animation: Swing (pendulum swing) */
.syntekpro-toggle-btn.anim-swing {
    animation: btn-swing 1.5s ease-in-out infinite;
    transform-origin: center top;
}

@keyframes btn-swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* Animation: Oscillate (wave-like oscillation) */
.syntekpro-toggle-btn.anim-oscillate {
    animation: btn-oscillate 2s ease-in-out infinite;
}

@keyframes btn-oscillate {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.05);
    }
}

/* Animation: Pulse Circle (radial pulse) */
.syntekpro-toggle-btn.anim-pulse-circle {
    animation: btn-pulse-circle 1.5s ease-out infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes btn-pulse-circle {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

/* ===================================
   Background Pattern Variations
   =================================== */

/* Background: Striped Pattern */
.syntekpro-toggle-btn.bg-striped {
    background: repeating-linear-gradient(
        45deg,
        #333333,
        #333333 10px,
        #444444 10px,
        #444444 20px
    );
}

html:not(.dark-mode) .syntekpro-toggle-btn.bg-striped {
    background: repeating-linear-gradient(
        45deg,
        #f0f0f0,
        #f0f0f0 10px,
        #e0e0e0 10px,
        #e0e0e0 20px
    );
}

html.dark-mode .syntekpro-toggle-btn.bg-striped {
    background: repeating-linear-gradient(
        45deg,
        #444444,
        #444444 10px,
        #666666 10px,
        #666666 20px
    );
}

/* Background: Checkered Pattern */
.syntekpro-toggle-btn.bg-checkered {
    background-image: 
        linear-gradient(45deg, #333333 25%, transparent 25%),
        linear-gradient(-45deg, #333333 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #333333 75%),
        linear-gradient(-45deg, transparent 75%, #333333 75%);
    background-size: 12px 12px;
    background-position: 0 0, 0 6px, 6px -6px, -6px 0px;
    background-color: #444444;
}

html:not(.dark-mode) .syntekpro-toggle-btn.bg-checkered {
    background-image: 
        linear-gradient(45deg, #e0e0e0 25%, transparent 25%),
        linear-gradient(-45deg, #e0e0e0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e0e0e0 75%),
        linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
    background-color: #f0f0f0;
}

html.dark-mode .syntekpro-toggle-btn.bg-checkered {
    background-image: 
        linear-gradient(45deg, #666666 25%, transparent 25%),
        linear-gradient(-45deg, #666666 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #666666 75%),
        linear-gradient(-45deg, transparent 75%, #666666 75%);
    background-color: #555555;
}

/* Background: Dotted Pattern */
.syntekpro-toggle-btn.bg-dotted {
    background-image: radial-gradient(circle, #555555 20%, transparent 20%);
    background-size: 8px 8px;
    background-color: #333333;
}

html:not(.dark-mode) .syntekpro-toggle-btn.bg-dotted {
    background-image: radial-gradient(circle, #cccccc 20%, transparent 20%);
    background-color: #f0f0f0;
}

html.dark-mode .syntekpro-toggle-btn.bg-dotted {
    background-image: radial-gradient(circle, #888888 20%, transparent 20%);
    background-color: #444444;
}

/* Background: Wavy Pattern */
.syntekpro-toggle-btn.bg-wavy {
    background: #333333;
    position: relative;
    overflow: hidden;
}

.syntekpro-toggle-btn.bg-wavy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        transparent 100%);
    animation: wave-move 3s infinite;
}

@keyframes wave-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

html:not(.dark-mode) .syntekpro-toggle-btn.bg-wavy {
    background: #f0f0f0;
}

html.dark-mode .syntekpro-toggle-btn.bg-wavy {
    background: #444444;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .syntekpro-toggle-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .syntekpro-toggle-btn.theme-pill,
    .syntekpro-toggle-btn.shape-pill {
        width: 100px;
        height: 45px;
    }
    
    .syntekpro-toggle-btn.shape-stretched {
        width: 110px;
        height: 40px;
    }
    
    .syntekpro-toggle-btn.shape-vertical {
        width: 40px;
        height: 110px;
    }
    
    .syntekpro-toggle-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   Accessibility
   =================================== */
.syntekpro-toggle-btn:focus {
    outline: 2px solid #6ea8fe;
    outline-offset: 2px;
}

.syntekpro-toggle-btn:focus:not(:focus-visible) {
    outline: none;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    html.dark-mode,
    html.dark-mode *,
    .syntekpro-toggle-btn {
        transition: none !important;
        animation: none !important;
    }
}

/* ===================================
   Print Styles (Force Light Mode)
   =================================== */
@media print {
    html.dark-mode,
    html.dark-mode body {
        background-color: #ffffff !important;
        color: #000000 !important;
    }
    
    .syntekpro-toggle-btn {
        display: none !important;
    }
}
