/* WordPress Color Palette */
:root {
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--vivid-green-cyan: #00d084;
    
    /* New Color Palette */
    --primary: #F68320;
    --primary-hover: #dd612d;
    --secondary: #4f74b0;
    --accent: #FAE9CD;
    
    /* Light Mode Colors */
    --light-bg: #FAE9CD;
    --light-card: #ffffff;
    --light-text: #17191C;
    --light-text-secondary: #5a5d64;
    --light-border: #e0d4c2;
    --light-hover: #f5e5d0;
    --light-section-bg: linear-gradient(135deg, #FAE9CD 0%, #f5e5d0 100%);
    
    /* Dark Mode Colors */
    --dark-bg: #17191C;
    --dark-card: #23252a;
    --dark-text: #ffffff;
    --dark-text-secondary: #b0b2b8;
    --dark-border: #3a3c42;
    --dark-hover: #2c2e34;
    --dark-section-bg: linear-gradient(135deg, #17191C 0%, #23252a 100%);
    
    /* Current Theme */
    --bg: var(--light-bg);
    --card: var(--light-card);
    --text: var(--light-text);
    --text-secondary: var(--light-text-secondary);
    --border: var(--light-border);
    --hover: var(--light-hover);
    --section-bg: var(--light-section-bg);
    --shadow-color: rgba(246, 131, 32, 0.15);
    --gradient-primary: linear-gradient(135deg, #F68320 0%, #dd612d 100%);
    --gradient-secondary: linear-gradient(135deg, #4f74b0 0%, #3a5a8c 100%);
    --gradient-accent: linear-gradient(135deg, #FAE9CD 0%, #f5dfc4 100%);
}

/* Dark Theme Class */
.dark-theme {
    --bg: var(--dark-bg);
    --card: var(--dark-card);
    --text: var(--dark-text);
    --text-secondary: var(--dark-text-secondary);
    --border: var(--dark-border);
    --hover: var(--dark-hover);
    --section-bg: var(--dark-section-bg);
    --shadow-color: rgba(246, 131, 32, 0.25);
    --gradient-accent: linear-gradient(135deg, #2c2e34 0%, #23252a 100%);
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ====== MAIN LAYOUT FIX ====== */
#main-content {
    width: 100%;
    position: relative;
}
/* ====== HERO SECTION FIXED ====== */
.hero-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(23, 25, 28, 0.95) 0%, 
        rgba(35, 37, 42, 0.92) 50%, 
        rgba(40, 42, 48, 0.95) 100%);
    margin: 0;
    width: 100%;
    padding: 30px 0;
    text-align: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.withhost.com/templates/lagom2/assets/img/page-manager/cloud-n1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.4;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(246, 131, 32, 0.2) 0%, 
        rgba(79, 116, 176, 0.15) 50%, 
        rgba(221, 97, 45, 0.2) 100%);
    z-index: 2;
    animation: gradientShift 8s ease-in-out infinite alternate;
}

.dark-theme .hero-banner {
    background: linear-gradient(135deg, 
        rgba(35, 37, 42, 0.95) 0%, 
        rgba(40, 42, 48, 0.92) 50%, 
        rgba(45, 47, 52, 0.95) 100%);
}

.dark-theme .hero-banner::before {
    opacity: 0.3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

/* Hero Content Layout */
.hero-content-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .hero-content-layout {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 50px;
    }
}

/* Hero Left Content */
.hero-left {
    text-align: center;
    width: 100%;
    flex: 1;
}

@media (min-width: 992px) {
    .hero-left {
        text-align: left;
    }
}

/* Hero Title - Always White */
.hero-title-main {
    color: white !important;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.hero-title-secondary {
    color: white !important;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
}

@media (min-width: 768px) {
    .hero-title-main {
        font-size: 2.8rem;
    }
    .hero-title-secondary {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
}

@media (min-width: 992px) {
    .hero-title-main {
        font-size: 3.2rem;
    }
    .hero-title-secondary {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
        max-width: 90%;
    }
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .hero-cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (min-width: 992px) {
    .hero-cta-buttons {
        justify-content: flex-start;
    }
}

.order-now-btn, .glass-card {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.order-now-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(246, 131, 32, 0.3);
}

.order-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(246, 131, 32, 0.4);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Hero Right Content - Stats/Countdown */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    flex: 1;
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(246, 131, 32, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
}

.countdown-section h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #F68320;
    line-height: 1;
    margin-bottom: 3px;
}

.countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 131, 32, 0.2);
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.1;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 131, 32, 0.3);
    border-radius: 8px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
    min-height: 70px;
}

.trust-badge i {
    color: #F68320;
    font-size: 1.1rem;
}

.trust-badge span {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.1;
}

/* Mobile First Responsive Design */
@media (max-width: 767px) {
    .hero-banner {
        min-height: 75vh;
        padding: 25px 0;
    }
    
    .hero-content-layout {
        gap: 25px;
    }
    
    .hero-title-main {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .hero-title-secondary {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 18px;
        padding: 0 10px;
    }
    
    .hero-cta-buttons {
        gap: 10px;
        margin-bottom: 18px;
    }
    
    .order-now-btn, .glass-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .countdown-section {
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 1.6rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .trust-badge {
        min-height: 65px;
        padding: 8px 6px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 70vh;
        padding: 20px 0;
    }
    
    .hero-title-main {
        font-size: 1.6rem;
    }
    
    .hero-title-secondary {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .countdown-grid {
        gap: 8px;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .trust-badge {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 10px 12px;
        min-height: 55px;
    }
    
    .trust-badge i {
        margin-right: 10px;
        font-size: 1rem;
    }
    
    .trust-badge span {
        font-size: 0.8rem;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-banner {
        min-height: 15vh;
    }
    
    .hero-content-layout {
        flex-direction: column;
        gap: 35px;
    }
    
    .hero-left {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-right {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop */
@media (min-width: 992px) {
    .hero-banner {
        min-height: 15vh;
    }
    
    .hero-right {
        max-width: 450px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-banner {
        min-height: 15vh;
    }
    
    .hero-right {
        max-width: 500px;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    .hero-banner::before {
        background-attachment: scroll;
    }
    
    .hero-banner::after {
        animation-duration: 6s;
    }
}

/* Animation */
@keyframes gradientShift {
    0% {
        opacity: 0.4;
        background-position: 0% 50%;
    }
    100% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
}

/* ====== DISCOUNT PERCENTAGE FIX ====== */
/* FIXED: Light and Dark theme discount percentage */
.discount-percentage {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1;
    background: linear-gradient(135deg, 
        #F68320 0%, 
        #dd612d 25%, 
        #4f74b0 50%, 
        #3a5a8c 75%, 
        #dd612d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: discountGlow 3s ease-in-out infinite alternate;
}

/* FIXED: Dark theme discount percentage - Properly visible */
.dark-theme .discount-percentage {
    background: linear-gradient(135deg, 
        #F68320 0%, 
        #ff9440 25%, 
        #5d8bd6 50%, 
        #4a6db0 75%, 
        #ff9440 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 148, 64, 0.3);
}

@keyframes discountGlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
    100% {
        background-position: 100% 50%;
        opacity: 0.9;
    }
}

/* ====== OFFER CARD DESIGN ====== */
#offers {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 15px;
}

#offersContainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

@media (min-width: 768px) {
    #offersContainer {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

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

@media (min-width: 1200px) {
    #offersContainer {
        grid-template-columns: repeat(4, 1fr);
    }
}

.offer-card {
    background: var(--card);
    border: 2px solid var(--border);
    color: var(--text);
    transition: all 0.3s ease;
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    box-shadow: 0 6px 20px var(--shadow-color);
    position: relative;
    width: 100%;
}

.dark-theme .offer-card {
    background: var(--dark-card);
    border-color: var(--dark-border);
    color: var(--dark-text);
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.offer-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.discount-section {
    margin-bottom: 20px;
    text-align: center;
}

.discount-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-code-section {
    margin-bottom: 25px;
    text-align: center;
}

.promo-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.promo-code {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
    background: rgba(79, 116, 176, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
    border: 2px dashed var(--secondary);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.dark-theme .promo-code {
    background: rgba(93, 139, 214, 0.15);
    color: #a8c6ff;
    border-color: #5d8bd6;
}

.btn-view-details {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 55px;
}

.btn-view-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(246, 131, 32, 0.4);
}

.dark-theme .btn-view-details {
    background: linear-gradient(135deg, #F68320 0%, #ff9440 100%);
}

.offer-specs {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.spec-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.spec-item strong {
    color: var(--text);
    font-weight: 700;
}

.featured-badge {
    position: absolute;
  top: 5px;
  right: 5px;
  background: var(--gradient-primary);
  color: white;
  padding: 0px 2px;
  border-radius: 25px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(246, 131, 32, 0.4);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ====== CATEGORY FILTER ====== */
.category-filter-section {
    margin: 2rem auto;
    text-align: center;
    max-width: 1200px;
    padding: 0 15px;
    width: 100%;
}

.category-filter-container {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    gap: 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
}

.category-filter-container::-webkit-scrollbar {
    height: 4px;
}

.category-filter-container::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 2px;
}

.category-filter-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.category-tab-btn {
    background: var(--card);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px 15px;
    color: var(--text);
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 42px;
}

.category-tab-btn:hover {
    background: var(--hover);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.category-tab-btn.active {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(246, 131, 32, 0.25);
    color: white;
    border-color: var(--primary);
}

/* ====== SECTIONS LAYOUT ====== */
.hosting-section, #how-it-works, .testimonials-section {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 15px;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 767px) {
    .hero-banner {
        min-height: 60vh;
        padding: 30px 0;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-title-secondary {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .order-now-btn, .glass-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-cta-buttons {
        align-items: center;
    }
    
    .offer-card {
        padding: 20px;
        min-height: 350px;
    }
    
    .discount-percentage {
        font-size: 3.2rem;
    }
    
    .offer-name {
        font-size: 1.3rem;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 55vh;
        padding: 25px 0;
    }
    
    .hero-title-main {
        font-size: 1.8rem;
    }
    
    .hero-title-secondary {
        font-size: 1.3rem;
    }
    
    .section-links {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-card {
        min-height: 340px;
        padding: 18px;
    }
    
    .discount-percentage {
        font-size: 2.8rem;
    }
    
    .promo-code {
        font-size: 1.1rem;
        padding: 8px 12px;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    .hero-banner::before {
        background-attachment: scroll;
    }
}

/* Animations */
@keyframes gradientShift {
    0% {
        opacity: 0.4;
        background-position: 0% 50%;
    }
    100% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
}

/* Theme Switch */
.theme-switch-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
}

.theme-switch-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
}

.theme-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--gradient-accent);
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.theme-switch:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 1px;
    left: 1px;
    background: var(--gradient-primary);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dark-theme .theme-switch:before {
    transform: translateX(24px);
}

.theme-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 1;
    pointer-events: none;
}

.theme-icon.sun {
    left: 7px;
    color: #f59e0b;
}

.theme-icon.moon {
    right: 7px;
    color: #4f74b0;
}

.dark-theme .theme-icon.sun {
    color: #8b9bb4;
}

.dark-theme .theme-icon.moon {
    color: #f5f5f5;
}