html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    position: relative;
    height: 100%;

    @media only screen and (max-width: 768px) {
        padding-left: 15px;
        padding-right: 15px;
    }
}

html {
    font: 15px / 1.4 sans-serif;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    background-color: #161616; 
}

body {
    background-color: #161616; 
    font-family: 'Roboto Flex', sans-serif;
    color: var(--text-color);
}

:root {
    --main-color: #8955A3;
    --hover-color: #7C4A8F;
    --text-color: #A1A1AA;
    --header-bg: #161616; 
    --footer-bg: #09090B66;
    --button: #8955A3;
    --border-radius: 0px;
    --bg-color: #161616; 
    --panel-body: rgba(24, 24, 27, 0.8); 
    --border-color: #3F3F46;
    --border: 1px solid var(--border-color);
    --border-top: linear-gradient(0deg, #161616, #161616),
    linear-gradient(180deg, rgba(39, 39, 42, 0.2) 0%, rgba(22, 22, 22, 0) 21.88%);
    --shadow: 0px 0px 2px 0px #000000;
    --first-color: #3F3F46;
    --second-color: #27272A;
    --input: #09090B;
    --dropdown: transparent;
    --dropdown-active: transparent;
    --logo-height: 100px;
    --btn-pad: 0.5rem;
    --spacing-xs: 0.5rem;
    --spacing-s: 1rem;
    --spacing-m: 1.5rem;
    --transition: 0.3s ease-out;
}

.main-header {
    background: rgba(22, 22, 22, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 56px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.header-nav {
    display: flex;
    gap: 2rem;
    margin-left: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-shield {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-hexagon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8955A3, #7C4A8F);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(137, 85, 163, 0.3);
}

.shield-letter {
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
}

.logo-text {
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #8955A3;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.guest-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.8rem;
}

.guest-text {
    color: #999;
    font-size: 0.7rem;
}

.login-text {
    color: white;
    font-weight: 600;
}

.login-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.new-header {
    background: rgba(22, 22, 22, 0.6); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('svgs/tmd-texture-purple_web.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, #18181B 0%, rgba(24, 24, 27, 0.8) 30%, rgba(24, 24, 27, 0.4) 60%, rgba(24, 24, 27, 0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 300px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 1rem;
}

.hero-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.5rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-nav {
        position: static;
        left: auto;
        transform: none;
        margin-left: 0;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .header-right {
        justify-content: center;
    }
    
    .login-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .hero-left, .hero-center, .hero-right {
        width: 100%;
        justify-content: center;
    }
    
    .logo-img {
        max-width: 120px;
    }
    
    .link-btn, .discord-btn {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .link-btn i, .discord-btn i {
        font-size: 1.5rem;
    }
    
    .link-btn span, .discord-btn span {
        font-size: 0.7rem;
    }
    
    .link-btn small, .discord-btn small {
        font-size: 0.6rem;
    }
    
    .welcome-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .welcome-box {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .welcome-content {
        gap: 1rem;
    }
    
    .community-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .purchase-notice h2 {
        font-size: 1rem;
    }
    
    .purchase-notice p {
        font-size: 0.8rem;
    }
    
    .support-info h2 {
        font-size: 1rem;
    }
    
    .support-info p {
        font-size: 0.9rem;
    }
    
    .faq-container {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .faq-title {
        font-size: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 250px;
    }
    
    .hero-content {
        padding: 0.5rem;
        gap: 1rem;
    }
    
    .logo-img {
        max-width: 100px;
    }
    
    .link-btn, .discord-btn {
        padding: 0.5rem;
    }
    
    .link-btn i, .discord-btn i {
        font-size: 1.25rem;
    }
    
    .link-btn span, .discord-btn span {
        font-size: 0.6rem;
    }
    
    .link-btn small, .discord-btn small {
        font-size: 0.5rem;
    }
    
    .welcome-title {
        font-size: 1.25rem;
    }
    
    .welcome-subtitle {
        font-size: 0.9rem;
    }
    
    .welcome-box {
        margin: 0.25rem;
        padding: 0.75rem;
    }
    
    .community-info p {
        font-size: 0.8rem;
    }
    
    .purchase-notice h2 {
        font-size: 0.9rem;
    }
    
    .purchase-notice p {
        font-size: 0.7rem;
    }
    
    .support-info h2 {
        font-size: 0.9rem;
    }
    
    .support-info p {
        font-size: 0.8rem;
    }
    
    .header-container {
        padding: 0.25rem 0.5rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 0.2rem 0.3rem;
    }
    
    .login-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .faq-container {
        margin: 0 0.25rem;
        padding: 0.75rem;
    }
    
    .faq-title {
        font-size: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 0.8rem;
    }
    
    .faq-answer p {
        font-size: 0.75rem;
    }
}

.link-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 1rem;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.link-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #8955A3;
}

.link-btn span {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.link-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.main-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.logo-shield {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-hexagon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.shield-letter {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}


.discord-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 1rem;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.discord-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #5865F2;
}

.discord-btn span {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.discord-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.steam-login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #171a21;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #2a475e;
}

.steam-login-btn:hover {
    background: #2a475e;
    transform: translateY(-1px);
}

.steam-login-btn i {
    font-size: 1.2rem;
    color: #66c0f4;
}

.welcome-container {
    padding: 2rem 0;
    width: 100%;
    display: block;
}

.welcome-box {
    background: var(--panel-body);
    border: var(--border);
    border-radius: 8px;
    padding: 3rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-shadow: var(--shadow);
    min-height: 600px;
    box-sizing: border-box;
}

.welcome-header {
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem; 
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: #8955A3;
    margin: 0 0 2rem 0;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.setup-guide h2,
.disclaimer h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem; 
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.setup-guide p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.setup-guide ol {
    color: var(--text-color);
    padding-left: 1.5rem;
}

.setup-guide li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.disclaimer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.disclaimer p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.community-info p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: left;
}

.purchase-notice {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.purchase-notice h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #8955A3;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.purchase-notice p {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.support-info {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.support-info h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #8955A3;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.support-info p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
}

.faq-section {
    margin-top: 3rem;
    width: 100%;
}

.faq-container {
    background: var(--panel-body);
    border: var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8955A3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(137, 85, 163, 0.3);
}

.faq-question {
    background: rgba(24, 24, 27, 0.6);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(137, 85, 163, 0.1);
}

.faq-question h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-icon {
    color: #8955A3;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    background: rgba(24, 24, 27, 0.4);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

header {
    background: var(--header-bg);
}

.body {
    background-color: var(--bg-color);
    min-height: 100vh;
    position: relative;
}

.index-section h1 {
    font-family: Rajdhani;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    color: #F4F4F5;
}

.social-media {
    width: 20%;
}

.header-account {
    width: 20%;
}

.social-media li a i {
    font-size: 20px;
    color: #fff;
}

.social-media li a i {
    padding: 10px 8px;
    background: var(--first-color);
    border-radius: 2px;
    width: 40px;
    height: 40px;
    text-align: center;
}

.social-media li a.twitch i {
    background: #9147FF;
}

.social-media-item.discord i {
    background: #5865F2;
}

.social-media-item.youtube i {
    background: #DC2626;
}

.social-media-item.twitter i {
    background: black;
}

.social-media-item.instagram i {
    background: #ff00a5;
}

.social-media-item.facebook i {
    background: #3146dd;
}


.module {
    background: linear-gradient(0deg, #18181B, #18181B), linear-gradient(180deg, rgba(39, 39, 42, 0.2) 0%, rgba(24, 24, 27, 0) 21.88%);
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.home-content {
    background: linear-gradient(0deg, #18181B, #18181B), linear-gradient(180deg, rgba(39, 39, 42, 0.2) 0%, rgba(24, 24, 27, 0) 21.88%);
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.module-body {
    padding: var(--spacing-s);
}

h2.module-title {
    font-family: Rajdhani;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    color: #F4F4F5;
    position: absolute;
    margin-top: -24px;
    margin-left: 10px;
}

.index-section {
    background: linear-gradient(0deg, #18181B, #18181B), linear-gradient(180deg, rgba(39, 39, 42, 0.2) 0%, rgba(24, 24, 27, 0) 21.88%);
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.index-section>h1 {
    text-align: left;
    position: absolute;
    margin-top: -24px;
    margin-left: 10px;
}

.index-section-body {
    padding: var(--spacing-m) var(--spacing-s);
}

.index-section-body p {
    margin-bottom: var(--spacing-s);
}

.index-section-body a {
    padding: var(--spacing-xs) var(--spacing-s);
    background: var(--button);
    color: #fff;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-align: left;
    font-family: 'Rajdhani';
    text-transform: uppercase;
}

.home-content-sec {
    padding: var(--spacing-m) var(--spacing-s);
}

h1.home-content-tit {
    font-family: Rajdhani;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    text-align: left;
    color: #F4F4F5;
    text-transform: uppercase;
}

.progress-bar {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    height: 12px;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 0;
    }
}

@keyframes pulseOpacity {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

input {
    background: var(--input);
    border-color: var(--border-color) !important;
    border-radius: var(--border-radius) !important;
}

:focus-visible {
    outline: 0;
}

input:focus-visible {
    outline-offset: 0px;
}

.payment-goal {
    background: var(--first-color);
    border-radius: 50px;
    width: 100%;
    height: 12px;
    overflow: hidden;
}

.goal-current {
    font-family: Roboto Flex;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: var(--spacing-s);
}

.payment-goal-display {
    display: flex;
    justify-content: space-between;
}

.payment-goal-data {
    text-align: center;
    text-align: -webkit-center;
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: var(--text-color);
}

.payment-max {
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: var(--text-color);
}

.btn-gift {
    background: var(--button);
    border-color: var(--button);
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.btn:hover {
    background: var(--button);
    filter: contrast(0.8);
    transition: var(--transition);
}

.btn {
    font-weight: 700;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: var(--border-radius);
    background: var(--button);
    border-color: var(--button);
    cursor: pointer;
    transition: var(--transition);
}

.error-msg {
    background: #d75252;
    margin: var(--spacing-s);
    border-radius: var(--border-radius);
    color: #fff;
    font-family: 'Rajdhani';
    margin-top: 0;
}

.success-msg {
    background: #52d787;
    margin: var(--spacing-s);
    border-radius: var(--border-radius);
    color: #fff;
    font-family: 'Rajdhani';
    margin-top: 0;
}

.header-item svg {
    height: 24px;
}

.header-item {
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xs);
    background: var(--second-color);
    border-radius: var(--border-radius);
    border: 1px solid #3F3F4640;
    position: relative;
}

.header-item:first-child {
    padding: 0;
}

span.cart-number {
    position: absolute;
    top: -11px;
    right: -11px;
    height: 22px;
    width: 22px;
    background: var(--main-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto Flex;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #fff;
}

.category-package {
    background: var(--panel-body);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.category-package:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(137, 85, 163, 0.3);
}

span.category-package-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.category-package-details {
    padding: var(--spacing-s);
}

.package-bott {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding: var(--spacing-s) var(--spacing-xs);
    border-top: var(--border);
    position: relative;
    overflow: hidden;
    background: var(--second-color);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.category-package-price-list {
    font-family: Roboto Flex;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    color: #fff;
}

.category-package-buttons {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: var(--spacing-xs);
}

.btn-svg span {
    color: #FAFAFA;
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
}

.btn-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.category-package-buttons a {
    border-radius: 0;
    height: 35px;
}

.category-package-price-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
}

.btn-modal svg {
    height: 36px;
}

.btn-modal {
    width: 40px;
    padding: 0;
    height: 35px;
}

.category-banner {
    background: var(--panel-body);
    border: var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.banner-content {
    text-align: center;
}

.banner-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8955A3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.banner-description {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.category-content {
    background: var(--panel-body);
    border: var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.category-info {
    text-align: center;
    margin-bottom: 2rem;
}

.category-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8955A3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.category-summary {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.category-page {
    text-align: center;
    text-align: -webkit-center;
}

h2.category-title {
    font-family: Rajdhani;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    text-align: center;
    color: #F4F4F5;
}

.category-description {
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: var(--text-color);
}

span.category-package-price-disc {
    color: #d96969;
    font-size: 12px;
    text-decoration: line-through;
}




.footer-copyright {
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

footer {
    background: var(--footer-bg);
    padding: var(--spacing-m) 0;
    border-top: 1px solid var(--border-color);
}

.footer-links a {
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
}

a:hover {
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.footer-copyright span {
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #71717A;
    text-transform: uppercase;
}

.product-page {
    background: var(--panel-body);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    padding: 2.5rem;
}

.product-description {
    background: var(--panel-body);
    box-shadow: var(--shadow);
    border: var(--border);
    border-radius: var(--border-radius);
}

@media (min-width: 1536px) {
    .container {
        max-width: 1280px !important;
    }
}

.product-page-image {
    padding: 2rem;
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

img.product-img {
    max-height: 20rem;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

img.product-img:hover {
    transform: scale(1.05);
}

.product-page-details {
    padding: 2rem;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

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

.product-name {
    font-family: Rajdhani;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-price {
    font-family: Rajdhani;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #8955A3;
    background: rgba(137, 85, 163, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(137, 85, 163, 0.3);
}

.product-details-top span {
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: var(--text-color);
}

.small-title span {
    font-family: Rajdhani;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #8955A3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.small-title svg path {
    fill: var(--main-color);
}

.small-title {
    display: flex;
    align-items: center;
}

span.product-det-border {
    width: 100%;
    background: #27272A;
    height: 2px;
    margin-left: var(--spacing-xs);
}

.product-description {
    padding: var(--spacing-m);
}

button.add-btn {
    background: linear-gradient(135deg, #8955A3, #7C4A8F);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(137, 85, 163, 0.3);
}

button.add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 85, 163, 0.4);
}

button#giftButton {
    background: #3374ed;
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

button#purchaseFromGift {
    background: var(--button);
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

button#closeGift {
    background: #e36060;
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

span.cart-page-title {
    font-family: Rajdhani;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    text-align: left;
    color: #F4F4F5;
    text-transform: uppercase;
}

.nr-item {
    font-family: Rajdhani;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    align-self: center;
    color: #F4F4F5;
}

hr {
    border-color: #27272A;
}

table {
    max-width: 100%;
    background-color: transparent;
    width: 100%;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    padding: 15px 8px;
    line-height: 1.42857143;
    vertical-align: top;
    text-align: left;
    align-content: center;
}

table tbody td {
    vertical-align: middle;
}

table>thead>tr>th {
    vertical-align: bottom;
}

table tbody .image {
    width: 10%;
    text-align: center;
    align-content: center;
}

table tbody .name {
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-left: var(--spacing-xs);
}

table tbody .options {
    width: 25%;
    text-align: center;
}

table tbody .price {
    width: 15%;
    text-align: center;
}

table tbody .quantity {
    width: 5%;
    text-align: center;
}

table tbody .total {
    width: 15%;
    text-align: center;
}

table tbody .close {
    width: 5%;
    text-align: center;
}

table input {
    width: 40px;
    text-align: center;
}

tbody tr {
    background: var(--panel-body);
    border-top: var(--spacing-xs) solid #1b1b1b;
}

tbody tr:first-child {
    border: none;
}

.table>thead>tr>th {
    text-transform: uppercase;
    font-family: Rajdhani;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-align: left;
    color: #fff;
}

td.image {
    background: var(--second-color);
    padding: var(--spacing-xs) !important;
}

td.image .product-img {
    height: 65px;
    width: auto;
}

td.name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: center;
    gap: var(--spacing-xs);
}

span.product-name {
    font-family: Rajdhani;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.name-sec {
    font-family: Roboto Flex;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #A1A1AA;
}

td.price span {
    font-family: Rajdhani;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #A1A1AA;
}

td.total span {
    font-family: Rajdhani;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #fff;
}

td.close {
    align-content: center;
}

table tbody .close a i {
    font-size: 20px;
    font-weight: 600;
}

.remove-btn {
    background: #E11D48;
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #ffffff3d;
}

a.add-btn {
    background: var(--button);
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #FFFFFF66;
    width: 100%;
}

.subtotal span {
    font-family: Rajdhani;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #A1A1AA;
    text-transform: uppercase;
}

.subtotal p {
    font-family: Rajdhani;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: right;
    color: #fff;
}

.main-layout {
    display: flex;
    min-height: calc(100vh - 400px);
    justify-content: center;
    width: 100%;
}

.main-content {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 500px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.layout-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.layout-sidebar > * {
    width: 100%;
}

@media (min-width: 901px) {
    .content-layout:has(.welcome-container) .layout-sidebar {
        margin-top: 2rem;
    }

    .content-layout:has(.category-banner) .layout-sidebar,
    .content-layout:has(.product-page-container) .layout-sidebar,
    .content-layout:has(.cart-page-container) .layout-sidebar {
        margin-top: 30px;
    }
}

.content-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    margin-left: 0;
}

.content-main {
    width: 100%;
    max-width: none;
    margin-top: 0;
}

.content-main.full-width {
    width: 100%;
    max-width: 1200px;
}

.sidebar {
    width: 100%;
    box-sizing: border-box;
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(63 63 70);
    border-radius: 8px;
    padding: 1.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.sidebar-header {
    padding: 0 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.sidebar-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8955A3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.sidebar-nav {
    padding: 0 0.75rem;
}

.sidebar-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-item {
    margin-bottom: 0.25rem;
}

.sidebar-nav-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-nav-item a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.sidebar-nav-item.active a {
    background: #8955A3;
    color: #fff;
}

.sidebar-nav-item .nav-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-nav-item .nav-icon i {
    font-size: 0.875rem;
    opacity: 0.8;
}

.sidebar-nav-item.active .nav-icon i {
    opacity: 1;
}

@media (max-width: 900px) {
    .content-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .layout-sidebar {
        width: 100%;
        max-width: none;
    }
    
    .sidebar {
        max-width: none;
    }
    
    .content-wrapper {
        max-width: none;
    }
    
    .welcome-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .content-layout {
        gap: 0.5rem;
    }
    
    .sidebar {
        max-width: 100%;
        margin: 0.5rem;
        padding: 1rem 0;
    }
    
    .sidebar-header {
        padding: 0 1rem 0.75rem 1rem;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-nav {
        padding: 0 0.5rem;
    }
    
    .sidebar-nav-item a {
        padding: 0.4rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .sidebar-nav-item .nav-icon {
        width: 14px;
        height: 14px;
    }
    
    .sidebar-nav-item .nav-icon i {
        font-size: 0.75rem;
    }
    
    .main-content {
        max-width: 100%;
        margin: 0 0.5rem;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .welcome-container {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .sidebar {
        margin: 0.25rem;
        padding: 0.75rem 0;
    }
    
    .sidebar-header {
        padding: 0 0.75rem 0.5rem 0.75rem;
    }
    
    .sidebar-title {
        font-size: 0.9rem;
    }
    
    .sidebar-nav {
        padding: 0 0.25rem;
    }
    
    .sidebar-nav-item a {
        padding: 0.3rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .sidebar-nav-item .nav-icon {
        width: 12px;
        height: 12px;
    }
    
    .sidebar-nav-item .nav-icon i {
        font-size: 0.65rem;
    }
    
    .main-content {
        margin: 0 0.25rem;
    }
}

.sidebar-modules {
    margin-top: 1.5rem;
    padding: 0 1.5rem;
}

.sidebar-modules .module {
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.sidebar-modules .module-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(24, 24, 27, 0.8);
}

.sidebar-modules .module-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #8955A3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.sidebar-modules .module-body {
    padding: 1rem;
}

.sidebar-modules .module-body p {
    font-size: 0.85rem;
    color: var(--text-color);
    margin: 0;
}

.sidebar-modules .recent-payments li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(63, 63, 70, 0.3);
}

.sidebar-modules .recent-payments li:last-child {
    border-bottom: none;
}

.sidebar-modules .module-empty {
    color: var(--text-color);
    opacity: 0.7;
    font-style: italic;
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 1400px) {
    .sidebar-modules {
        padding: 0 1rem;
    }
    
    .sidebar-modules .module {
        margin-bottom: 0.75rem;
    }
    
    .sidebar-modules .module-header {
        padding: 0.75rem;
    }
    
    .sidebar-modules .module-body {
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .sidebar-modules {
        padding: 0 0.75rem;
        margin-top: 1rem;
    }
    
    .sidebar-modules .module {
        margin-bottom: 0.5rem;
        border-radius: 4px;
    }
    
    .sidebar-modules .module-header {
        padding: 0.75rem;
    }
    
    .sidebar-modules .module-title {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    .sidebar-modules .module-body {
        padding: 0.75rem;
    }
    
    .sidebar-modules .module-body p {
        font-size: 0.8rem;
    }
    
    .sidebar-modules .recent-payments li {
        padding: 0.4rem 0;
    }
    
    .sidebar-modules .flex.items-center {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sidebar-modules .flex.items-center img {
        width: 36px;
        height: 36px;
    }
    
    .sidebar-modules .flex.items-center .text-lg {
        font-size: 0.9rem;
    }
    
    .sidebar-modules .flex.items-start.space-x-3 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sidebar-modules .flex.items-start.space-x-3 img {
        width: 36px;
        height: 36px;
    }
    
    .sidebar-modules .flex.justify-between.w-full {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .sidebar-modules .flex.flex-col.items-start {
        gap: 0.25rem;
    }
    
    .sidebar-modules .text-lg.text-gray-100.font-medium {
        font-size: 0.9rem;
    }
    
    .sidebar-modules .text-right.text-sm {
        font-size: 0.75rem;
    }
    
    .sidebar-modules .max-w-\[140px\].truncate {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .sidebar-modules {
        padding: 0 0.5rem;
        margin-top: 0.75rem;
    }
    
    .sidebar-modules .module {
        margin-bottom: 0.4rem;
    }
    
    .sidebar-modules .module-header {
        padding: 0.6rem;
    }
    
    .sidebar-modules .module-body {
        padding: 0.6rem;
    }
    
    .sidebar-modules .module-title {
        font-size: 0.75rem;
        letter-spacing: 0.2px;
    }
    
    .sidebar-modules .module-body p {
        font-size: 0.75rem;
    }
    
    .sidebar-modules .recent-payments li {
        padding: 0.3rem 0;
    }
    
    .sidebar-modules .flex.items-center img,
    .sidebar-modules .flex.items-start.space-x-3 img {
        width: 32px;
        height: 32px;
    }
    
    .sidebar-modules .flex.items-center .text-lg,
    .sidebar-modules .text-lg.text-gray-100.font-medium {
        font-size: 0.8rem;
    }
    
    .sidebar-modules .text-right.text-sm {
        font-size: 0.7rem;
    }
    
    .sidebar-modules .flex.items-center .text-lg,
    .sidebar-modules .text-lg.text-gray-100.font-medium {
        word-break: break-word;
        line-height: 1.2;
    }
    
    .sidebar-modules .max-w-\[140px\].truncate {
        word-break: break-word;
        line-height: 1.2;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .sidebar-modules {
        margin-top: 0.5rem;
    }
    
    .sidebar-modules .module {
        margin-bottom: 0.3rem;
    }
    
    .sidebar-modules .module-header {
        padding: 0.5rem;
    }
    
    .sidebar-modules .module-body {
        padding: 0.5rem;
    }
    
    .sidebar-modules .recent-payments li {
        padding: 0.25rem 0;
    }
}

@media (max-width: 768px) {
    .sidebar-modules .module {
        min-height: 44px;
    }
    
    .sidebar-modules .module-header {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .sidebar-modules .recent-payments li {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

.product-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--panel-body);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 30px;
}

.product-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
}

.breadcrumb-link {
    color: #8955A3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #7C4A8F;
}

.breadcrumb-separator {
    color: var(--text-color);
    opacity: 0.5;
}

.breadcrumb-current {
    color: white;
    font-weight: 600;
}

.product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-image-container {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    backdrop-filter: blur(10px);
}

.product-main-image {
    max-width: 100%;
    max-height: 350px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.05);
}

.product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.placeholder-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-gallery {
    margin-top: 1rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
    border-color: #8955A3;
    transform: scale(1.1);
}

.product-details-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-out-of-stock {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #EF4444;
}

.product-title-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
}

.product-subtitle {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.4;
}

.product-sale-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(137, 85, 163, 0.1);
    border: 1px solid rgba(137, 85, 163, 0.3);
    color: #8955A3;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.product-vat-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.product-pricing-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.product-original-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-current-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8955A3;
}

.price-crossed {
    text-decoration: line-through;
    color: #EF4444;
    font-size: 1.2rem;
}

.price-free {
    color: #10B981;
}

.product-configuration {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.config-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.config-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.config-icon {
    color: #8955A3;
    font-size: 1rem;
}

.config-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.config-control {
    margin-left: 1.75rem;
}

.config-select,
.config-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.config-select:focus,
.config-input:focus {
    outline: none;
    border-color: #8955A3;
    box-shadow: 0 0 0 3px rgba(137, 85, 163, 0.1);
}

.config-select option {
    background: #18181B;
    color: white;
}

.checkout-info {
    margin-left: -1px;
    padding: 1rem;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    width: 100%;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 140px;
    justify-content: center;
}

.action-btn-primary {
    background: linear-gradient(135deg, #8955A3, #7C4A8F);
    color: white;
    box-shadow: 0 4px 12px rgba(137, 85, 163, 0.3);
}

.action-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 85, 163, 0.4);
}

.action-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.action-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.action-btn-success {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.action-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.action-btn-danger {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.action-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.gift-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.gift-input-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gift-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.gift-input:focus {
    outline: none;
    border-color: #8955A3;
    box-shadow: 0 0 0 3px rgba(137, 85, 163, 0.1);
}

.gift-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-description-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.description-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.description-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.product-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8955A3;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.description-content {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.description-content h1,
.description-content h2,
.description-content h3,
.description-content h4,
.description-content h5,
.description-content h6 {
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.description-content p {
    margin-bottom: 1rem;
}

.description-content ul,
.description-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.description-content li {
    margin-bottom: 0.5rem;
}

.description-content a {
    color: #8955A3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.description-content a:hover {
    color: #7C4A8F;
}

.product-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.features-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(137, 85, 163, 0.1);
    border-color: rgba(137, 85, 163, 0.3);
}

.feature-icon {
    color: #10B981;
    font-size: 1.1rem;
}

.feature-item span {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.4;
}

.product-preview {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #8955A3, #7C4A8F);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(137, 85, 163, 0.3);
}

.preview-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 85, 163, 0.4);
    color: white;
}

.related-products-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.related-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-product-card {
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(137, 85, 163, 0.3);
}

.related-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-product-info {
    padding: 1.5rem;
}

.related-product-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-product-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8955A3;
}

@media (max-width: 1024px) {
    .product-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-container {
        min-height: 300px;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-page-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .product-main-title {
        font-size: 2rem;
    }
    
    .product-pricing-section {
        padding: 1rem;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
    
    .gift-buttons {
        flex-direction: column;
    }
    
    .description-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .description-title {
        font-size: 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-page-container {
        padding: 0.75rem;
        margin: 0 0.25rem;
    }
    
    .product-main-title {
        font-size: 1.8rem;
    }
    
    .product-image-container {
        min-height: 250px;
        padding: 1rem;
    }
    
    .product-main-image {
        max-height: 250px;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
    
    .placeholder-text {
        font-size: 1rem;
    }
    
    .config-control {
        margin-left: 1rem;
    }
    
    .checkout-info {
        margin-left: 1rem;
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .description-content {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

.hidden {
    display: none !important;
}

.gift-actions {
    animation: slideDown 0.3s ease-out;
}

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

.action-btn:focus,
.config-select:focus,
.config-input:focus,
.gift-input:focus {
    outline: 2px solid #8955A3;
    outline-offset: 2px;
}

.action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

@media print {
    .product-actions,
    .gift-actions,
    .related-products-section {
        display: none;
    }
    
    .product-page-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

.cart-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--panel-body);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 30px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.cart-item-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8955A3;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
}

.cart-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-clear-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.cart-clear-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

.empty-cart-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--text-color);
    opacity: 0.5;
    margin-bottom: 2rem;
}

.empty-cart-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.empty-cart-description {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.empty-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8955A3, #7C4A8F);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(137, 85, 163, 0.3);
}

.empty-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 85, 163, 0.4);
    color: white;
}

.cart-items-section {
    margin-bottom: 2rem;
}

.cart-items-header {
    display: grid;
    grid-template-columns: 2fr 120px 100px 120px 80px;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: #8955A3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.cart-item-header-product {
    text-align: left;
}

.cart-item-header-price {
    text-align: center;
}

.cart-item-header-quantity {
    text-align: center;
}

.cart-item-header-total {
    text-align: center;
}

.cart-item-header-actions {
    text-align: center;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 2fr 120px 100px 120px 80px;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cart-item-card:hover {
    background: rgba(24, 24, 27, 0.6);
    border-color: rgba(137, 85, 163, 0.3);
    transform: translateY(-1px);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 0.5rem;
}



.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
}

.cart-item-server {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8955A3;
    font-size: 0.8rem;
    font-weight: 600;
}

.cart-item-options {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.cart-item-option {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-color);
}

.option-label {
    font-weight: 600;
    color: #8955A3;
}

.option-value {
    color: var(--text-color);
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    text-align: center;
}

.price-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #8955A3;
}

.price-per-unit {
    font-size: 0.7rem;
    color: var(--text-color);
    opacity: 0.7;
}

.cart-item-quantity {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-form {
    display: flex;
    justify-content: center;
}

.quantity-input {
    width: 50px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: rgba(24, 24, 27, 0.6);
    color: white;
    text-align: center;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.quantity-input:focus {
    outline: none;
    border-color: #8955A3;
    box-shadow: 0 0 0 2px rgba(137, 85, 163, 0.2);
}

.quantity-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    text-align: center;
}

.total-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.total-per-unit {
    font-size: 0.7rem;
    color: var(--text-color);
    opacity: 0.7;
}

.cart-item-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cart-item-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    text-decoration: none;
    position: relative;
}

.cart-item-remove-btn:hover {
    background: rgba(239, 68, 68, 0.25);
    transform: scale(1.1);
    color: #EF4444;
}

.cart-item-remove-btn:active {
    transform: scale(0.95);
}

.cart-action-btn:focus,
.quantity-input:focus,
.cart-item-remove-btn:focus,
.modal-btn:focus {
    outline: none;
}

.cart-action-btn:focus-visible,
.quantity-input:focus-visible,
.cart-item-remove-btn:focus-visible,
.modal-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

.cart-item-remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.cart-summary-section {
    display: flex;
    justify-content: flex-end;
}

.cart-summary-card {
    width: 100%;
    max-width: 400px;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.summary-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.summary-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.summary-value {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.summary-discount .summary-value {
    color: #10B981;
}

.summary-total {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.summary-total .summary-label {
    font-size: 1.1rem;
    color: white;
}

.summary-total .summary-value {
    font-size: 1.3rem;
    color: #8955A3;
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.summary-continue-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.summary-continue-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.summary-checkout-btn {
    background: linear-gradient(135deg, #8955A3, #7C4A8F);
    color: white;
    box-shadow: 0 4px 12px rgba(137, 85, 163, 0.3);
}

.summary-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 85, 163, 0.4);
    color: white;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--panel-body);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

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

.modal-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.modal-body {
    margin-bottom: 2rem;
}

.modal-body p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.modal-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.modal-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-btn-danger {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.modal-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

@media (max-width: 1024px) {
    .cart-items-header {
        display: none;
    }
    
    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .cart-item-image-section {
        justify-content: center;
    }
    
    .cart-item-details {
        text-align: center;
    }
    
    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total,
    .cart-item-actions {
        justify-content: center;
    }
    
    .cart-summary-section {
        justify-content: center;
    }
    
    .cart-summary-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-page-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .cart-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .cart-main-title {
        font-size: 2rem;
    }
    
    .cart-actions {
        width: 100%;
    }
    
    .cart-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .empty-cart-title {
        font-size: 1.5rem;
    }
    
    .empty-cart-description {
        font-size: 1rem;
    }
    
    .cart-item-name {
        font-size: 1.1rem;
    }
    
    .quantity-controls {
        width: 100%;
        max-width: 200px;
    }
    
    .quantity-input {
        flex: 1;
    }
    
    .summary-actions {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cart-page-container {
        padding: 0.75rem;
        margin: 0 0.25rem;
    }
    
    .cart-main-title {
        font-size: 1.8rem;
    }
    
    .cart-item-card {
        padding: 1rem;
    }
    
    .cart-item-image,
    .cart-item-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-name {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 1rem;
    }
    
    .total-amount {
        font-size: 1.1rem;
    }
    
    .summary-title {
        font-size: 1.3rem;
    }
    
    .summary-value {
        font-size: 0.9rem;
    }
    
    .summary-total .summary-value {
        font-size: 1.1rem;
    }
}

.hidden {
    display: none !important;
}

.cart-item-card {
    animation: slideIn 0.3s ease-out;
}

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

.cart-action-btn:focus,
.quantity-btn:focus,
.cart-item-remove-btn:focus,
.modal-btn:focus {
    outline: 2px solid #8955A3;
    outline-offset: 2px;
}

.cart-action-btn:disabled,
.quantity-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

@media print {
    .cart-actions,
    .cart-item-actions,
    .summary-actions {
        display: none;
    }
    
    .cart-page-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.product-card {
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    flex-direction: column;
}



.product-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8), rgba(39, 39, 42, 0.6));
}

.product-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

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



.product-card-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8), rgba(39, 39, 42, 0.6));
    color: var(--text-color);
    gap: 0.5rem;
}

.product-card-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.product-card-placeholder span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.product-sale-badge {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.product-out-of-stock-badge {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.product-card-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-card-title {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.product-card-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}



.product-card-subtitle {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
}

.product-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(137, 85, 163, 0.1);
    border: 1px solid rgba(137, 85, 163, 0.2);
    border-radius: 12px;
    color: #8955A3;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-description {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-top: 0.5rem;
}

.product-card-actions {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(24, 24, 27, 0.3);
}

.product-card-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.product-price-original {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-crossed {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #EF4444;
    text-decoration: line-through;
    opacity: 0.8;
}

.product-price-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #8955A3;
}

.price-free {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #10B981;
}

.product-card-buttons {
    display: flex;
    gap: 0.75rem;
}

.product-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.product-view-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}



.product-buy-btn {
    background: linear-gradient(135deg, #8955A3, #7C4A8F);
    color: white;
    box-shadow: 0 4px 12px rgba(137, 85, 163, 0.3);
}



.product-out-of-stock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: #EF4444;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .product-card-info {
        padding: 1rem;
    }
    
    .product-card-actions {
        padding: 1rem;
    }
    
    .product-card-title {
        font-size: 1.1rem;
    }
    
    .price-amount,
    .price-free {
        font-size: 1.2rem;
    }
    
    .product-card-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card-image {
        height: 180px;
    }
    
    .product-card-title {
        font-size: 1rem;
    }
    
    .product-card-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.cart-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #8955A3;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.cart-icon-btn:hover {
    color: #A855F7;
}

.cart-icon-btn i {
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: #EF4444;
    border: 2px solid var(--header-bg);
    border-radius: 10px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .cart-icon-btn {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }
    
    .cart-icon-btn i {
        font-size: 1.1rem;
    }
    
    .cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .cart-icon-btn {
        width: 36px;
        height: 36px;
        margin-right: 0.5rem;
    }
    
    .cart-icon-btn i {
        font-size: 1rem;
    }
    
    .cart-count {
        min-width: 16px;
        height: 16px;
        font-size: 0.65rem;
    }
}

html, body {
    overflow-x: hidden;
}

img, svg, video, canvas, iframe {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .content-layout {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .content-wrapper {
        margin-left: 0 !important;
        max-width: 100% !important;
    }

    .content-main {
        margin-top: 0 !important;
        max-width: 100% !important;
    }

    .main-content {
        max-width: 100% !important;
        padding: 1rem !important;
    }

    .sidebar {
        width: 100% !important;
        margin: 0 !important;
    }

    body, .main-content, .content-main, .content-layout,
    .product-page-container, .cart-page-container {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .main-content { padding: 0.75rem !important; }
    .content-layout { gap: 0.5rem !important; }
}