/* ===================================
   CSS RESET & ROOT VARIABLES
   =================================== */

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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-hover: #d63651;
    --text-color: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
}

/* ===================================
   DARK MODE VARIABLES
   =================================== */

[data-theme="dark"] {
    --primary-color: #0a0a12;
    --secondary-color: #151525;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --bg-light: #1a1a2e;
    --bg-white: #252535;
    --border-color: #3a3a4a;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HEADER STYLES
   =================================== */

.header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-white);
    letter-spacing: 2px;
}

.logo-link {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-white);
    letter-spacing: 2px;
    position: relative;
}

.logo-link:hover  {
	color: var(--accent-color);
}	
.logo-link.active {
    color: var(--text-white);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.wishlist-count {
    font-size: 14px;
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: var(--text-white);
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* ===================================
   BUTTON STYLES
   =================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

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

.btn-secondary2 {
    background-color: var(--secondary-color);
    color: var(--text-white);
	padding: 14px 117px;
}

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

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* ===================================
   SECTION STYLES
   =================================== */

.featured-section,
.motors-section,
.content-section,
.contact-section,
.wishlist-section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.alternate-bg {
    background-color: var(--bg-light);
}

/* ===================================
   PRODUCT CARD STYLES
   =================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.wishlist-btn:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.wishlist-btn.active {
    background-color: var(--accent-color);
    color: var(--text-white);
    border-color: var(--text-white);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ===================================
   TOAST NOTIFICATION
   =================================== */

.toast {
    position: fixed;
    bottom: -100px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    font-weight: 500;
    transition: var(--transition);
    z-index: 2000;
}

.toast.show {
    bottom: 30px;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.page-title {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-white);
    opacity: 0.9;
}

/* ===================================
   CONTENT SECTION (ABOUT PAGE)
   =================================== */

.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.content-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* ===================================
   FEATURES GRID (ABOUT PAGE)
   =================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   CONTACT FORM STYLES
   =================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-form-container,
.contact-info-container {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-input.error,
.form-textarea.error {
    border-color: var(--accent-color);
}

.form-error {
    color: var(--accent-color);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   CONTACT INFO STYLES
   =================================== */

.contact-info-card {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-value {
    font-size: 16px;
    color: var(--text-light);
}

.business-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.hours-title {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-day {
    font-weight: 600;
    color: var(--text-color);
}

.hours-time {
    color: var(--text-light);
}

/* ===================================
   WISHLIST STYLES
   =================================== */

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state.hidden {
    display: none;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.empty-text {
    font-size: 18px;
    color: var(--text-light);
}

.empty-link {
    color: var(--accent-color);
    font-weight: 600;
}

.empty-link:hover {
    text-decoration: underline;
}

.wishlist-grid {
    display: none;
}

.wishlist-grid.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.wishlist-item {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.remove-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--accent-color);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 5px;
    margin-top: 15px;
    transition: var(--transition);
}

.remove-btn:hover {
    background-color: var(--accent-hover);
}

/* ===================================
   FOOTER STYLES
   =================================== */

.footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 28px;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===================================
   RESPONSIVE DESIGN - TABLETS
   =================================== */

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition);
    }

    .nav.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .page-title {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 22px;
    }

    .hero {
        height: 450px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .page-title {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 25px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
    }
}

/* ===================================
   ENHANCEMENT 1: SLIDESHOW STYLES
   =================================== */

.slideshow-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slideshow-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.slideshow-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-btn-prev {
    left: 20px;
}

.slideshow-btn-next {
    right: 20px;
}

@media (max-width: 768px) {
    .slideshow-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .slideshow-btn-prev {
        left: 10px;
    }

    .slideshow-btn-next {
        right: 10px;
    }

    .slideshow-dots {
        bottom: 15px;
    }
}


/* ===================================
   ENHANCEMENT 2: FORM VALIDATION STYLES
   =================================== */

.form-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.form-error.show {
    display: block;
    animation: slideIn 0.3s ease;
}

.form-input.error,
.form-textarea.error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05);
}

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


/* ===================================
   ENHANCEMENT 2: POPUP/MODAL STYLES
   =================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.popup-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 64px;
    text-align: center;
    margin-bottom: 20px;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.popup-title {
    font-size: 24px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.popup-body {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.popup-body p {
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
}

.popup-body p:last-child {
    margin-bottom: 0;
}

.popup-body strong {
    color: var(--primary-color);
}

.popup-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .popup-content {
        padding: 25px;
    }

    .popup-title {
        font-size: 20px;
    }

    .popup-icon {
        font-size: 48px;
    }
}


/* ===================================
   ENHANCEMENT 3: DARK/LIGHT MODE TOGGLE
   =================================== */

.theme-toggle-btn {
    position: fixed;
    bottom: 130px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    font-size: 28px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(20deg);
    background-color: var(--accent-hover);
}

.theme-toggle-btn:active {
    transform: scale(0.95);
}

@media (max-width: 480px) {
    .theme-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 110px;
        right: 15px;
    }
}


/* ===================================
   ENHANCEMENT 4: COLOR THEME CHANGER
   =================================== */

.color-theme-panel {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    border: 2px solid var(--border-color);
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        transform: translateX(-50%) translateY(120px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.theme-panel-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.color-theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
    padding: 0;
}

.color-theme-btn:hover {
    transform: scale(1.1) rotate(-10deg);
}

.color-theme-btn.active {
    border-color: var(--text-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .color-theme-panel {
        padding: 10px 15px;
        gap: 10px;
    }

    .color-theme-btn {
        width: 35px;
        height: 35px;
    }

    .theme-panel-title {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .color-theme-panel {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 12px;
        gap: 8px;
    }

    .color-theme-btn {
        width: 32px;
        height: 32px;
    }

    .theme-panel-title {
        font-size: 10px;
    }
}

/* ===================================
   DARK MODE ADJUSTMENTS FOR NEW ELEMENTS
   =================================== */

[data-theme="dark"] .popup-overlay {
    background-color: rgba(0, 0, 0, 0.85);
}

[data-theme="dark"] .popup-content {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .color-theme-panel {
    border-color: #3a3a4a;
}
