/* VOLT Digital Store - Dark Red & Black Glassmorphic Theme & Secure Admin Dashboard System */

:root {
    --bg-dark: #0A0A0F;
    --bg-card: #14141E;
    --bg-card-hover: #1C1C2B;
    --red-primary: #E50914;
    --red-hover: #FF1E27;
    --red-dark: #8B0000;
    --red-glow: rgba(229, 9, 20, 0.4);
    --gold-accent: #FFD700;
    --text-main: #FFFFFF;
    --text-muted: #A0A0B5;
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-red: rgba(229, 9, 20, 0.3);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-family: 'Cairo', 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    direction: rtl;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.25s ease;
}

select option {
    background-color: #14141E !important;
    color: #FFFFFF !important;
    padding: 10px;
}

/* SPA Page View Visibility */
.page-view {
    display: none;
}

.page-view.active {
    display: block;
    animation: fadeInView 0.35s ease;
}

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

/* Floating WhatsApp Widget */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-whatsapp-btn:hover .wa-tooltip {
    opacity: 1;
}

/* Breadcrumb Bar */
.breadcrumb-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 30px;
}

.breadcrumb-bar a:hover {
    color: var(--red-primary);
}

.breadcrumb-bar .separator {
    opacity: 0.4;
}

.breadcrumb-bar .active {
    color: var(--text-main);
    font-weight: 700;
}

/* Announcement Bar */
.top-announcement {
    background: linear-gradient(90deg, #500005, #8B0000, #E50914, #500005);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    padding: 10px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.badge-live {
    background: rgba(0, 0, 0, 0.4);
    color: var(--gold-accent);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.announcement-tag {
    color: #fff;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Header Navbar */
.main-header {
    background: rgba(10, 10, 15, 0.88);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-dark);
    padding: 14px 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--border-red);
    box-shadow: 0 0 15px var(--red-glow);
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.highlight-red {
    color: var(--red-primary);
}

.brand-sub {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 600;
}

.search-bar-container {
    position: relative;
    flex: 1;
    max-width: 480px;
}

.search-bar-container input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 30px;
    padding: 12px 42px 12px 20px;
    color: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.search-bar-container input:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 15px var(--red-glow);
    background: rgba(255, 255, 255, 0.08);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-dark);
    color: var(--text-main);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.cart-trigger {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid var(--border-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-trigger:hover {
    background: var(--red-primary);
    color: #fff;
    box-shadow: 0 0 20px var(--red-glow);
}

.cart-count {
    position: absolute;
    top: -4px;
    left: -4px;
    background: #fff;
    color: var(--red-dark);
    font-size: 0.75rem;
    font-weight: 900;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 65px 0;
    background: radial-gradient(circle at 70% 30%, rgba(229, 9, 20, 0.18) 0%, transparent 60%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid var(--border-red);
    color: var(--red-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 18px;
}

.text-glow-red {
    color: var(--red-primary);
    text-shadow: 0 0 25px rgba(229, 9, 20, 0.6);
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-red {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px var(--red-glow);
}

.btn-primary-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 9, 20, 0.7);
}

.btn-outline-red {
    background: transparent;
    border: 2px solid var(--red-primary);
    color: var(--text-main);
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-red:hover {
    background: rgba(229, 9, 20, 0.15);
    color: var(--red-primary);
}

.hero-stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-item i {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: rgba(229, 9, 20, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.text-red {
    color: var(--red-primary);
}

/* Store Section */
.store-section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.categories-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--red-primary);
    color: #fff;
    border-color: var(--red-primary);
    box-shadow: 0 0 15px var(--red-glow);
}

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

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-red);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.25);
    background: var(--bg-card-hover);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: #050508;
}

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

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.badge-test-price {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red-primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.sales-count-badge {
    font-size: 0.78rem;
    color: var(--gold-accent);
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--red-primary);
}

.price-orig {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

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

.btn-add-cart {
    flex: 1;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid var(--border-red);
    color: var(--text-main);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add-cart:hover {
    background: var(--red-primary);
    color: #fff;
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
}

/* DEDICATED ADMIN DASHBOARD STYLING */
.admin-dashboard-wrapper {
    padding: 20px 0 80px 0;
}

.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    padding: 28px 35px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.admin-card-box {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 35px;
}

.admin-card-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-dark);
}

.admin-products-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 600px;
    overflow-y: auto;
    padding-left: 5px;
}

.admin-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.admin-item-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-item-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.btn-delete-item {
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid var(--border-red);
    color: var(--red-primary);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-delete-item:hover {
    background: var(--red-primary);
    color: #fff;
}

/* DEDICATED CLEAN ELEGANT LOGIN PAGE STYLING */
.dedicated-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 80px 0;
}

.login-card-standalone-clean {
    background: #0E1017;
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 24px;
    padding: 45px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 20px rgba(229, 9, 20, 0.15);
}

.login-header-text {
    text-align: right;
    margin-bottom: 28px;
}

.login-title {
    font-size: 1.9rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.login-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.form-group-clean {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.clean-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #E2E8F0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clean-input {
    width: 100%;
    background: #161922;
    border: 1px solid #2B303F;
    border-radius: 12px;
    padding: 14px 18px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.clean-input:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 15px var(--red-glow);
    background: #1C202C;
    outline: none;
}

.phone-input-wrapper-clean {
    display: flex;
    gap: 10px;
    direction: ltr;
}

.country-flag-box-clean {
    background: #161922;
    border: 1px solid #2B303F;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.95rem;
    white-space: nowrap;
}

.phone-field {
    direction: ltr;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-login-submit {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 30px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 15px;
    box-shadow: 0 10px 25px var(--red-glow);
}

.btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.6);
}

.sms-sent-status-box {
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid var(--border-red);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 25px;
}

.sms-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 8px;
}

.badge-sent {
    background: var(--red-primary);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 900;
}

.sms-status-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.sms-status-desc strong {
    color: var(--gold-accent);
    font-size: 1.1rem;
    font-family: monospace;
}

.otp-boxes-grid {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    direction: ltr;
    margin-top: 12px;
}

.otp-digit {
    width: 70px;
    height: 65px;
    background: #161A22;
    border: 1px solid #282E3D;
    border-radius: 12px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
}

.otp-digit:focus {
    border-color: #7A191B;
    outline: none;
}

.otp-timer-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.timer-bold {
    color: var(--red-primary);
    font-weight: 900;
    font-size: 1rem;
}

/* DEDICATED CHECKOUT PAGE STYLING */
.dedicated-checkout-wrapper {
    padding: 20px 0 80px 0;
}

.checkout-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.checkout-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    padding: 35px;
}

.checkout-form-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.checkout-order-summary-box {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: fit-content;
}

.checkout-order-summary-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 12px;
}

/* RED THEME WHATSAPP CHAT SIMULATOR */
.full-bot-sim-red {
    background: #0D080A;
    border: 1px solid var(--border-red);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 550px;
    box-shadow: 0 25px 60px rgba(139, 0, 0, 0.4);
}

.wa-sim-header-red {
    background: #1C0C10;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}

.wa-user-avatar-red {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 15px var(--red-glow);
}

.wa-sim-body-red {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-image: radial-gradient(rgba(229, 9, 20, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.chat-msg.user {
    align-self: flex-start !important;
}

.chat-msg.bot {
    align-self: flex-end !important;
}

.chat-msg.user .msg-bubble {
    background: linear-gradient(135deg, #8B0000, #500005);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top-left-radius: 0;
    border-top-right-radius: 14px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.chat-msg.bot .msg-bubble {
    background: #1C1315;
    border: 1px solid rgba(229, 9, 20, 0.3);
    color: #F0F0F5;
    border-top-right-radius: 0;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.wa-sim-footer-red {
    background: #1C0C10;
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-top: 1px solid rgba(229, 9, 20, 0.2);
}

.wa-sim-footer-red input {
    flex: 1;
    background: #281216;
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: 24px;
    padding: 12px 20px;
    color: #fff;
    font-family: inherit;
    font-size: 0.92rem;
}

.wa-sim-footer-red input:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 10px var(--red-glow);
}

.wa-sim-footer-red button {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 15px var(--red-glow);
}

/* Dedicated Policy Page Styling */
.dedicated-policy-container {
    background: var(--bg-card);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 60px;
}

.policy-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.policy-header-box h1 {
    font-size: 1.8rem;
    font-weight: 900;
}

.policy-card-body {
    line-height: 1.9;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Footer & Other */
.payment-trust-section {
    padding: 40px 0 70px 0;
}

.trust-box {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.trust-box h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.trust-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.payment-methods-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pay-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--bg-card);
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

.modal-overlay.active .cart-sidebar {
    transform: translateX(0);
}

.custom-modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 580px;
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(229, 9, 20, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .custom-modal-card {
    transform: translateY(0);
}

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

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.close-btn:hover {
    background: var(--red-primary);
}

/* Comprehensive Professional Footer Styling */
.main-footer {
    background: #06060B;
    border-top: 1px solid var(--border-dark);
    padding: 60px 0 25px 0;
    color: var(--text-muted);
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
}

.footer-about-text {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 3px;
    background: var(--red-primary);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 0.92rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: var(--red-primary);
    transform: translateX(-5px);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
}

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

@media (max-width: 900px) {
    .hero-content, .bot-grid, .footer-content-grid, .product-page-main-grid, .bot-page-grid-fixed, .reviews-grid, .checkout-page-grid, .admin-grid-layout {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
