/*
Theme Name: Twizzy Shop
Theme URI: https://twizzyshop.com
Author: Your Name
Author URI: https://twizzyshop.com
Description: A modern dark-themed WordPress theme for Twizzy Shop with editable content and product showcase.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twizzy-shop
*/

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

:root {
    --primary-bg: #1a1a1a;
    --secondary-bg: #2a2a2a;
    --card-bg: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-green: #00ff88;
    --accent-green-dark: #00cc6f;
    --border-color: #3a3a3a;
    --label-bg: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header and Navigation */
.site-header {
    background-color: var(--primary-bg);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo {
    display: none !important;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-green);
    text-decoration: none;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

.main-navigation a:hover {
    color: var(--accent-green);
}

.header-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-link:hover {
    color: var(--accent-green);
}

.btn-logout {
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-logout:hover {
    background-color: var(--card-bg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: var(--secondary-bg);
    color: var(--text-primary);
}

.btn-login:hover {
    background-color: var(--card-bg);
}

.btn-register {
    background-color: var(--secondary-bg);
    color: var(--text-primary);
}

.btn-register:hover {
    background-color: var(--card-bg);
}

.btn-join {
    background-color: var(--accent-green);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-join:hover {
    background-color: var(--accent-green-dark);
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 60px 20px;
}

.welcome-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.welcome-tagline {
    font-size: 20px;
    color: var(--text-secondary);
}

/* Tabs Navigation */
.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    padding: 0 20px;
}

.tab-button {
    padding: 12px 24px;
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: var(--card-bg);
    color: var(--accent-green);
}

.tab-button:hover {
    background-color: var(--card-bg);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Product Cards Section */
.products-section {
    padding: 60px 0;
    background-color: var(--primary-bg);
    width: 100%;
}

/* Hide "Featured Products" heading if it exists */
.products-section .section-title,
.products-section h2.section-title,
.products-section h2,
.products-section h1,
.products-section .page-title,
.products-carousel-wrapper .section-title,
.products-carousel-wrapper h2,
.products-carousel-wrapper h1,
.products-section .container > h2,
.products-section .container > h1,
.products-section h2:contains("Featured"),
section.products-section h2,
section.products-section > .container > h2 {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.products-carousel-wrapper {
    position: relative;
    width: 100%;
}

.products-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 40px 80px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.product-icon {
    width: 100%;
    height: 280px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    overflow: hidden;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    visibility: visible;
    opacity: 1;
}

.product-icon span {
    font-size: 80px;
}

.product-card {
    padding: 0 !important;
    overflow: hidden;
}

.product-card > div:first-child {
    border-radius: 12px 12px 0 0;
}

.product-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-primary);
    text-align: left;
}

.product-subtitle {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
    text-align: left;
}

.product-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
    text-align: left;
}

.product-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: left;
}

.product-label {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--label-bg);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-primary);
    text-align: left;
}

.btn-view-details {
    background-color: var(--accent-green);
    color: #000;
    padding: 14px 28px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: auto;
    display: block;
}

.btn-view-details:hover {
    background-color: var(--accent-green-dark);
}

/* Telegram Channel Section */
.telegram-channel-section {
    width: 100%;
    padding: 80px 20px;
    background-color: var(--primary-bg);
    text-align: center;
}

.btn-join-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--accent-green);
    color: #000;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-join-telegram:hover {
    background-color: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

/* Feature Cards Section */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--accent-green);
}

.feature-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-item-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-green);
    font-size: 32px;
}

.feature-item-text {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-bg);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.footer-content {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .site-logo {
        flex: 1;
    }

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

    .main-navigation {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        order: 3;
    }

    .main-navigation.active {
        max-height: 500px;
    }

    .main-navigation ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 20px 0;
        background-color: var(--secondary-bg);
        border-radius: 8px;
        margin-top: 10px;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .main-navigation li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        padding: 15px 20px;
        width: 100%;
    }

    .header-actions {
        order: 2;
        width: auto;
        gap: 10px;
    }

    .btn-join {
        display: none;
    }

    .btn-login,
    .btn-register {
        padding: 8px 16px;
        font-size: 13px;
    }

    .logged-in-nav {
        flex-wrap: wrap;
        gap: 10px !important;
    }

    .header-link {
        font-size: 14px;
    }

    .btn-logout {
        padding: 8px 16px;
        font-size: 13px;
    }

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

    .welcome-tagline {
        font-size: 16px;
    }

    .tabs-navigation {
        flex-wrap: wrap;
    }

    .welcome-section {
        padding: 40px 15px !important;
    }
    
    .welcome-title {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }

    .welcome-tagline {
        font-size: 16px !important;
    }
    
    .products-section {
        padding: 40px 0 !important;
    }
    
    .products-carousel {
        padding: 40px 20px !important;
        gap: 20px !important;
    }
    
    .product-card {
        min-width: calc(100vw - 100px) !important;
        max-width: calc(100vw - 100px) !important;
    }
    
    .product-card > div:last-child {
        padding: 30px 40px !important;
    }
    
    .product-icon {
        height: 280px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .product-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .product-icon span {
        font-size: 60px;
    }
    
    .product-title {
        font-size: 32px !important;
    }
    
    .product-subtitle {
        font-size: 18px !important;
    }
    
    .product-description {
        font-size: 14px !important;
    }
    
    .product-price {
        font-size: 28px !important;
    }
    
    .btn-view-details {
        padding: 14px 28px !important;
        font-size: 16px !important;
    }
    
    .carousel-controls {
        padding: 0 !important;
    }
    
    .carousel-arrow {
        width: 50px !important;
        height: 50px !important;
        font-size: 28px !important;
        position: fixed !important;
    }
    
    #carousel-prev {
        left: 5px !important;
        right: auto !important;
    }
    
    #carousel-next {
        right: 5px !important;
        left: auto !important;
    }
    
    .telegram-channel-section {
        padding: 50px 15px !important;
    }
    
    .telegram-channel-section h2 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    
    .telegram-channel-section p {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }
    
    .btn-join-telegram {
        padding: 15px 28px !important;
        font-size: 16px !important;
    }
    
    .btn-join-telegram span:first-child {
        font-size: 20px !important;
    }
    
    .tabs-section {
        padding: 30px 0 !important;
    }
    
    .tabs-navigation {
        padding: 0 15px !important;
        gap: 10px !important;
        margin: 30px 0 !important;
    }
    
    .tab-button {
        flex: 1;
        min-width: 100px;
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
    
    .tab-content {
        padding: 20px 15px !important;
    }
    
    .tab-content .container {
        padding: 20px 15px !important;
        max-width: 100% !important;
    }
    
    .feature-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px 15px !important;
    }
    
    .feature-card {
        padding: 25px 20px !important;
    }
    
    .feature-icon {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }
    
    .feature-title {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
    
    .feature-description {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }
    
    .feature-card .btn-view-details {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
    
    #tab-about .container {
        padding: 30px 15px !important;
    }
    
    #tab-about h2 {
        font-size: 32px !important;
        margin-bottom: 20px !important;
    }
    
    #tab-about p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
    
    .faq-container {
        padding: 0 !important;
    }
    
    .faq-item {
        margin-bottom: 15px !important;
    }
    
    .faq-question {
        padding: 15px !important;
        font-size: 15px !important;
    }
    
    .faq-answer {
        padding: 15px !important;
        font-size: 14px !important;
    }
    
    .why-choose-section {
        padding: 40px 15px !important;
    }
    
    .section-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .feature-item-icon {
        font-size: 28px !important;
    }
    
    .feature-item-text {
        font-size: 16px !important;
    }
    
    /* Product Archive Page - Mobile */
    .archive-content .container {
        padding: 20px 10px !important;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 20px !important;
        padding: 0 10px !important;
    }
    
    .products-grid .product-card {
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 25px 20px !important;
        margin: 0 !important;
    }
    
    .page-header {
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }
    
    .page-title {
        font-size: 32px !important;
    }
}

/* Extra small screens (480px and below) */
@media (max-width: 480px) {
    .welcome-section {
        padding: 30px 10px !important;
    }
    
    .welcome-title {
        font-size: 24px !important;
    }

    .welcome-tagline {
        font-size: 14px !important;
    }
    
    .products-section {
        padding: 30px 0 !important;
    }
    
    .products-carousel {
        padding: 40px 20px !important;
        gap: 20px !important;
    }
    
    .product-card {
        min-width: calc(100vw - 100px) !important;
        max-width: calc(100vw - 100px) !important;
    }
    
    .product-icon {
        height: 280px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .carousel-arrow {
        position: fixed !important;
    }
    
    #carousel-prev {
        left: 5px !important;
    }
    
    #carousel-next {
        right: 5px !important;
    }
    
    .product-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .product-title {
        font-size: 32px !important;
    }
    
    .product-subtitle {
        font-size: 18px !important;
    }
    
    .product-description {
        font-size: 14px !important;
    }
    
    .product-price {
        font-size: 28px !important;
    }
    
    .carousel-arrow {
        width: 50px !important;
        height: 50px !important;
        font-size: 28px !important;
    }
    
    #carousel-prev {
        left: 5px !important;
    }
    
    #carousel-next {
        right: 5px !important;
    }
    
    .telegram-channel-section {
        padding: 40px 10px !important;
    }
    
    .telegram-channel-section h2 {
        font-size: 24px !important;
    }
    
    .telegram-channel-section p {
        font-size: 14px !important;
    }
    
    .btn-join-telegram {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
    
    .tabs-navigation {
        padding: 0 10px !important;
        gap: 8px !important;
    }
    
    .tab-button {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
    
    .tab-content {
        padding: 15px 10px !important;
    }
    
    .feature-card {
        padding: 20px 15px !important;
    }
    
    .feature-title {
        font-size: 18px !important;
    }
    
    .section-title {
        font-size: 24px !important;
    }
    
    /* Product Archive Page - Extra Small Mobile */
    .archive-content .container {
        padding: 15px 5px !important;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 5px !important;
    }
    
    .products-grid .product-card {
        padding: 20px 15px !important;
    }
    
    .page-title {
        font-size: 28px !important;
    }
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
    z-index: 10;
}

.carousel-arrow {
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Product Page Styles */
.products-grid .product-card {
    min-width: auto;
}

.product-image-wrapper {
    width: 100%;
    display: block;
}

.product-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.price-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.price-select:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

.btn-add-to-cart:hover {
    background-color: var(--accent-green-dark) !important;
}

.btn-add-to-cart:active {
    transform: scale(0.98);
}

/* FAQ Styles */
.faq-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: var(--accent-green);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-item.active .faq-question-text {
    text-decoration: underline;
}

.faq-toggle {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    color: var(--text-secondary);
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

.faq-answer-content {
    font-size: 16px;
}

.faq-answer-content p {
    margin: 0;
    padding: 0;
}

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

/* Vouches Page Styles */
.vouches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.vouch-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vouch-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
}

.vouch-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.vouch-content {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.vouch-rating {
    display: flex;
    gap: 2px;
    align-items: center;
}

.vouch-rating .star {
    font-size: 18px;
    color: #ffd700;
    line-height: 1;
}

.vouch-rating .star.filled {
    color: #ffd700;
}

.vouch-rating .star.half {
    color: #ffd700;
    position: relative;
}

.vouch-rating .star.half::after {
    content: '☆';
    position: absolute;
    left: 0;
    color: var(--text-secondary);
    opacity: 0.3;
}

.vouch-rating .star.empty {
    color: var(--text-secondary);
    opacity: 0.3;
}

.btn-filter-stars {
    transition: background-color 0.3s ease;
}

.btn-filter-stars:hover {
    background-color: var(--accent-green-dark) !important;
}

/* Star Filter Dropdown */
.star-filter-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: none;
}

.star-filter-dropdown.active {
    display: block;
}

.star-filter-option {
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-filter-option:hover {
    background-color: var(--secondary-bg);
}

.star-filter-option input[type="checkbox"] {
    margin: 0;
}

.star-filter-option label {
    cursor: pointer;
    flex: 1;
    margin: 0;
}

/* Fan Art Gallery Styles */
.fan-art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.fan-art-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fan-art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.fan-art-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--primary-bg);
    position: relative;
}

.fan-art-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

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

.fan-art-card:hover .fan-art-image {
    transform: scale(1.05);
}

.fan-art-title {
    padding: 15px 20px 10px;
}

.fan-art-title h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.fan-art-description {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Single Fan Art Page */
.single-fan-art .fan-art-image-wrapper {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
}

.single-fan-art .fan-art-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Register Page Styles */
.btn-generate-account:hover {
    background-color: var(--accent-green-dark) !important;
}

.btn-feature:hover {
    background-color: var(--secondary-bg) !important;
    border-color: var(--accent-green) !important;
    color: var(--accent-green) !important;
}

.register-feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

/* Account ID Modal Styles */
.account-id-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
}

.modal-content {
    position: relative;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 25px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

.btn-modal-cancel,
.btn-modal-ready {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-cancel {
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-modal-cancel:hover {
    background-color: var(--card-bg);
}

.btn-modal-ready {
    background-color: var(--accent-green);
    color: var(--primary-bg);
}

.btn-modal-ready:hover {
    background-color: var(--accent-green-dark);
}

.btn-modal-close {
    background-color: var(--accent-green);
    color: var(--primary-bg);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background-color: var(--accent-green-dark);
}

.btn-modal-copy {
    background-color: var(--accent-green);
    color: var(--primary-bg);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-modal-copy:hover {
    background-color: var(--accent-green-dark);
}

.toggle-visibility-btn:hover {
    opacity: 0.7;
}

.account-id-input-wrapper {
    position: relative;
}

.btn-login-submit:hover {
    background-color: var(--accent-green-dark) !important;
}

.btn-register-link:hover {
    background-color: var(--card-bg) !important;
    border-color: var(--accent-green) !important;
    color: var(--accent-green) !important;
}

/* Support Page Styles */
.support-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.support-tab-btn {
    padding: 12px 24px;
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-tab-btn.active {
    background-color: var(--card-bg);
    color: var(--accent-green);
}

.support-tab-btn:hover {
    background-color: var(--card-bg);
}

.support-tab-content {
    display: none;
}

.support-tab-content.active {
    display: block;
}

.btn-submit-ticket:hover {
    background-color: var(--accent-green-dark) !important;
}

.view-ticket-link:hover {
    text-decoration: underline !important;
}

/* Cart Page Styles */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Cart Page Mobile Styles */
@media (max-width: 768px) {
    .cart-container {
        padding: 15px 10px !important;
    }
    
    .cart-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .cart-items-section {
        padding: 15px !important;
    }
    
    .cart-title {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .cart-item {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 12px !important;
    }
    
    .cart-item-image {
        width: 100% !important;
        height: 150px !important;
        min-width: 100% !important;
    }
    
    .cart-item-details {
        width: 100% !important;
    }
    
    .cart-item-details h3 {
        font-size: 14px !important;
    }
    
    .cart-item-actions {
        width: 100% !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .cart-checkout-section {
        position: relative !important;
        padding: 15px !important;
    }
    
    .cart-total h3 {
        font-size: 20px !important;
    }
    
    .crypto-payment-options {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .crypto-payment-btn {
        padding: 12px 8px !important;
    }
    
    .crypto-payment-btn span {
        font-size: 24px !important;
    }
    
    #proceed-payment-btn {
        padding: 14px !important;
        font-size: 15px !important;
    }
    
    #crypto-payment-modal {
        padding: 10px !important;
    }
    
    #crypto-payment-modal > div {
        padding: 15px !important;
        max-height: 98vh !important;
    }
    
    #modal-crypto-name {
        font-size: 18px !important;
    }
    
    #modal-crypto-icon {
        font-size: 24px !important;
    }
    
    #modal-total-amount {
        font-size: 22px !important;
    }
    
    #modal-qr-code {
        width: 150px !important;
        height: 150px !important;
    }
    
    #modal-wallet-address {
        font-size: 11px !important;
        word-break: break-all !important;
    }
    
    #copy-wallet-btn,
    #copy-transaction-id-btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }
    
    #confirm-payment-btn {
        padding: 14px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 968px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-checkout-section {
        position: static !important;
    }
}

.cart-item {
    transition: transform 0.3s ease;
}

.cart-item:hover {
    transform: translateX(5px);
}

.quantity-selector button:hover {
    background-color: var(--card-bg) !important;
    border-radius: 4px;
}

.crypto-btn:hover {
    border-color: var(--accent-green) !important;
    background-color: rgba(0, 255, 136, 0.1) !important;
}

.crypto-btn.active {
    border-color: var(--accent-green) !important;
    background-color: rgba(0, 255, 136, 0.2) !important;
}

.btn-checkout:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.btn-checkout:not(:disabled):hover {
    background-color: var(--accent-green-dark) !important;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

