/*
CloudeMC Store Design
Modern, Clean & Professional
*/

:root {
    --main-color: #3498DB;
    --main-color-transparent: rgba(52, 152, 219, 0.6);
    --main-color-dark: #2980b9;
    --accent-color: #2ecc71;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --dark-bg: #1b1b1b;
    --dark-panel: #272727;
    --dark-border: #383838;
    --light-bg: #EFEFEF;
    --light-panel: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

body {
    background: var(--light-bg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    transition: var(--transition);
    overflow-x: hidden;
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    background: var(--main-color);
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-out;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sk-cube-grid {
    width: 50px;
    height: 50px;
}

.sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: #fff;
    float: left;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube1 { animation-delay: 0.2s; }
.sk-cube2 { animation-delay: 0.3s; }
.sk-cube3 { animation-delay: 0.4s; }
.sk-cube4 { animation-delay: 0.1s; }
.sk-cube5 { animation-delay: 0.2s; }
.sk-cube6 { animation-delay: 0.3s; }
.sk-cube7 { animation-delay: 0s; }
.sk-cube8 { animation-delay: 0.1s; }
.sk-cube9 { animation-delay: 0.2s; }

@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% { transform: scale3D(1, 1, 1); }
    35% { transform: scale3D(0, 0, 1); }
}

/* ========== HEADER ========== */
.header {
    background: var(--main-color-transparent);
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.headerbg {
    position: absolute;
    z-index: 0;
    background: url(https://images.unsplash.com/photo-1614732414444-096e5f1122d5?w=1920&q=80);
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    filter: blur(8px);
    transform: scale(1.1);
}

#particles-header {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
}

.logo {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.logo img {
    width: 350px;
    max-width: 90%;
    animation: pulse 4s infinite ease-in-out;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========== TOPBAR ========== */
.topbar {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

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

.topbar-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.topbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.topbar ul li a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar ul li a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.topbar-server {
    text-align: right;
    cursor: pointer;
    transition: var(--transition);
}

.topbar-server:hover {
    transform: scale(1.05);
}

.topbar-server .text {
    font-size: 11px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.topbar-server .ip {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#ipvalue {
    opacity: 0;
    position: fixed;
    pointer-events: none;
}

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

.store-content {
    margin-top: -45px;
    position: relative;
    z-index: 10;
}

.row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.col-md-3 {
    flex: 0 0 calc(25% - 23px);
    min-width: 280px;
}

.col-md-9 {
    flex: 0 0 calc(75% - 23px);
    min-width: 0;
}

@media (max-width: 991px) {
    .col-md-3, .col-md-9 {
        flex: 0 0 100%;
    }
}

/* ========== PANELS ========== */
.panel {
    background: var(--light-panel);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.panel:hover {
    transform: translateY(-2px);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}

.panel-body {
    padding: 20px;
}

.panel-default {
    border: none;
}

/* ========== PROFILE ========== */
.profile {
    background: var(--light-panel);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    padding: 20px;
}

.profile .information {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile .avatar img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.profile .info {
    flex: 1;
    min-width: 0;
}

.profile .info .main {
    color: #828282;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile .info .sub {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile .settings {
    display: flex;
    gap: 15px;
}

.profile .settings i {
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
}

.profile .settings .basket i {
    color: var(--main-color);
}

.profile .settings .logout i {
    color: var(--danger-color);
}

.profile .settings i:hover {
    transform: scale(1.2);
}

/* ========== NAVIGATION ========== */
.navbar {
    background: transparent;
    border: none;
    margin: 0;
}

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

.navbar-nav > li {
    background: var(--light-panel);
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.navbar-nav > li:hover,
.navbar-nav > li.active {
    border-left-color: var(--main-color);
    transform: translateX(5px);
}

.navbar-nav > li > a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-nav > li:hover > a {
    color: var(--main-color);
}

/* ========== PAYMENTS MODULE ========== */
.payments-module {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payments-module .far {
    font-size: 28px;
    color: var(--main-color);
}

.payments {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.payment img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: var(--transition);
    cursor: pointer;
}

.payment img:hover {
    transform: scale(1.15);
}

/* ========== TOP DONATOR ========== */
.topdonator-module .panel-body {
    padding: 15px;
}

.top-donator {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-donator .avatar {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.top-donator .avatar img {
    width: 100%;
    height: auto;
}

.top-donator .data p {
    margin: 0;
}

.top-donator .data b {
    font-size: 18px;
    color: var(--text-dark);
}

.top-donator .data .text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* ========== FEATURED PACKAGE ========== */
.featured {
    position: relative;
    margin-bottom: 15px;
}

.featured img {
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
}

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

.featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.btn-featured {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-featured:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

/* ========== ANNOUNCEMENT ========== */
.announce {
    margin-bottom: 25px;
}

.announce .bar {
    background: linear-gradient(135deg, var(--main-color), #2980b9);
    border-radius: 12px;
    color: #fff;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
    animation: rainbow 20s infinite;
}

.announce .bar i {
    font-size: 32px;
    flex-shrink: 0;
}

.announce .text {
    flex: 1;
}

.announce .text p {
    margin: 5px 0;
}

.announce .text strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

@keyframes rainbow {
    0%, 100% { background: linear-gradient(135deg, #3498db, #2980b9); }
    25% { background: linear-gradient(135deg, #e74c3c, #c0392b); }
    50% { background: linear-gradient(135deg, #2ecc71, #27ae60); }
    75% { background: linear-gradient(135deg, #f39c12, #e67e22); }
}

/* ========== PRODUCTS GRID ========== */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--main-color);
    border-radius: 2px;
}

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

.product-card {
    background: var(--light-panel);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--main-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.product-badge.hot {
    background: var(--danger-color);
}

.product-badge.new {
    background: var(--accent-color);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.new-price {
    color: var(--danger-color);
}

/* ========== BUTTONS ========== */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.btn-secondary {
    background: #95a5a6;
    color: #fff;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
}

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

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: var(--light-panel);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    padding: 25px;
    border-bottom: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--text-dark);
    margin: 0;
}

.close {
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

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

.modal-body {
    padding: 25px;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    color: #555;
}

.modal-body ul li:last-child {
    border-bottom: none;
}

.modal-footer {
    padding: 25px;
    border-top: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-currency {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.modal-buttons {
    display: flex;
    gap: 10px;
}

/* ========== CART PAGE ========== */
.cart-table-wrapper {
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table thead {
    background: var(--main-color);
    color: #fff;
}

.cart-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
}

.product-name {
    font-weight: 600;
    font-size: 16px;
}

.product-price {
    font-family: 'Orbitron', sans-serif;
    color: var(--main-color);
    font-weight: 700;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--main-color);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.quantity-controls button:hover {
    background: var(--main-color-dark);
}

.quantity-controls input {
    width: 50px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

.product-subtotal {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--accent-color);
}

.btn-remove {
    background: var(--danger-color);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-remove:hover {
    background: #c0392b;
}

.cart-coupon {
    margin: 30px 0;
}

.cart-coupon h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.form-control {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--main-color);
}

.cart-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
}

.summary-row.total {
    border-top: 2px solid #ddd;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.summary-row.total .summary-value {
    color: var(--accent-color);
}

.checkout-section {
    margin: 30px 0;
}

.checkout-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 12px;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-card {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option input[type="radio"]:checked + label .payment-card {
    border-color: var(--main-color);
    background: rgba(52, 152, 219, 0.1);
}

.payment-card i {
    font-size: 40px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.payment-card span {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.payment-card small {
    display: block;
    color: #777;
    font-size: 12px;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #e8f5e9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.security-badge i {
    font-size: 40px;
    color: var(--accent-color);
}

.security-text strong {
    display: block;
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.security-text p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

/* ========== FOOTER ========== */
.footer {
    margin-top: 60px;
}

.seekutils {
    background: #D0D0D0;
    padding: 40px 0;
}

.seekrow {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.seekrow .block {
    flex: 1;
    min-width: 250px;
}

.seekrow .block img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.seekrow .block .title {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.seekrow .block .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--main-color);
    border-radius: 2px;
}

.seekrow .block .text {
    text-align: center;
    color: #555;
    line-height: 1.8;
}

.seekrow .block ul {
    list-style: none;
    padding: 0;
}

.seekrow .block ul li {
    text-align: center;
    margin: 12px 0;
    padding-bottom: 12px;
    border-bottom: 1px dashed #999;
}

.seekrow .block ul li:last-child {
    border-bottom: none;
}

.seekrow .block ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.seekrow .block ul li a:hover {
    color: var(--main-color);
}

.seekcopyright {
    background: #C4C4C4;
    padding: 20px 0;
}

.seekcopyright .seekrow {
    align-items: center;
}

.seekcopyright .left {
    font-weight: 600;
    font-size: 13px;
    color: #555;
}

.seekcopyright .right {
    text-align: right;
    font-size: 13px;
    color: #555;
}

/* ========== THEME CHANGER ========== */
.seek_themechanger {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--light-panel);
    color: var(--text-dark);
    padding: 15px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}

.seek_themechanger:hover {
    padding-left: 20px;
}

.seek_themechanger i {
    font-size: 24px;
}

/* ========== DARK MODE ========== */
body.dark {
    background: var(--dark-bg);
    color: var(--text-light);
}

.dark .panel,
.dark .profile,
.dark .navbar-nav > li {
    background: var(--dark-panel);
}

.dark .profile .info .sub,
.dark .navbar-nav > li > a,
.dark .product-info h3,
.dark .section-title,
.dark .top-donator .data b,
.dark .modal-header h2 {
    color: var(--text-light);
}

.dark .profile .info .main,
.dark .top-donator .data .text {
    color: #c1c1c1;
}

.dark .product-description,
.dark .modal-body ul li {
    color: #aaa;
}

.dark .cart-table td {
    border-bottom-color: var(--dark-border);
}

.dark .form-control {
    background: var(--dark-bg);
    border-color: var(--dark-border);
    color: var(--text-light);
}

.dark .payment-card {
    border-color: var(--dark-border);
    background: var(--dark-bg);
}

.dark .payment-option input[type="radio"]:checked + label .payment-card {
    background: rgba(52, 152, 219, 0.2);
}

.dark .modal-content {
    background: var(--dark-panel);
}

.dark .modal-header,
.dark .modal-footer {
    border-color: var(--dark-border);
}

.dark .seekutils {
    background: #333;
}

.dark .seekutils .block .text,
.dark .seekutils .block ul li a {
    color: #c5c5c5;
}

.dark .seekutils .block .title {
    color: #ececec;
}

.dark .seekcopyright {
    background: #404040;
}

.dark .seek_themechanger {
    background: var(--dark-panel);
    color: var(--text-light);
}

.dark .cart-summary {
    background: var(--dark-panel);
}

.dark .security-badge {
    background: rgba(46, 204, 113, 0.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .topbar-items {
        flex-direction: column;
        gap: 15px;
    }

    .topbar ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .topbar-server {
        text-align: center;
    }

    .logo img {
        width: 250px;
    }

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

    .checkout-actions {
        flex-direction: column;
    }

    .seek_themechanger {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(52, 152, 219, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-color-dark);
}

/* ========== UTILITIES ========== */
.text-center {
    text-align: center;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

hr {
    border: none;
    border-top: 2px solid #eee;
    margin: 25px 0;
}

.dark hr {
    border-top-color: var(--dark-border);
}
