/* ================================================
   HENDOSHI - VAULT MODALS
   ================================================

   Purpose: Vault community page modals, gallery overlays, and shared
            page-level layout utilities used across the site.

   Contains:
   - Hall of Fame card photo overlay and view button
   - Collection card grid and hover effects
   - Vault-specific page-hero overrides (global hero in hero-pages.css)
   - Page wrapper (.page-wrapper) and page content (.page-content) layout
   - Sticky sidebar support
   - Social share section and buttons
   - Product quick-add modal (size/color toggle buttons, quantity controls)
   - Button component styles (.btn-pink, .btn-outline-pink, .btn-secondary)
   - Light mode overrides for all vault and shared components
   - Moved inline styles from templates (notifications, auth pages)

   Dependencies: variables.css, animations.css
   Load Order: Load after foundation and component files
   ================================================ */

.hall-of-fame-photo-overlay {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.7), rgba(255, 20, 147, 0.7));
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hall-of-fame-card:hover .hall-of-fame-photo-overlay {
    opacity: 1;
}

.hall-of-fame-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    transform: scale(0.8);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    color: var(--black);
    font-size: 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hall-of-fame-card:hover .hall-of-fame-view-btn {
    transform: scale(1) rotate(360deg);
}

.hall-of-fame-view-btn:hover {
    border-color: var(--off-white);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    color: var(--black);
    text-decoration: none;
}

.hall-of-fame-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.95);
}

.hall-of-fame-user {
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hall-of-fame-caption-wrapper {
    min-height: 6rem;
    margin-bottom: 1rem;
}

.hall-of-fame-caption {
    display: -webkit-box;
    height: 4.8rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
    color: var(--off-white);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    position: relative;
    min-height: 4.8rem;
}

.hall-of-fame-caption.expanded {
    height: auto;
    -webkit-line-clamp: unset;
}

.hall-of-fame-read-more {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--electric-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hall-of-fame-read-more:hover {
    transform: translateX(5px);
    color: var(--neon-pink);
}

.hall-of-fame-stats {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 20, 147, 0.1));
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-item i {
    font-size: 1.5rem;
}

.stat-item span {
    color: var(--off-white);
    font-weight: 700;
    font-size: 1rem;
}

.hall-of-fame-actions {
    text-align: center;
}

.hall-of-fame-vote-btn,
.hall-of-fame-like-btn {
    padding: 0.6rem 1.2rem;
    border-width: 2px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hall-of-fame-vote-btn:hover,
.hall-of-fame-like-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

.hall-of-fame-products {
    display: flex;
    flex-wrap: wrap;
    min-height: 0;
    margin-top: 1rem;
    gap: 0.5rem;
}

.hall-of-fame-products:empty {
    display: none;
    margin-top: 0;
}

.product-badge {
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: linear-gradient(135deg, var(--neon-pink), rgba(255, 20, 147, 0.8));
    font-weight: 600;
    font-size: 0.85rem;
}

/* Responsive adjustments for Hall of Fame */
@media (max-width: 1200px) {
    .hall-of-fame-intro-card {
        padding: 2rem;
    }

    .hall-of-fame-qualification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hall-of-fame-intro-card {
        padding-left: 1rem;
    }

    .hall-of-fame-subtitle {
        font-size: 1.25rem;
    }

    .hall-of-fame-description-text {
        font-size: 1rem;
    }

    .hall-of-fame-qualification-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .qualification-item {
        padding: 1rem;
        gap: 0.75rem;
        text-align: center;
    }

    .hall-of-fame-stats {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .stat-item {
        min-width: 60px;
    }
}

/* Nested Dropdown Styles for Hall of Fame */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    border-radius: 0 0.375rem 0.375rem 0;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.dropdown-submenu .dropdown-toggle::after {
    margin-left: 0.5rem;
    transform: rotate(-90deg);
}

/* Mobile adjustments for nested dropdowns */
@media (max-width: 768px) {
    .dropdown-submenu .dropdown-menu {
        display: none;
        position: static;
        padding-left: 1rem;
        border: none;
        box-shadow: none;
    }

    .dropdown-submenu:hover .dropdown-menu {
        display: block;
    }
}

/* Collections Carousel */

.collections-carousel-container,
.collections-carousel {
    position: relative;
    overflow: hidden;
}

.collections-track {
    display: flex;
    padding: 0 60px 0 0; /* Remove left padding, keep right padding for navigation */
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-carousel-item {
    flex: 0 0 280px;
    min-width: 280px;
}

.collections-carousel .collection-card:not(.has-background-image) {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 0;
    padding: 2rem 0 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.collections-carousel .collection-card.has-background-image::before {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 16px;
    background: inherit;
    content: "";
}

.collections-carousel .collection-card.has-background-image {
    border: none;
}

.collections-carousel .collection-card.has-background-image .collection-info {
    display: flex;
    z-index: 3;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    padding: 12px 16px;
    border-radius: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.78);
    background-clip: padding-box;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.75);
    text-align: center;
}

.collections-carousel .collection-card.has-background-image .collection-info h3 {
    margin-bottom: 0.5rem;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.collections-carousel .collection-card.has-background-image .collection-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.collections-carousel .collection-card:hover,
.collections-carousel .collection-card.has-background-image:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 20, 147, 0.1);
}

/* Ensure hovered cards rise above neighboring elements and are not clipped */
.collections-carousel-container,
.collections-carousel {
    overflow: visible;
}

.collections-carousel .collection-card:hover,
.collections-carousel .collection-card.has-background-image:hover {
    z-index: 20;
}

.collections-carousel .collection-image {
    margin-bottom: 1rem;
    color: var(--neon-pink);
}

.collections-carousel .collection-info {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    margin-top: 0;
}

.collections-carousel .collection-info h3 {
    margin-bottom: 0.5rem;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.collections-carousel .collection-info p {
    margin: 0;
    color: var(--off-white);
    font-size: 0.9rem;
}

.collections-carousel-btn {
    z-index: 10;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.9);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* pulse-pink moved to static/css/animations.css */

.collections-carousel-prev {
    left: 10px;
}

.collections-carousel-next {
    right: 10px;
}

/* Responsive adjustments for collections carousel */
@media (max-width: 768px) {
    .collection-carousel-item {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .collections-track {
        padding: 0 50px;
    }

    .collections-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .collection-card {
        height: 275px;
        padding: 15px;
    }

    .collection-image .fa-4x {
        font-size: 2.5em;
    }
}

/* ============================================
   VAULT-SPECIFIC HERO STYLES (removed duplicates)
   Note: Global page-hero styles are in 4-sections/hero-pages.css
   Only vault-specific overrides should be here
   ============================================ */

/* Base page wrapper - ensures consistent positioning */
.page-wrapper {
    min-height: 100vh;
    padding-top: 112px;
}

/* Page Content Container */
.page-content {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

/* Sticky Sidebar Support */
.sticky-sidebar-row {
    display: flex;
    align-items: flex-start;
}

.sticky-sidebar {
    position: sticky;
    top: 140px;
    align-self: flex-start;
}

/* Social Share Buttons */
.social-share-section {
    margin-top: 1.5rem;
}

.share-title {
    margin-bottom: 1rem;
    color: var(--off-white);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.social-share-buttons {
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-share-buttons,
.share-btn {
    display: flex;
    justify-content: center;
}

.share-btn {
    position: relative;
    align-items: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    color: var(--off-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    content: "";
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    border-color: var(--neon-pink);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.share-btn:hover::before {
    opacity: 1;
}

.share-btn i {
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.share-btn:hover i {
    transform: scale(1.1);
}

/* Platform-specific colors */
.facebook-btn:hover {
    border-color: #1877f2;
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.twitter-btn:hover {
    border-color: #1da1f2;
    background: linear-gradient(135deg, #1da1f2, #42a5f5);
}

.pinterest-btn:hover {
    border-color: #e60023;
    background: linear-gradient(135deg, #e60023, #ff4081);
}

.instagram-btn:hover {
    border-color: #e6683c;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.copy-link-btn:hover {
    border-color: var(--neon-pink);
    background: linear-gradient(135deg, var(--neon-pink), var(--electric-yellow));
}

/* Shipping Page Styles */
.shipping-content {
    padding: 2rem;
}

.shipping-intro {
    text-align: center;
}

.shipping-heading {
    margin-bottom: 1rem;
    color: var(--off-white);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shipping-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.shipping-regions {
    margin-top: 3rem;
}

.shipping-region {
    margin-bottom: 2rem;
    padding: 2rem;
    border: 1px solid var(--border-glass-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background: var(--bg-glass-light);
    transition: all 0.3s ease;
}

.shipping-region:hover {
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.region-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.region-icon {
    margin-right: 1rem;
    color: var(--neon-pink);
    font-size: 2rem;
}

.region-title {
    margin: 0;
    color: var(--off-white);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shipping-option:last-child {
    border-bottom: none;
}

.option-name {
    color: var(--off-white);
    font-weight: 600;
    font-size: 1rem;
}

.option-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.option-time {
    color: var(--gray);
    font-size: 0.9rem;
}

.option-cost {
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1rem;
}

.additional-heading {
    margin-bottom: 1.5rem;
    color: var(--off-white);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.additional-list li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

.additional-list li::before {
    position: absolute;
    left: 0;
    content: "•";
    color: var(--neon-pink);
    font-weight: bold;
}

/* .shipping-contact .btn-pink moved to components.css for canonical styling */

/* Mobile responsiveness for shipping page */
@media (max-width: 768px) {
    .shipping-content {
        padding: 0.75rem;
    }

    .shipping-heading {
        font-size: 1.6rem;
    }

    .region-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .region-icon {
        margin-right: 0;
    }

    .shipping-option {
        flex-direction: column;
        gap: 0.5rem;
    }

    .shipping-option,
    .option-details {
        align-items: flex-start;
    }

    .additional-list li {
        padding-left: 1rem;
    }

    .shipping-description {
        max-width: none;
        margin: 0;
    }

    .shipping-region {
        padding: 1rem 0.5rem;
    }

    /* Size Guide table - hide inches columns on mobile, show only cm */
    .size-table th:nth-child(2),
    .size-table td:nth-child(2),
    .size-table th:nth-child(4),
    .size-table td:nth-child(4),
    .size-table th:nth-child(6),
    .size-table td:nth-child(6) {
        display: none;
    }

    .size-table th,
    .size-table td {
        padding: 8px 6px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .size-table {
        margin: 15px 0;
    }

    /* Prevent horizontal scroll on size guide */
    .table-responsive {
        overflow-x: visible;
    }
}

/* Product Types Table Enhancements */
.type-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
    border: 1px solid;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.type-badge-static {
    border-color: rgba(13, 110, 253, 0.3);
    background: rgba(13, 110, 253, 0.1);
}

.type-badge-static,
.type-badge-static i {
    color: #0d6efd;
}

.type-badge-custom {
    border-color: rgba(40, 167, 69, 0.3);
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    font-size: 0.5rem;
}

.type-badge-custom i {
    color: #28a745;
    font-size: 0.5rem;
}

.product-count-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    font-weight: 600;
    font-size: 0.85rem;
}

.product-count-badge i {
    color: #ffc107;
}

/* Enhanced table styling */
.table-responsive .archived-products-table tbody tr {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.table-responsive .archived-products-table tbody tr:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.table-responsive .archived-products-table td {
    padding: 1rem 0.75rem;
    border: none;
    vertical-align: middle;
}

.table-responsive .archived-products-table td:first-child {
    color: var(--off-white);
    font-weight: 600;
}

.table-responsive .archived-products-table td code {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

/* Button group styling */
.btn-group .btn {
    margin-right: 0.25rem;
    border-radius: 6px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Enhanced empty state */
.alert-info {
    border: 1px solid rgba(23, 162, 184, 0.2);
    border-radius: 12px;
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

/* Product Types Page Enhancements */
.slug-text {
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: var(--border-glass-color);
    color: rgba(255, 255, 255, 0.8);
}

.slug-text,
.built-in-type-text {
    font-weight: 500;
    font-size: 0.85rem;
}

.built-in-type-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(13, 110, 253, 0.9);
}

.built-in-type-text i {
    color: rgba(13, 110, 253, 0.7);
}

.guide-alert {
    border: 1px solid rgba(23, 162, 184, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.15), rgba(13, 110, 253, 0.1));
    color: rgba(255, 255, 255, 0.9);
}

.guide-alert strong {
    color: rgba(255, 255, 255, 0.95);
}

.guide-alert .text-static {
    color: #0d6efd;
    font-weight: 600;
}

.guide-alert .text-custom {
    color: #28a745;
    font-weight: 600;
}

/* Vault Hero Section Styling - removed duplicates, kept vault-specific only */

.pug-skull-branding {
    z-index: 2;
    position: relative;
    width: 80px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.3));
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.pug-skull-branding:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.5));
}

/* Mobile: Reduce pug size and spacing */
@media (max-width: 768px) {
    .pug-skull-branding {
        width: 70px;
        margin-top: 0;
        margin-bottom: 0.75rem;
    }
}

/* Vault Hero Stats Row - for pages with multiple stats like cart */
.page-hero-stats {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    gap: 1rem;
}

.page-hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-hero-stats .stat-value {
    color: var(--neon-pink);
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1.2;
}

.page-hero-stats .stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-hero-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .page-hero-stats .stat-value {
        font-size: 1.4rem;
    }

    .page-hero-stats .stat-label {
        font-size: 0.7rem;
    }

    .page-hero-stats .stat-divider {
        height: 30px;
    }
}

/* Canonical wrapper styles for all pages with page-hero */
/* Single source of truth for page wrapper padding */
.vault-page,
.products-page,
.auth-page,
.checkout-page,
.contact-page {
    position: static;
    min-height: 100vh;
    padding-top: 112px;
    overflow: visible;
    overflow-x: clip;
}

/* Mobile: consistent padding for all page wrappers */
@media (max-width: 768px) {
    .vault-page,
    .products-page,
    .auth-page,
    .checkout-page,
    .contact-page {
        padding-top: 100px;
        overflow-x: clip;
    }
}

.vault-page::after,
.products-page::after,
.auth-page::after,
.checkout-page::after,
.contact-page::after {
    display: block;
    clear: both;
    content: "";
}
/* page-container defaults moved to components.css; keep auth-page overrides below */

/* Auth pages: bring the form container closer to the hero */
.auth-page .page-container {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
}

@media (max-width: 768px) {
    .auth-page .page-container {
        padding-top: 0.5rem;
    }
}

/* Removed duplicate page-hero responsive styles - use canonical hero-pages.css */

/* Vault Submit Photo Page Styles */
.vault-submit-hero {
    position: relative;
    margin-bottom: 2rem;
    padding: 3rem 2rem;
    overflow: hidden;
    border: 2px solid #ff1493;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.vault-submit-hero::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF1493' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    content: "";
    opacity: 0.1;
}

.vault-submit-hero-icon {
    margin-bottom: 1rem;
    color: #ff1493;
    font-size: 4rem;
    animation: pulse-scale 2s infinite;
}

.vault-submit-hero-title {
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.vault-submit-hero-subtitle {
    margin-bottom: 2rem;
    color: #ccc;
    font-size: 1.2rem;
}

.vault-submit-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    color: #fff;
    text-align: center;
}

.stat-number {
    color: #ff1493;
    font-weight: bold;
    font-size: 2rem;
}

.stat-label {
    margin-top: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.stat-icon {
    margin-bottom: 0.5rem;
    color: #ff1493;
    font-size: 1.5rem;
}

.vault-submit-header {
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-bottom: 2px solid rgba(255, 20, 147, 0.2);
    text-align: center;
}

.vault-submit-header-icon {
    margin-bottom: 1rem;
    color: var(--neon-pink);
    font-size: 3rem;
}

.vault-submit-title {
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--electric-yellow));
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-size: 2rem;
}

.vault-submit-description {
    margin-bottom: 0;
    color: var(--off-white);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.85;
}

.vault-upload-zone {
    position: relative;
    padding: 3rem 2rem;
    border-bottom: 2px solid rgba(255, 20, 147, 0.1);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vault-upload-zone:hover {
    border-color: rgba(255, 20, 147, 0.3);
    background: rgba(255, 20, 147, 0.08);
}

.vault-upload-content {
    color: var(--off-white);
}

.vault-upload-icon {
    margin-bottom: 1rem;
    color: var(--neon-pink);
    font-size: 4rem;
}

.vault-upload-title {
    margin-bottom: 0.5rem;
    color: var(--off-white);
    font-weight: 600;
    font-size: 1.5rem;
}

.vault-upload-subtitle {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.vault-upload-requirements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.requirement-item {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    background: rgba(255, 20, 147, 0.15);
    color: var(--neon-pink);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 20, 147, 0.25);
}

.vault-file-input {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.vault-upload-preview {
    z-index: 10;
    position: relative;
}

.vault-upload-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.3);
}

.vault-preview-remove {
    display: flex;
    position: absolute;
    top: -10px;
    right: -10px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 2px 10px rgba(255, 20, 147, 0.4);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vault-preview-remove:hover {
    transform: scale(1.1);
    background: var(--electric-yellow);
}

.vault-form-section {
    padding: 2rem;
    border-bottom: 2px solid rgba(255, 20, 147, 0.1);
}

.vault-form-section:last-child {
    border-bottom: none;
}

.vault-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.section-icon {
    color: var(--neon-pink);
    font-size: 1.5rem;
}

/* Modal section title override */
.modal-section .section-title {
    margin: 0;
}

.vault-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--off-white);
    font-weight: 600;
}

.vault-form-group {
    margin-bottom: 1.5rem;
}

.vault-form-textarea {
    width: 100%;
    height: 120px;
    padding: 1rem;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--off-white);
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.vault-form-textarea:focus {
    border-color: var(--neon-pink);
    outline: none;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(255, 20, 147, 0.25);
}

.vault-multi-select {
    display: flex;
    flex-direction: column;
    min-height: 50px;
    padding: 1rem;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--off-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.vault-multi-select:focus-within {
    border-color: var(--neon-pink);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(255, 20, 147, 0.25);
}

.vault-tag-input {
    box-sizing: border-box;
    height: 30px;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--off-white);
    font-size: 1rem;
    line-height: 30px;
}

.vault-tag-input::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.vault-selected-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.vault-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    gap: 0.25rem;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--neon-pink), var(--electric-yellow));
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.2);
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.85rem;
}

.vault-tag-remove {
    padding: 0 2px;
    border-radius: 50%;
    color: var(--charcoal);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vault-tag-remove:hover {
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

.vault-char-counter {
    margin-top: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    text-align: right;
}

.vault-form-help {
    margin-top: 1.5rem;
    color: var(--neon-pink);
    font-weight: 500;
    font-size: 0.9rem;
}

.vault-rules-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 2px solid rgba(255, 20, 147, 0.25);
    border-radius: 12px;
    background: rgba(255, 20, 147, 0.08);
}

.rules-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
    color: var(--off-white);
    font-weight: 600;
    font-size: 1.2rem;
}

.rules-icon {
    color: var(--neon-pink);
}

.rules-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--off-white);
    font-size: 0.9rem;
}

.rule-check {
    color: var(--neon-pink);
    font-size: 0.8rem;
}

.vault-consent-section {
    margin-top: 2rem;
}

.vault-consent-checkbox {
    border: 2px solid rgba(255, 20, 147, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.vault-consent-checkbox:checked {
    border-color: var(--neon-pink);
    background-color: var(--neon-pink);
}

.vault-consent-label {
    color: var(--off-white);
    font-size: 0.95rem;
    line-height: 1.4;
}

.vault-submit-section {
    padding: 2rem;
    border-top: 2px solid rgba(255, 20, 147, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.vault-submit-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.vault-back-btn {
    display: inline-block;
    padding: 0.6rem 1rem;
    border: 2px solid #ff1493;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff1493, #ccff00);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.45);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.vault-back-btn,
.vault-back-btn:hover {
    color: #000;
    text-decoration: none;
}

.vault-back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.6);
}

.vault-submit-btn {
    position: relative;
    padding: 0.6rem 1rem;
    overflow: hidden;
    border: 2px solid #ff1493;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff1493, #ccff00);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.45);
    color: #000;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.vault-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.6);
}

.vault-submit-note {
    padding: 1rem;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    background: rgba(255, 20, 147, 0.08);
    color: var(--gray);
    font-size: 0.9rem;
    text-align: center;
}

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

@media (max-width: 768px) {
    .vault-submit-hero {
        padding: 2rem 1rem;
    }

    .vault-submit-stats {
        gap: 1rem;
    }

    .vault-upload-zone {
        padding: 2rem 1rem;
    }

    .vault-form-section {
        padding: 1.5rem 1rem;
    }

    .vault-submit-actions {
        flex-direction: column;
    }

    .vault-submit-actions .btn {
        width: 100%;
    }
}

/* Battle Vest Page Additional Styles */
.vest-hero-stat {
    color: #ccc;
    font-size: 1rem;
}

.vest-hero-stat i {
    margin-right: 0.5rem;
    color: var(--neon-pink);
}

.battle-vest-container {
    padding-top: 2rem;
}

.vest-modal-text {
    font-size: 1.1rem;
}

/* Order History Mobile Styles */
@media (max-width: 768px) {
    .order-history-btn-mobile {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Battle Vest Hero Stats - Force side by side on mobile */
@media (max-width: 576px) {
    .vest-hero-stat {
        flex-shrink: 0;
    }

    .vest-hero-stat i {
        margin-right: 0.25rem;
    }
}

/* Override page-hero mobile stacking for battle vest stats */
body .page-hero .battle-vest-stats {
    flex-direction: row;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    body .page-hero .battle-vest-stats {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    .card {
        margin-bottom: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        color: var(--off-white);
    }

    .card-title {
        margin-bottom: 0.5rem;
        font-size: 1rem;
        line-height: 1.3;
    }

    .card-title,
    .card-title strong,
    .badge {
        color: var(--off-white);
    }

    .btn-group-vertical .btn {
        margin-bottom: 0.125rem;
        border-radius: 6px;
    }

    .btn-group-vertical .btn:last-child {
        margin-bottom: 0;
    }
    .btn-outline-primary {
        border-color: #0d6efd;
        background: transparent;
        color: #0d6efd;
    }

    .btn-outline-primary:hover {
        border-color: #0d6efd;
        background-color: #0d6efd;
        color: #fff;
    }

    .btn-outline-danger {
        border-color: #dc3545;
        background: transparent;
        color: #dc3545;
    }

    .btn-outline-danger:hover {
        border-color: #dc3545;
        background-color: #dc3545;
        color: #fff;
    }
}

/* Admin Product Types Mobile Styles */
@media (max-width: 768px) {
    /* Match desktop button colors */
}

@media (max-width: 576px) {
    .card-title {
        font-size: 0.9rem;
    }

    .btn-group-vertical .btn {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* Admin Collections Mobile Styles */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.9rem;
    }

    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .btn-group .btn {
        width: 100%;
    }

    .slug-text {
        font-size: 0.8rem;
        word-break: break-all;
    }
}

/* Products Page Additional Styles */
.filters-section {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

/* Right-aligned filters with spacing */
.filters-section .filters-sort-wrapper,
.filters-right {
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
    margin-left: auto;
}
.filters-right {
    margin-top: 1rem;
}

.glassmorphic-panel {
    padding: 1rem;
    border: 1px solid var(--border-glass-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background: var(--bg-glass-light);
}

.product-vest-btn-positioned {
    z-index: 10;
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 0;
    border: none;
    background: none;
}

.product-image-relative {
    position: relative;
}

/* Admin Products List Styles */

/* Mobile Card Styles */
@media (max-width: 768px) {
    .card {
        margin-bottom: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        color: var(--off-white);
    }

    .card-title {
        margin-bottom: 0.5rem;
        font-size: 1rem;
        line-height: 1.3;
    }

    .card-title,
    .card-title strong,
    .badge {
        color: var(--off-white);
    }

    .btn-group-vertical .btn {
        margin-bottom: 0.125rem;
        border-radius: 6px;
    }

    .btn-group-vertical .btn:last-child {
        margin-bottom: 0;
    }

    /* Match desktop button colors */
    .btn-outline-info {
        border-color: #0dcaf0;
        background: transparent;
        color: #0dcaf0;
    }

    .btn-outline-info:hover {
        border-color: #0dcaf0;
        background-color: #0dcaf0;
        color: #000;
    }

    .btn-outline-primary {
        border-color: #0d6efd;
        background: transparent;
        color: #0d6efd;
    }

    .btn-outline-primary:hover {
        border-color: #0d6efd;
        background-color: #0d6efd;
        color: #fff;
    }

    .btn-outline-success {
        border-color: #198754;
        background: transparent;
        color: #198754;
    }

    .btn-outline-success:hover {
        border-color: #198754;
        background-color: #198754;
        color: #fff;
    }

    .btn-outline-danger {
        border-color: #dc3545;
        background: transparent;
        color: #dc3545;
    }

    .btn-outline-danger:hover {
        border-color: #dc3545;
        background-color: #dc3545;
        color: #fff;
    }
}

/* Product Thumbnail Styles */
.product-thumbnail {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.product-thumbnail,
.product-thumbnail-mobile {
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
}

.product-thumbnail-mobile {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 576px) {
    .card-title {
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .card-text {
        font-size: 0.75rem;
    }

    .product-thumbnail {
        width: 40px;
        height: 40px;
    }

    .product-thumbnail-mobile {
        width: 35px;
        height: 35px;
    }
}

/* Admin Products Container Mobile Styles */
@media (max-width: 768px) {
    /* Reduce outer auth-card horizontal padding so cards can reach closer to the border */
    .admin-products-container .auth-card {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    /* Reduce column gutters inside the admin area */
    .admin-products-container .row.g-3 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
    }

    /* Make each column use minimal side padding so cards are wider */
    .admin-products-container [class*="col-"] {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    /* Let cards span the full width available within their column */
    .admin-products-container .card {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    /* Slightly reduce internal card padding to fit more content */
    .admin-products-container .card-body {
        padding: 0.5rem;
    }

    /* Filter + Clear buttons: place them side-by-side on mobile and center within their column */
    .admin-products-container .col-md-3 > .d-flex.flex-column {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .admin-products-container .col-md-3 > .d-flex.flex-column .filter-btn-mobile,
    .admin-products-container .col-md-3 > .d-flex.flex-column .clear-btn-mobile {
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        max-width: 100%;
    }

    /* Give filter more flex space and clear a smaller share so they fit side-by-side */
    .admin-products-container .col-md-3 > .d-flex.flex-column .filter-btn-mobile {
        flex: 3 1 60%;
        padding: 0.6rem 0.9rem;
        font-weight: 800;
    }

    .admin-products-container .col-md-3 > .d-flex.flex-column .clear-btn-mobile {
        flex: 1 1 35%;
        padding: 0.45rem 0.7rem;
    }

    /* Match pagination sizing used on Products Management so admin lists
       (including Order History when using admin-products-container) show
       the compact pagination controls instead of the larger cart-style buttons. */
    .admin-products-container .pagination {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0;
        gap: 0.25rem;
    }

    .admin-products-container .pagination .page-item .page-link {
        min-width: auto;
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }

    /* Make bulk action buttons align with inner card edges and size evenly */
    .admin-products-container .mt-3.d-flex {
        flex-direction: column;
        align-items: stretch;
        padding-right: 0;
        padding-left: 0;
        gap: 0.75rem;
    }

    .admin-products-container .mt-3.d-flex > div:first-child {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 0.75rem;
    }

    .admin-products-container .mt-3.d-flex > div:first-child .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.75rem 1rem;
    }

    .admin-products-container .mt-3.d-flex > div:first-child .btn + .btn {
        margin-left: 0;
    }
}

/* Desktop: place Filter and Clear side-by-side inside their column and prevent overflow */
@media (min-width: 768px) {
    /* target the specific button wrapper column */
    .admin-products-container .col-md-3 > .d-flex.flex-column {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 0.75rem;
    }

    .admin-products-container .col-md-3 > .d-flex.flex-column .filter-btn-mobile,
    .admin-products-container .col-md-3 > .d-flex.flex-column .clear-btn-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }

    /* give them relative flex sizes so both fit inside the column */
    .admin-products-container .col-md-3 > .d-flex.flex-column .filter-btn-mobile {
        flex: 2 1 60%;
        padding: 0.6rem 0.9rem;
        font-weight: 800;
    }

    .admin-products-container .col-md-3 > .d-flex.flex-column .clear-btn-mobile {
        flex: 1 1 35%;
        padding: 0.5rem 0.8rem;
    }

    /* ensure buttons don't cause the auth-card to overflow */
    .admin-products-container .auth-card,
    .admin-products-container .auth-card .row {
        overflow: hidden;
    }
}

/* Delete Confirmation Styles */
.delete-confirmation-wrapper {
    min-height: calc(100vh - 300px);
    margin-top: 150px;
    margin-bottom: 80px;
}

.delete-card {
    padding: 3rem 2rem;
}

.delete-icon {
    margin-bottom: 1.5rem;
    color: var(--neon-pink);
    font-size: 4rem;
    animation: pulse-opacity 2s ease-in-out infinite;
}
/* pulse-opacity moved to static/css/animations.css */

.delete-product-name {
    color: #ffffff;
    font-weight: 400;
    font-size: 1.1rem;
}

.delete-product-name strong {
    color: var(--neon-pink);
    font-weight: 700;
}

.delete-warning {
    padding: 1rem;
    border-left: 3px solid var(--neon-pink);
    border-radius: 8px;
    background: rgba(255, 20, 147, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.delete-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-delete-product {
    display: inline-block;
    min-width: 180px;
    padding: 1rem 2.5rem;
    border: 2px solid var(--neon-pink);
    border-radius: 50px;
    background-color: var(--neon-pink);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-delete-product:hover {
    transform: translateY(-3px);
    background-color: var(--electric-yellow);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
    color: var(--black);
}

.delete-button-group .btn-outline-pink {
    display: inline-block;
    min-width: 180px;
    padding: 1rem 2.5rem;
    border: 2px solid var(--neon-pink);
    border-radius: 50px;
    background-color: transparent;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.delete-button-group .btn-outline-pink:hover {
    transform: translateY(-3px);
    border-color: var(--electric-yellow);
    background-color: var(--electric-yellow);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.5);
    color: var(--black);
}

/* Light Mode Overrides for Delete Confirmation */
:root.light-mode .delete-product-name {
    color: var(--black);
}

:root.light-mode .delete-warning {
    background: rgba(255, 20, 147, 0.08);
    color: rgba(0, 0, 0, 0.8);
}

:root.light-mode .btn-delete-product {
    background-color: var(--neon-pink);
    color: white;
}

:root.light-mode .btn-delete-product:hover {
    background-color: var(--electric-yellow);
    color: var(--black);
}

:root.light-mode .delete-button-group .btn-outline-pink {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

:root.light-mode .delete-button-group .btn-outline-pink:hover {
    border-color: var(--electric-yellow);
    background-color: var(--electric-yellow);
    color: var(--black);
}

/* --- Products: create/edit/product-detail extracted styles --- */

/* Form sections and editor styling for create/edit product */

.variant-form-row {
    margin-bottom: 0.5rem !important;
    padding: 0.75rem !important;
    transition: all 0.3s ease;
}

.image-form-row:hover,
.variant-form-row:hover {
    border-color: var(--neon-pink);
    background-color: rgba(26, 26, 26, 0.9);
}

/* Quill Editor Dark Theme Styling used in create/edit */
.ql-toolbar.ql-snow {
    border: 2px solid var(--electric-yellow);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    background-color: #1a1a1a;
}

.ql-container.ql-snow {
    border: 2px solid var(--electric-yellow);
    border-top: none;
    border-radius: 0 0 8px 8px;
    background-color: #0a0a0a;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.ql-editor {
    min-height: 200px;
    color: #fff;
    font-size: 15px;
}

.ql-editor.ql-blank::before {
    color: #666;
    font-style: normal;
}

.ql-toolbar.ql-snow .ql-stroke {
    stroke: var(--neon-pink);
}
.ql-toolbar.ql-snow .ql-fill {
    fill: var(--neon-pink);
}
.ql-toolbar.ql-snow .ql-picker-label {
    color: var(--neon-pink);
}
.ql-toolbar.ql-snow button:hover .ql-stroke,
.ql-toolbar.ql-snow button:focus .ql-stroke,
.ql-toolbar.ql-snow button.ql-active .ql-stroke {
    stroke: var(--electric-yellow);
}
.ql-toolbar.ql-snow button:hover .ql-fill,
.ql-toolbar.ql-snow button:focus .ql-fill,
.ql-toolbar.ql-snow button.ql-active .ql-fill {
    fill: var(--electric-yellow);
}
.ql-toolbar.ql-snow button:hover,
.ql-toolbar.ql-snow button:focus,
.ql-toolbar.ql-snow button.ql-active {
    background-color: rgba(255, 20, 147, 0.1);
}
.ql-editor strong {
    color: var(--neon-pink);
}
.ql-editor em {
    color: var(--electric-yellow);
}
.ql-editor a {
    color: var(--neon-pink);
}

#quill-editor:focus-within .ql-container {
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}
#quill-editor:focus-within .ql-toolbar {
    border-color: var(--neon-pink);
}

/* Formset helpers */
.image-form-row .auth-form-input.has-value,
.variant-form-row .auth-form-input.has-value,
.image-form-row select.has-value,
.variant-form-row select.has-value {
    border-color: rgba(204, 255, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
}

.btn-close-formset {
    display: flex;
    z-index: 10;
    position: absolute;
    top: 10px;
    right: 10px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #ff1493;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-close-formset:hover {
    transform: scale(1.1);
    background: rgba(255, 20, 147, 0.2);
    color: #ff69b4;
}

/* Clear file control */
.clear-file-x {
    color: #ff1493;
    transition: color 0.2s;
}
.clear-file-x:hover {
    color: #ff69b4;
    text-shadow: 0 0 2px #fff;
}

/* AI modal used in create/edit */
.ai-modal {
    display: none;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.ai-modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid var(--neon-pink);
    border-radius: 16px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
    animation: modalSlideIn 0.3s ease-out; /* keyframe defined in animations.css */
}
.ai-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 2px solid var(--electric-yellow);
}
.ai-modal-header h3 {
    margin: 0;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1.3rem;
}
.ai-modal-close {
    border: none;
    background: none;
    color: var(--neon-pink);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ai-modal-close:hover {
    transform: rotate(90deg);
    color: var(--electric-yellow);
}
.ai-modal-body {
    padding: 25px;
}
.suggestion-card {
    margin-bottom: 15px;
    padding: 20px;
    border: 2px solid var(--electric-yellow);
    border-radius: 12px;
    background: #0a0a0a;
    cursor: pointer;
    transition: all 0.3s ease;
}
.suggestion-card:hover {
    transform: translateX(5px);
    border-color: var(--neon-pink);
    background: rgba(255, 20, 147, 0.05);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
}
.suggestion-text {
    margin-bottom: 10px;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}
.suggestion-length {
    color: var(--electric-yellow);
    font-weight: 600;
    font-size: 12px;
}
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

/* Product detail social share styles */
.social-share-section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.share-title {
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}
.social-share-buttons {
    flex-wrap: wrap;
    gap: 0.75rem;
}
.social-share-buttons,
.share-btn {
    display: flex;
    justify-content: center;
}
.share-btn {
    align-items: center;
    min-width: 120px;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    border: 2px solid;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.share-btn i {
    font-size: 1.1rem;
}
.share-text {
    font-weight: 600;
}
.facebook-btn {
    border-color: #1877f2;
    color: #1877f2;
}
.facebook-btn:hover {
    background: #1877f2;
    color: white;
}
.twitter-btn {
    border-color: #1da1f2;
    color: #1da1f2;
}
.twitter-btn:hover {
    background: #1da1f2;
    color: white;
}
.pinterest-btn {
    border-color: #e60023;
    color: #e60023;
}
.pinterest-btn:hover {
    background: #e60023;
    color: white;
}

/* Newsletter confirmation / management styles (moved from template) */

.newsletter-benefits,
.newsletter-management {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-glass-color);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    background: var(--bg-glass-light);
}

.newsletter-benefits h5,
.newsletter-management h5 {
    margin-bottom: 1rem;
    color: var(--off-white);
    font-weight: 600;
}

.newsletter-benefits .list-unstyled li {
    margin-bottom: 0.75rem;
    color: var(--off-white);
    font-size: 0.95rem;
}

.newsletter-benefits .fas {
    width: 16px;
    color: var(--neon-pink);
}

.newsletter-footer {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.btn-outline-primary {
    border-color: var(--neon-pink);
    background: transparent;
    color: var(--neon-pink);
}

.btn-outline-primary:hover {
    border-color: var(--neon-pink);
    background-color: var(--neon-pink);
    color: #000;
}

.btn-outline-secondary {
    border-color: var(--gray);
    background: transparent;
    color: var(--gray);
}

.btn-outline-secondary:hover {
    border-color: var(--gray);
    background-color: var(--gray);
    color: #000;
}

/* ======================================================================
   MOVED INLINE STYLES FROM TEMPLATES (auto-migrated)
   The following blocks were moved from templates/*.html to central CSS
   Files moved: notifications/preferences.html, notifications/unsubscribe.html,
   notifications/unsubscribe_confirm.html, account/verification_sent.html,
   account/verified_email_required.html, checkout/activate_account.html,
   home/returns.html
   ====================================================================== */

/* From: templates/notifications/preferences.html */
.notification-section {
    padding: 16px;
    border: 1px solid rgba(255, 20, 147, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.02);
}

.form-check-input:checked {
    border-color: var(--neon-pink);
    background-color: var(--neon-pink);
}

.form-check-input:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 0.25rem rgba(255, 45, 161, 0.25);
}

.form-switch .form-check-input {
    width: 3em;
    height: 1.5em;
}

#notificationOptions {
    transition: opacity 0.3s ease;
}

#notificationOptions.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.text-pink {
    color: var(--neon-pink);
}

/* ================================================
   LIGHT MODE OVERRIDES - Vault & Community
   ================================================ */

/* Vault cards */
:root.light-mode .vault-card {
    border-color: rgba(255, 20, 147, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

:root.light-mode .vault-card:hover {
    border-color: var(--neon-pink);
}

:root.light-mode .vault-info {
    background: rgba(255, 255, 255, 0.95);
}

:root.light-mode .vault-caption {
    color: #222;
}

:root.light-mode .vault-user {
    color: var(--neon-pink);
}

:root.light-mode .vault-likes {
    color: #555;
}

/* Vault featured section (carousel) */
:root.light-mode .vault-featured-section {
    border-color: rgba(255, 20, 147, 0.2);
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05), rgba(204, 255, 0, 0.03));
}

:root.light-mode .vault-featured-card,
:root.light-mode body .vault-featured-card.glassmorphic-card {
    border-color: rgba(255, 20, 147, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

:root.light-mode .vault-featured-card:hover {
    border-color: var(--electric-yellow);
}

:root.light-mode .vault-featured-info {
    background: rgba(255, 255, 255, 0.95);
}

:root.light-mode .vault-featured-caption {
    color: #222;
}

:root.light-mode .vault-featured-user {
    color: var(--neon-pink);
}

:root.light-mode .vault-featured-likes,
:root.light-mode .vault-featured-subtitle {
    color: #555;
}

:root.light-mode .vault-featured-note {
    color: var(--neon-pink);
}

/* Hall of fame cards */
:root.light-mode .hof-card,
:root.light-mode .hall-of-fame-card {
    border-color: rgba(255, 20, 147, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

:root.light-mode .hof-card:hover,
:root.light-mode .hall-of-fame-card:hover {
    border-color: var(--neon-pink);
}

:root.light-mode .hof-info,
:root.light-mode .hall-of-fame-info {
    background: rgba(255, 255, 255, 0.95);
}

:root.light-mode .hof-caption,
:root.light-mode .hall-of-fame-caption {
    color: #222;
}

:root.light-mode .hof-user,
:root.light-mode .hall-of-fame-user {
    color: rgba(0, 0, 0, 0.6);
}

/* Hall of fame header - trophy and score light mode */
:root.light-mode .trophy-icon {
    color: #d4a500;
    text-shadow:
        0 0 10px rgba(212, 165, 0, 0.4),
        0 0 20px rgba(212, 165, 0, 0.2);
}

:root.light-mode .feature-score {
    background: linear-gradient(135deg, rgba(212, 165, 0, 0.15), rgba(255, 20, 147, 0.1));
    color: #b8860b;
}

:root.light-mode .featured-date {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

:root.light-mode .featured-info i {
    color: #d4a500;
}

:root.light-mode .hall-of-fame-header {
    border-bottom-color: rgba(212, 165, 0, 0.3);
    background: linear-gradient(135deg, rgba(212, 165, 0, 0.15), rgba(255, 20, 147, 0.1));
}

:root.light-mode .hof-user i,
:root.light-mode .hall-of-fame-user i {
    color: var(--neon-pink);
}

/* Vault form fields */
:root.light-mode .vault-form-input,
:root.light-mode .vault-form-textarea,
:root.light-mode .vault-form-select {
    border-color: rgba(255, 20, 147, 0.3);
    background-color: rgba(255, 255, 255, 0.95);
    color: #222;
}

:root.light-mode .vault-form-input:focus,
:root.light-mode .vault-form-textarea:focus,
:root.light-mode .vault-form-select:focus {
    border-color: var(--neon-pink);
    background-color: #fff;
}

:root.light-mode .vault-form-label {
    color: #333;
}

:root.light-mode .vault-form-text {
    color: #666;
}

:root.light-mode .vault-option {
    background: #fff;
    color: #222;
}

:root.light-mode .vault-check-label {
    color: #333;
}

/* Vault submit card */
:root.light-mode .vault-card-header {
    background: rgba(255, 20, 147, 0.08);
}

:root.light-mode .vault-submit-title {
    color: var(--neon-pink);
}

:root.light-mode .vault-submit-subtitle {
    color: #555;
}

/* Vault sidebar */
:root.light-mode .vault-detail-sidebar-inner {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

:root.light-mode .vault-sidebar-caption,
:root.light-mode .vault-sidebar-username {
    color: #222;
}

:root.light-mode .vault-sidebar-date {
    color: #666;
}

:root.light-mode .vault-sidebar-share-title {
    color: #333;
}

/* Vault dropdown */
:root.light-mode .vault-dropdown,
:root.light-mode .vault-multi-dropdown {
    border-color: rgba(255, 20, 147, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

:root.light-mode .vault-dropdown-item {
    border-bottom-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

:root.light-mode .vault-dropdown-item:hover,
:root.light-mode .vault-dropdown-item.selected {
    background: linear-gradient(90deg, rgba(255, 20, 147, 0.15), rgba(204, 255, 0, 0.1));
    color: #222;
}

:root.light-mode .vault-filter-select {
    border-color: rgba(255, 20, 147, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: #222;
}

:root.light-mode .vault-filter-label {
    color: #333;
}

/* Vault products section */
:root.light-mode .vault-products-section {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

:root.light-mode .vault-section-title {
    color: #222;
}

/* Vault product cards */
:root.light-mode .vault-product-card {
    border-color: rgba(255, 20, 147, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

:root.light-mode .vault-product-card:hover {
    border-color: var(--neon-pink);
}

/* Vault Page Light Mode */
:root.light-mode .vault-page,
:root.light-mode .products-page {
    background: #f5f5f5;
}

:root.light-mode .moderation-card {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

:root.light-mode .moderation-card:hover {
    border-color: var(--neon-pink);
}

:root.light-mode .moderation-caption {
    color: #222;
}

:root.light-mode .moderation-user,
:root.light-mode .moderation-date {
    color: rgba(0, 0, 0, 0.6);
}

:root.light-mode .moderation-tags {
    color: rgba(0, 0, 0, 0.5);
}

:root.light-mode .filters-card {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

:root.light-mode .vault-moderate-label {
    color: #222;
}

:root.light-mode .vault-search-input {
    border-color: rgba(0, 0, 0, 0.2);
    background: white;
    color: #222;
}

:root.light-mode .vault-search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

:root.light-mode .vault-empty-title {
    color: #222;
}

:root.light-mode .vault-empty-text,
:root.light-mode .vault-small {
    color: rgba(0, 0, 0, 0.6);
}

/* Product Types Page - Slug Text Light Mode */
:root.light-mode .slug-text {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.7);
}

:root.light-mode .guide-alert {
    color: #222;
}

:root.light-mode .guide-alert strong {
    color: #111;
}

/* Vault Photo Detail - Person Icon & User Avatar */
:root.light-mode .vault-sidebar-user-avatar {
    background: linear-gradient(135deg, var(--neon-pink), #9b59b6);
    color: #fff;
}

:root.light-mode .vault-sidebar-user-avatar i {
    color: #fff;
}

:root.light-mode .vault-user i,
:root.light-mode .moderation-user i,
:root.light-mode .moderation-date i {
    color: var(--neon-pink);
}
