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

/* Elegant Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555555;
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #333333 #0a0a0a;
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

/* Large Background Acronym Logo */
.background-acronym {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    max-width: 1400px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.background-acronym img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(0.5);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Small Logo Above Navigation */
.top-logo {
  position: relative;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: fit-content;
  z-index: 1001;
}

.top-logo a {
  text-decoration: none;
  display: inline-block;
}

.nav-logo {
  height: 30px;
  width: auto;
  filter: brightness(1.5);
  transition: opacity 0.3s ease;
}

.top-logo a:hover .nav-logo {
  opacity: 0.8;
}

/* Navigation - Centered at Top */
.navigation {
  position: relative;
  top: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding-bottom: 20px;
  z-index: 1000;
}

.nav-link {
  color: #888888;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 4px;
  font-weight: 300;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

/* Dropdown Menu for Navigation */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #333333;
  min-width: 220px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
  z-index: 1002;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 10px 25px;
  color: #888888;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-dropdown a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.logout-link {
  margin-left: 40px;
  color: #555555 !important;
}

.logout-link:hover {
  color: #aaaaaa !important;
}

/* Main Content - Landing Page with Large Centered Logo */
.content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.logo-container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.main-logo {
    width: 80%;
    max-width: 900px;
    height: auto;
    opacity: 0.05;
    filter: brightness(1.5);
}

/* Content Pages */
.content-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 160px 40px 80px;
    position: relative;
    z-index: 1;
}

.page-container {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: center;
}

.page-content {
    color: #cccccc;
    font-size: 17px;
    line-height: 1.9;
    font-weight: 300;
}

.page-content p {
    margin-bottom: 28px;
}

/* Founder Sections */
.founder-section {
    margin-bottom: 50px;
}

.founder-name {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Slider for People Page */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: flex;
    opacity: 1;
}

.founder-photo-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 40px;
    text-align: center;
}

.founder-photo {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    border: 1px solid #333333;
}

.founder-bio {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.slide h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.slide p {
    color: #cccccc;
    font-size: 17px;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 20px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333333;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #ffffff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid #666666;
    color: #cccccc;
    font-size: 24px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
}

/* Letter Section */
.letter-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #333333;
}

.letter-title {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 30px;
}

.letter-content {
    font-style: italic;
    color: #c0c0c0;
}

.letter-signature {
    margin-top: 30px;
    text-align: right;
    font-style: normal;
    color: #ffffff;
}

/* Members Page */
.members-container {
    max-width: 500px;
}

.auth-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid #333333;
}

.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #333333;
}

.auth-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: #808080;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.auth-tab.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.auth-tab:hover {
    color: #ffffff;
}

/* Form Styles */
.auth-form {
    animation: fadeIn 0.3s ease;
}

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

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

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #808080;
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333333;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #808080;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.form-links {
    margin-top: 20px;
    text-align: center;
}

.form-link {
    color: #808080;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.form-link:hover {
    color: #ffffff;
}

.form-note {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.6;
    color: #808080;
    font-style: italic;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    color: #666666;
    z-index: 1000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-logo {
        top: 15px;
    }
    
    .nav-logo {
        height: 24px;
    }
    
    .navigation {
        gap: 40px;
        top: 50px;
    }
    
    .nav-link {
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    .main-logo {
        width: 90%;
    }
    
    .content-page {
        padding: 140px 30px 80px;
    }
    
    .page-title {
        letter-spacing: 4px;
    }
    
    .page-content {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .top-logo {
        top: 12px;
    }
    
    .nav-logo {
        height: 20px;
    }
    
    .navigation {
        gap: 25px;
        top: 45px;
    }
    
    .nav-link {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .content-page {
        padding: 120px 20px 60px;
    }
}

/* Cellar E-Commerce Styles */
.cellar-page {
    padding: 140px 20px 60px;
    position: relative;
    z-index: 1;
}

.cellar-container {
    display: flex;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Filters Sidebar */
.filters-sidebar {
    width: 220px;
    flex-shrink: 0;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Custom Dropdown Wrapper */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-toggle {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333333;
    color: #888888;
    padding: 10px 0;
    font-size: 13px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    color: #ffffff;
    border-bottom-color: #666666;
}

.dropdown-toggle.active {
    color: #ffffff;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown-toggle.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border: 1px solid #333333;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu.open {
    max-height: 250px;
    overflow-y: auto;
    opacity: 1;
}

.dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #444444;
}

.dropdown-option {
    padding: 10px 15px;
    font-size: 13px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
    color: #888888;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-option:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.dropdown-option.selected {
    color: #ffffff;
    background: #1a1a1a;
}

/* Hide default select but keep for form functionality */
.filter-select {
    display: none;
}

.price-slider-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-slider {
    width: 100%;
    height: 4px;
    background: #333333;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #ffffff;
    cursor: pointer;
    border-radius: 50%;
}

.price-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    border: none;
}

.price-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888888;
}

.reset-filters-btn {
    width: 100%;
    background-color: transparent;
    border: 1px solid #666666;
    color: #cccccc;
    padding: 12px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-filters-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
}

/* Wine List */
.wine-list {
    flex: 1;
}

.wine-item {
    display: grid;
    grid-template-columns: 2fr auto auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 8px 0;
}

.wine-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.wine-name {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.wine-details {
    font-size: 13px;
    color: #888888;
    letter-spacing: 0.5px;
}

.wine-stock {
    font-size: 12px;
    color: #888888;
    letter-spacing: 1px;
    text-align: right;
    min-width: 80px;
}

.wine-stock .stock-qty {
    color: #666666;
    font-size: 11px;
}

.wine-stock.low-stock {
    color: #cc8844;
}

.wine-stock.low-stock .stock-qty {
    color: #cc8844;
}

.wine-price {
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    min-width: 60px;
    text-align: right;
}

.wine-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    background-color: transparent;
    border: none;
    color: #cccccc;
    width: 20px;
    height: 20px;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.qty-btn:hover {
    color: #ffffff;
}

.wine-quantity input {
    width: 30px;
    text-align: center;
    background-color: transparent;
    border: none;
    color: #ffffff;
    padding: 0;
    font-size: 14px;
}

.add-to-cart-btn {
    background-color: transparent;
    border: none;
    color: #cccccc;
    padding: 0;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.add-to-cart-btn:hover {
    color: #ffffff;
}

.no-wines {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Cart Button */
.cart-button {
    position: fixed;
    top: 20px;
    right: 40px;
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.cart-button:hover {
    opacity: 0.7;
}

.cart-icon {
    font-size: 20px;
}

.cart-count {
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background-color: #0a0a0a;
    border-left: 1px solid #333333;
    z-index: 3000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #333333;
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #ffffff;
}

.cart-close {
    background: transparent;
    border: none;
    color: #cccccc;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.cart-close:hover {
    color: #ffffff;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 15px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #1a1a1a;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-name {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}

.cart-item-details {
    font-size: 12px;
    color: #888888;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-btn {
    background-color: transparent;
    border: 1px solid #333333;
    color: #cccccc;
    width: 25px;
    height: 25px;
    font-size: 14px;
    cursor: pointer;
}

.cart-qty-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.cart-item-qty span {
    color: #ffffff;
    font-size: 14px;
    min-width: 20px;
    text-align: center;
}

.cart-item-price {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #666666;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

.cart-item-remove:hover {
    color: #ffffff;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #666666;
    font-size: 14px;
    letter-spacing: 2px;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid #333333;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 2px;
}

.checkout-btn {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background-color: #e0e0e0;
}

/* Responsive */
@media (max-width: 1024px) {
    .cellar-container {
        flex-direction: column;
    }
    
    .filters-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .wine-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wine-stock,
    .wine-price {
        text-align: left;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Gift Form Styles */
.gift-container {
    max-width: 900px;
}

.gift-form {
    margin-top: 20px;
}

.form-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333333;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #888888;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #333333;
    color: #ffffff;
    padding: 12px 0;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: #666666;
}

.gift-textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 15px;
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    resize: vertical;
    line-height: 1.6;
}

.gift-textarea:focus {
    outline: none;
    border-color: #666666;
}

.gift-textarea::placeholder {
    color: #555555;
}

.file-upload-area {
    position: relative;
    border: 1px dashed #333333;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-upload-area:hover {
    border-color: #666666;
}

.file-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #888888;
    font-size: 14px;
    letter-spacing: 1px;
}

.upload-icon {
    font-size: 32px;
}

.form-helper-text {
    margin-top: 8px;
    font-size: 11px;
    color: #666666;
    letter-spacing: 1px;
}

.gift-submit-btn {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 18px;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.gift-submit-btn:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Admin Dashboard Styles */
.admin-page {
    padding: 140px 40px 60px;
    position: relative;
    z-index: 1;
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
}

.admin-title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

.admin-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.summary-card {
    background-color: #0a0a0a;
    border: 1px solid #333333;
    padding: 30px 20px;
    text-align: center;
}

.summary-card h3 {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #888888;
    margin-bottom: 15px;
}

.summary-value {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
}

.admin-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #333333;
    margin-bottom: 30px;
}

.admin-tab {
    background: transparent;
    border: none;
    color: #888888;
    padding: 15px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.admin-tab:hover {
    color: #ffffff;
}

.admin-tab.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.admin-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.admin-actions button {
    background: transparent;
    border: 1px solid #333333;
    color: #cccccc;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-actions button:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.admin-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #0a0a0a;
    border: 1px solid #333333;
}

.admin-stats p {
    font-size: 13px;
    color: #888888;
}

.admin-stats strong {
    color: #ffffff;
}

.admin-table-container {
    overflow-x: auto;
    background-color: #0a0a0a;
    border: 1px solid #333333;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background-color: #000000;
    color: #888888;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #333333;
}

.admin-table td {
    padding: 15px;
    color: #cccccc;
    font-size: 13px;
    border-bottom: 1px solid #1a1a1a;
}

.admin-table tr:hover {
    background-color: #111111;
}

.low-stock-row {
    background-color: #1a0f0f !important;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    letter-spacing: 1px;
    border-radius: 3px;
    text-transform: uppercase;
}

.status-pending {
    background-color: #2a2a00;
    color: #ffff88;
}

.status-processing {
    background-color: #002a2a;
    color: #88ffff;
}

.status-shipped {
    background-color: #002a00;
    color: #88ff88;
}

.status-completed {
    background-color: #002a00;
    color: #88ff88;
}

.status-cancelled, .status-failed {
    background-color: #2a0000;
    color: #ff8888;
}

.action-btn {
    background: transparent;
    border: 1px solid #333333;
    color: #cccccc;
    padding: 5px 15px;
    font-size: 10px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.settings-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #0a0a0a;
    border: 1px solid #333333;
}

.settings-section h3 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 20px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 13px;
}

.setting-item label {
    color: #888888;
}

.setting-item span {
    color: #ffffff;
}

.danger-btn {
    background: #2a0000;
    border: 1px solid #5a0000;
    color: #ff8888;
    padding: 12px 24px;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.danger-btn:hover {
    background: #3a0000;
    border-color: #ff0000;
    color: #ffffff;
}
/* ==================== */
/* Member Footer Styles */
/* ==================== */

.member-footer {
    position: relative;
    z-index: 10;
    background-color: #000000;
    border-top: 1px solid #1a1a1a;
    padding: 40px 60px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left h3 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-left p {
    font-size: 12px;
    color: #888888;
    line-height: 1.8;
    margin: 0;
}

.footer-left .footer-email {
    margin-top: 10px;
    color: #888888;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-right a {
    font-size: 12px;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #ffffff;
}

.footer-right .footer-copyright {
    font-size: 11px;
    color: #555555;
    margin-top: 20px;
}

/* ==================== */
/* Legal Pages Styles   */
/* ==================== */

.legal-page {
    padding-top: 140px;
}

.legal-page .page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.legal-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
}

.legal-updated {
    font-size: 12px;
    color: #666666;
    margin-bottom: 50px;
}

.legal-content {
    position: relative;
    z-index: 10;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
}

.legal-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaaaaa;
    margin-bottom: 12px;
}

.legal-section p strong {
    color: #cccccc;
}

@media (max-width: 768px) {
    .member-footer {
        padding: 30px 20px;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .footer-right {
        text-align: left;
        align-items: flex-start;
    }
    .legal-page .page-container {
        padding: 20px 15px 60px;
    }
    .legal-title {
        font-size: 22px;
    }
}
