/* ==========================================================================
   Card Guys Sports & TCG - Custom Storefront Styling Sheet
   ========================================================================== */

/* Design Tokens */
:root {
    --primary-blue: #0B3C9B;       /* Brand Royal Blue */
    --accent-blue: #1D63ED;        /* Electric Highlight Blue */
    --accent-tcg: #00D4FF;         /* TCG Cyan */
    --accent-purple: #A855F7;      /* Community Purple */
    --bg-dark: #06080B;            /* Velvet Deep Black */
    --bg-panel: #0F1218;           /* Sleek Carbon Slate */
    --bg-panel-trans: rgba(15, 18, 24, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    
    --text-white: #FFFFFF;
    --text-silver: #F3F4F6;
    --text-gray: #F3F4F6;
    --text-muted: #9CA3AF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-pill: 30px;
    --radius-card: 16px;
    --radius-badge: 8px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-premium: 0 16px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(29, 99, 237, 0.25);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px; /* Offset for taller header */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-silver);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Components */
.highlight-blue {
    color: var(--accent-blue);
    background: linear-gradient(120deg, var(--accent-blue), #5E94FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-tcg {
    color: var(--accent-tcg);
    background: linear-gradient(120deg, var(--accent-tcg), #4DF5B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.purple-tag {
    color: var(--accent-purple);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(29, 99, 237, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 99, 237, 0.4), var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Header Navigation - Styled for HUGE Standalone Logo */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 8, 11, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 95%; /* Reduced left/right margins to 2.5% to give the 192px logo and nav links maximum room */
    margin: 0 auto;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 300px; /* Expanded width to give the wide horizontal logo plenty of breathing room */
    height: 100%;
}

.brand-logo {
    width: 280px; /* Scale by width for horizontal pill-shaped logo (equivalent to 2x size) */
    height: auto;
    object-fit: contain; /* Guarantees zero squishing or distortion */
    position: absolute;
    top: 10px; /* Hangs down beautifully over header content */
    left: 0;
    border-radius: var(--radius-card);
    border: 4px solid var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0,0,0,0.65), 0 0 20px rgba(11, 60, 155, 0.35);
    z-index: 1001;
    transition: var(--transition-smooth);
}

.brand-logo:hover {
    transform: scale(1.02) translateY(2px);
    border-color: var(--accent-blue);
    box-shadow: 0 12px 30px rgba(0,0,0,0.8), 0 0 25px rgba(29, 99, 237, 0.55);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.external-link {
    color: var(--accent-blue);
}

.external-link:hover {
    color: var(--text-white);
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.header-phone:hover {
    color: var(--accent-blue);
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(77, 245, 176, 0.08);
    border: 1px solid rgba(77, 245, 176, 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.status-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4DF5B0;
    box-shadow: 0 0 8px #4DF5B0;
}

.status-indicator-dot.closed {
    background-color: #FF6B6B;
    box-shadow: 0 0 8px #FF6B6B;
}

.status-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: #4DF5B0;
    letter-spacing: 0.5px;
}

.header-status.closed-status {
    background: rgba(255, 107, 107, 0.08);
    border-color: rgba(255, 107, 107, 0.25);
}

.header-status.closed-status .status-text {
    color: #FF6B6B;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

.mobile-nav-overlay {
    position: fixed;
    top: 120px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 120px);
    background: rgba(6, 8, 11, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    left: 0;
}

.mobile-nav-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.mobile-link:hover {
    color: var(--accent-blue);
}

/* Centered Hero Section Layout */
.hero-section-centered {
    position: relative;
    padding-top: 200px;
    padding-bottom: 100px;
    overflow: hidden;
    text-align: center;
}

.hero-background-gradient {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(circle, rgba(11, 60, 155, 0.14) 0%, rgba(6, 8, 11, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-centered-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.hero-centered-content {
    max-width: 800px;
    order: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(29, 99, 237, 0.08);
    border: 1px solid rgba(29, 99, 237, 0.2);
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Custom Unified Image Slideshow (Carousel) */
.hero-slideshow-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 480px;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    background: var(--bg-panel);
    order: 1;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.store-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(6, 8, 11, 0.95) 0%, rgba(6, 8, 11, 0.4) 60%, transparent 100%);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: left;
    z-index: 5;
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 20px;
    right: 24px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slide-nav-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slide-nav-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.slideshow-indicators {
    display: flex;
    gap: 8px;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slide-dot.active {
    background: var(--accent-blue);
    transform: scale(1.2);
}

/* Topps Strip Image Logo */
.topps-strip-img {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: var(--transition-smooth);
}

.topps-strip-img:hover {
    transform: scale(1.05);
}

/* Credentials Strip */
.credentials-strip {
    background: #090C11;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.strip-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

.strip-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-blue);
}

/* About Section */
.about-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text-content {
    text-align: left;
}

.about-paragraph {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-paragraph strong {
    color: var(--text-white);
}

/* Center-aligned welcome section story */
.welcome-centered-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-centered-block .about-paragraph {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Meet the Staff Grid & Card styles */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.staff-card {
    background: var(--bg-panel-trans);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 32px;
    backdrop-filter: blur(12px);
    text-align: left;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.staff-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.staff-photo-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark);
}

.staff-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.staff-card:hover .staff-photo {
    transform: scale(1.04);
}

.staff-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.staff-role {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
}

.staff-info h3 {
    font-size: 1.35rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.staff-bio {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.staff-passion-box {
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.passion-line {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.passion-line strong {
    color: var(--text-white);
}

.fav-card-text {
    color: var(--accent-blue);
    font-weight: 600;
}

/* Services Pillars Section */
.services-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
    background: #080A0E;
}

.services-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.service-pillar-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 36px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    text-align: left;
}

.pillar-icon-wrapper {
    background: rgba(29, 99, 237, 0.08);
    border: 1px solid rgba(29, 99, 237, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-icon {
    width: 22px;
    height: 22px;
    color: var(--accent-blue);
}

.service-pillar-card h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.pillar-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    min-height: 48px;
}

/* Corporate SVG Logos Grid Area */
.corporate-logos-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px 0;
}

.corp-logo-badge {
    background: #151A24;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-badge);
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    transition: var(--transition-smooth);
}

.corp-logo-badge:hover {
    transform: scale(1.05);
    background: #1C2330;
    border-color: rgba(255,255,255,0.15);
}

.grading-logo-img {
    max-height: 38px;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: var(--transition-smooth);
}

.corp-logo-badge:hover .grading-logo-img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)) brightness(1.05);
}

.corp-name-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
}

.corp-sub-text {
    font-size: 0.45rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* PSA Badging */
.psa-badge .corp-name-text {
    color: #0F5EBF;
}

/* BGS Badging */
.bgs-badge {
    border-color: rgba(234, 179, 8, 0.25);
}
.bgs-badge .corp-name-text {
    color: #EAB308;
}

/* SGC Badging */
.sgc-badge .corp-name-text {
    color: #FFFFFF;
}

/* CGC Badging */
.cgc-badge .corp-name-text {
    color: #00D4FF;
}

/* JSA Badging */
.jsa-badge {
    border-color: rgba(159, 18, 57, 0.25);
}
.jsa-badge .corp-name-text {
    color: #E11D48;
}

.pillar-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.pillar-bullet-list li {
    font-size: 0.85rem;
    color: var(--text-gray);
    position: relative;
    padding-left: 14px;
}

.pillar-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.pillar-bullet-list li strong {
    color: var(--text-white);
}

/* Schedule Mini List */
.schedule-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px dashed rgba(255,255,255,0.04);
    padding-bottom: 8px;
}

.schedule-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sched-day {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.sched-game {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Service Card Hover */
.service-pillar-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

/* Community & Socials Hub Section */
.community-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.community-box {
    background: var(--bg-panel-trans);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 32px;
    backdrop-filter: blur(12px);
    text-align: left;
    height: 100%;
}

.community-box h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.community-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-blue);
}

/* 1. Photo Moments Grid */
.photo-display-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.photo-item-card {
    height: 330px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition-smooth);
}

/* Stylized placeholder gradients representing store photos */
.photo-item-card.p-1 { background-image: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); }
.photo-item-card.p-2 { background-image: linear-gradient(135deg, #0f2027 0%, #203a43 100%); }
.photo-item-card.p-3 { background-image: linear-gradient(135deg, #4b6cb7 0%, #182848 100%); }
.photo-item-card.p-4 { background-image: linear-gradient(135deg, #2c3e50 0%, #3498db 100%); }

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.photo-item-card:hover {
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.15);
}

.photo-item-card:hover .photo-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(11, 60, 155, 0.95) 0%, rgba(11, 60, 155, 0.4) 100%);
}

/* 2. Announcement Feed */
.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.announcement-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 16px;
}

.announcement-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ann-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ann-badge {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.pin-badge { background: rgba(29, 99, 237, 0.15); color: var(--accent-blue); }
.restock-badge { background: rgba(77, 245, 176, 0.12); color: #4DF5B0; }

.ann-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.announcement-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-white);
}

.announcement-item p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* 3. Join Social Box (FB, IG, YouTube, TikTok) */
.join-box p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.social-badges-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-smooth);
}

.social-btn-icon {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

.btn-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
}

.facebook-btn:hover {
    background: rgba(24, 119, 242, 0.08);
    border-color: rgba(24, 119, 242, 0.3);
}

.facebook-btn:hover .social-btn-icon {
    color: #1877F2;
    transform: scale(1.1);
}

.instagram-btn:hover {
    background: rgba(225, 48, 108, 0.08);
    border-color: rgba(225, 48, 108, 0.3);
}

.instagram-btn:hover .social-btn-icon {
    color: #E1306C;
    transform: scale(1.1);
}

.youtube-btn:hover {
    background: rgba(255, 0, 0, 0.08);
    border-color: rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover .social-btn-icon {
    color: #FF0000;
    transform: scale(1.1);
}

.tiktok-btn:hover {
    background: rgba(0, 242, 234, 0.08);
    border-color: rgba(0, 242, 234, 0.3);
}

.tiktok-btn:hover .social-btn-icon {
    color: #00F2EA;
    transform: scale(1.1);
}

/* Footer Section - Centerpiece */
.main-footer {
    background: #040507;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding: 80px 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
}

.footer-column h3 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-blue);
}

.about-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.footer-logo {
    width: auto;
    height: 64px; /* Matches footer standard */
    border-radius: var(--radius-card);
    align-self: flex-start;
    border: 2px solid var(--primary-blue);
}

.footer-about-text {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-blue);
}

/* Topps Footer Image Logo */
.topps-footer-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    transition: var(--transition-smooth);
}

.topps-footer-img:hover {
    transform: scale(1.05);
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.badge-sub {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    border-bottom: 1px dashed rgba(255,255,255,0.04);
    padding-bottom: 6px;
}

.hours-list li .day {
    color: var(--text-gray);
    font-weight: 600;
}

.hours-list li .time {
    color: var(--text-white);
    font-weight: 500;
}

.live-hours-alert {
    background: rgba(29, 99, 237, 0.05);
    border: 1px solid var(--border-glow-blue);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
}

/* Contact Info & Map */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.contact-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Map Box */
.map-container {
    width: 100%;
    height: 140px;
    background-color: #080A0E;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.map-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(29, 99, 237, 0.12) 1px, transparent 0),
        radial-gradient(rgba(29, 99, 237, 0.12) 1px, transparent 0);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    opacity: 0.6;
}

.map-marker-pin {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-blue), 0 0 5px white;
}

.map-marker-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--accent-blue);
    border-radius: 50%;
    animation: radarRipple 2s infinite linear;
    opacity: 0.6;
}

@keyframes radarRipple {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.map-labels {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.map-landmark {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 0.5px;
    background: var(--primary-blue);
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.map-sublandmark {
    font-size: 0.45rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-top: 2px;
}

.map-overlay-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 30%, rgba(4, 5, 7, 0.8) 100%);
    pointer-events: none;
}

/* Footer Newsletter Row - Premium Glassmorphism */
.footer-newsletter-row {
    background: linear-gradient(180deg, rgba(4, 5, 7, 0.4) 0%, rgba(2, 3, 4, 0.9) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 0;
}

.footer-newsletter-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.newsletter-content {
    max-width: 550px;
    text-align: left;
}

.newsletter-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.newsletter-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 450px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-white);
    transition: var(--transition-smooth);
    outline: none;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--accent-tcg);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-form button[type="submit"] {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(29, 99, 237, 0.2);
    white-space: nowrap;
}

.newsletter-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 99, 237, 0.35), var(--shadow-glow);
}

.newsletter-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Newsletter Row */
@media (max-width: 768px) {
    .footer-newsletter-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

/* Footer Bottom */
.footer-bottom {
    background: #020304;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 24px 0;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 16px;
    height: 16px;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.social-links a:hover .social-icon {
    color: var(--accent-blue);
    transform: scale(1.15);
}

/* Animations */
.animate-float {
    animation: floatAnim 3s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive Adaptive CSS */
@media (max-width: 1024px) {
    .hero-section-centered {
        padding-top: 170px;
    }
    
    .hero-slideshow-container {
        height: 380px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .about-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 84px;
    }
    
    .brand-logo {
        height: 64px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu, .header-right-group {
        display: none;
    }
    
    .hero-section-centered {
        padding-top: 116px; /* 84px header height + 32px desired gap */
        padding-bottom: 60px;
    }
    
    .hero-centered-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .hero-slideshow-container {
        order: 1;
        height: 280px;
    }
    
    .hero-centered-content {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .corporate-logos-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-column {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   New Premium Multi-Page Custom CSS Extensions
   ========================================================================== */

/* 1. Sleek Glassmorphic Online Shop Promo Banner */
.online-shops-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 18, 24, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    padding: 24px 32px;
    margin-top: 40px;
    text-align: left;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    gap: 32px;
    transition: var(--transition-smooth);
}

.online-shops-banner:hover {
    border-color: rgba(29, 99, 237, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(29, 99, 237, 0.05);
}

.promo-content {
    flex: 1;
}

.promo-content h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--text-white);
}

.promo-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.promo-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.promo-btn {
    display: flex;
    flex-direction: column;
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
    min-width: 170px;
}

.promo-btn .btn-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.promo-btn .btn-main {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
}

/* TCGPlayer Pro Button - Cyan Glow Hover */
.tcgpro-btn:hover {
    background: rgba(0, 212, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.tcgpro-btn:hover .btn-sub {
    color: var(--accent-tcg);
}

/* eBay Button - Silver/Slate Hover */
.ebaystore-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.ebaystore-btn:hover .btn-sub {
    color: var(--text-silver);
}

/* 2. Interactive Slideshow Hover Zoom & Glowing Controls */
.hero-slideshow-container {
    transition: var(--transition-smooth);
}

.hero-slideshow-container:hover {
    border-color: rgba(29, 99, 237, 0.2);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 35px rgba(29, 99, 237, 0.1);
}

/* Image smooth zoom */
.store-slide .slide-img {
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-slideshow-container:hover .store-slide.active .slide-img {
    transform: scale(1.02);
}

.slide-nav-btn {
    transition: var(--transition-smooth);
}

.slide-nav-btn:hover {
    box-shadow: 0 0 15px rgba(29, 99, 237, 0.6);
}

.slide-dot {
    transition: var(--transition-smooth);
}

.slide-dot.active {
    box-shadow: 0 0 8px var(--accent-blue);
}

/* 3. Sleek Subpage Hero linear-gradient Banners */
.subpage-hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 70px;
    background: linear-gradient(135deg, #06080B 0%, #0C0F15 50%, #051A44 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, rgba(29, 99, 237, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.subpage-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.subpage-badge {
    display: inline-block;
    background: rgba(29, 99, 237, 0.08);
    border: 1px solid rgba(29, 99, 237, 0.25);
    color: var(--accent-blue);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.subpage-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subpage-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* 4. Subpage Content Layouts & Styling */

/* About Page Content */
.about-page-content {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.value-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 32px;
    transition: var(--transition-smooth);
    text-align: left;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.value-icon-wrapper {
    background: rgba(29, 99, 237, 0.08);
    border: 1px solid rgba(29, 99, 237, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon {
    width: 22px;
    height: 22px;
    color: var(--accent-blue);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Grading Page Content */
.grading-page-content {
    padding: 80px 0;
}

.grading-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: flex-start;
}

.grading-logos-page {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    margin: 24px 0 !important;
}

.grading-main-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.grading-safety-card {
    border-top: 4px solid var(--accent-blue) !important;
    max-width: 100% !important;
}

/* Step cards */
.submission-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.step-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 28px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(29, 99, 237, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    color: rgba(29, 99, 237, 0.08);
    transform: scale(1.05);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.step-card p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Events & Community page */
.events-page-content {
    padding: 80px 0;
}

.schedule-full-card {
    max-width: 100% !important;
    border-top: 4px solid var(--accent-purple) !important;
}

/* Contact page layout & styling */
.contact-page-content {
    padding: 80px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    text-align: left;
}

.contact-form-block {
    display: flex;
    justify-content: flex-end;
}

/* inquiry form styles */
.inquiry-form-element {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(6, 8, 11, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-white);
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(29, 99, 237, 0.15);
    background: rgba(6, 8, 11, 0.9);
}

.form-group select option {
    background: var(--bg-panel);
    color: var(--text-white);
}

.form-submit-btn {
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 800;
    transition: var(--transition-smooth);
}

/* Adaptive mobile rules for new pages layout */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .submission-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .grading-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-block {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .online-shops-banner {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        text-align: center;
    }
    
    .promo-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .promo-btn {
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .submission-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .subpage-title {
        font-size: 2.25rem;
    }
    
    .photo-item-card {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .photo-display-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Semi-Hidden Admin Link Pointer Cursor */
.footer-bottom-container p {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ==========================================================================
   Premium Staff Slideshow Carousel Styles
   ========================================================================== */
.staff-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.staff-carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 12px 0; /* Ensures cards floating up shadows are not clipped */
}

.staff-carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.staff-carousel-container .carousel-control-btn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(6, 8, 11, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    z-index: 10;
}

.staff-carousel-container .carousel-control-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(29, 99, 237, 0.4);
}

.staff-carousel-container .carousel-control-btn svg {
    width: 20px;
    height: 20px;
}

.staff-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.staff-carousel-dots .slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.staff-carousel-dots .slide-dot.active {
    background: var(--accent-blue);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--accent-blue);
}

/* Adjust card width dynamically inside the slideshow carousel viewport */
.staff-carousel-viewport .staff-card {
    flex-shrink: 0;
    width: calc((100% - 64px) / 3); /* Desktop: 3 visible */
}

/* Tablet columns: 2 visible */
@media (max-width: 1024px) {
    .staff-carousel-viewport .staff-card {
        width: calc((100% - 32px) / 2);
    }
}

/* Mobile columns: 1 visible */
@media (max-width: 768px) {
    .staff-carousel-viewport .staff-card {
        width: 100%;
    }
}

/* ==========================================================================
   Premium Sealed Products Shop Catalog Grid & Details Modal Styles
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-panel-trans);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 24px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue);
    box-shadow: 0 16px 40px rgba(0, 212, 255, 0.15);
}

.product-media-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark);
    margin-bottom: 20px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.4;
    font-family: var(--font-heading);
    flex-grow: 1;
}

.product-meta {
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-tcg);
    font-family: var(--font-heading);
}

.view-detail-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.product-card:hover .view-detail-badge {
    color: var(--accent-tcg);
}

/* Glassmorphic Product Detail Modal Styles */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 8, 11, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dialog-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.product-detail-modal {
    max-width: 780px;
    width: 90%;
    padding: 40px;
    background: #11151e;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dialog-overlay.open .product-detail-modal {
    opacity: 1;
}

.modal-product-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 36px;
    align-items: center;
}

.modal-product-media {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark);
}

.modal-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-info {
    display: flex;
    flex-direction: column;
}

.product-badge {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-tcg);
    background: rgba(0, 212, 255, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 16px;
}

.modal-product-info h2 {
    font-size: 1.65rem;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.modal-price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-tcg);
    margin-bottom: 18px;
    font-family: var(--font-heading);
}

.modal-product-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 28px;
}

.inquire-btn {
    display: inline-block;
    text-align: center;
    background: var(--accent-blue);
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    align-self: flex-start;
}

.inquire-btn:hover {
    background: var(--accent-tcg);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    color: #06080B;
}

.close-modal-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.close-modal-btn:hover {
    color: var(--text-white);
}

/* Stacking details layout on smaller tablet and mobile screens */
@media (max-width: 768px) {
    .modal-product-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .modal-product-info h2 {
        font-size: 1.35rem;
    }
    
    .inquire-btn {
        width: 100%;
    }
}

/* Glassmorphic Cart Drawer Styles */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 8, 11, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: rgba(15, 18, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    z-index: 4001;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-overlay.open .cart-drawer {
    right: 0;
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-white);
    font-weight: 700;
}

.close-cart-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.close-cart-btn:hover {
    color: var(--text-white);
}

.cart-drawer-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
    color: var(--text-muted);
}

.cart-empty-state svg {
    width: 64px;
    height: 64px;
}

.cart-empty-state p {
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-media {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    flex-shrink: 0;
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-info h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--accent-tcg);
    font-weight: 700;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.cart-qty-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.cart-qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-gray);
}

.cart-qty-val {
    font-size: 0.85rem;
    color: var(--text-white);
    width: 20px;
    text-align: center;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #FF6B6B;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    font-weight: 600;
    text-transform: uppercase;
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: rgba(10, 12, 16, 0.5);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.cart-summary-row span:first-child {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.cart-subtotal {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-tcg);
}

.cart-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cart-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--text-white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(29, 99, 237, 0.25);
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 99, 237, 0.4), var(--shadow-glow);
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Slide to Verify Captcha Styles */
.cart-captcha-container {
    width: 100%;
    margin-top: 4px;
}

.captcha-slider-track {
    position: relative;
    height: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.captcha-slider-track.verified {
    background: rgba(77, 245, 176, 0.05);
    border-color: rgba(77, 245, 176, 0.3);
    box-shadow: 0 0 15px rgba(77, 245, 176, 0.08);
}

.captcha-slider-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.2s ease, color 0.3s ease;
    z-index: 1;
}

.captcha-slider-handle {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 42px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.captcha-slider-handle:active {
    cursor: grabbing;
}

.captcha-slider-track.verified .captcha-slider-handle {
    background: #4DF5B0;
    cursor: default;
    box-shadow: 0 0 10px rgba(77, 245, 176, 0.3);
}

.captcha-handle-icon {
    width: 18px;
    height: 18px;
    color: var(--text-white);
}

.captcha-check-icon {
    width: 20px;
    height: 20px;
    color: #0c1015; /* Contrast dark color on green background */
}

.captcha-spinner-icon {
    width: 20px;
    height: 20px;
    color: var(--text-white);
    animation: captcha-spin 1s infinite linear;
}

@keyframes captcha-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Product Category Filter Pills Styles */
.category-filters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    padding: 0 16px;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-silver);
    padding: 10px 22px;
    border-radius: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
}

.filter-pill:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.filter-pill.active {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--accent-tcg);
    color: var(--accent-tcg);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

/* Card Add to Cart Button */
.card-add-to-cart-btn {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--accent-tcg);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-add-to-cart-btn:hover {
    background: var(--accent-tcg);
    color: #06080B;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    transform: translateY(-1px);
}

.card-add-to-cart-btn.disabled,
.card-add-to-cart-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Stock Overlay Banner on Images */
.stock-overlay-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    transition: var(--transition-smooth);
}

.stock-overlay-banner.out-of-stock {
    background: rgba(255, 107, 107, 0.25);
    border-top: 1px solid rgba(255, 107, 107, 0.4);
    color: #FF8F8F;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.6);
}

.stock-overlay-banner.last-available {
    background: rgba(255, 179, 0, 0.22);
    border-top: 1px solid rgba(255, 179, 0, 0.4);
    color: #FFD54F;
    text-shadow: 0 0 8px rgba(255, 179, 0, 0.6);
}

/* Floating Toast Notification system */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    pointer-events: none;
}

.toast-notification {
    background: rgba(14, 18, 27, 0.85);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 14px 24px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    pointer-events: auto;
    border-left: 4px solid var(--accent-tcg);
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notification.hide {
    transform: translateX(120%);
    opacity: 0;
}

/* Hero Section Logo Replacement */
.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-brand-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.25));
}

@media (max-width: 768px) {
    .hero-brand-logo {
        max-width: 380px;
    }
}

@media (max-width: 480px) {
    .hero-brand-logo {
        max-width: 280px;
    }
}

/* ==========================================================================
   Selling Page File Uploader & Admin Inquiries Styles
   ========================================================================== */
.file-upload-dropzone.dragover {
    border-color: var(--accent-tcg) !important;
    background: rgba(0, 212, 255, 0.08) !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

.file-preview-item {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: visible;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
}

.file-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.file-preview-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #FF6B6B;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.file-preview-remove:hover {
    background: #FF4B4B;
    transform: scale(1.1);
}

/* Admin CRM Inquiries Panel */
.inquiries-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.inquiries-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inquiry-card {
    background: rgba(15, 18, 24, 0.45);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-tcg);
    border-radius: var(--radius-card);
    padding: 24px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.inquiry-card:hover {
    border-color: var(--accent-tcg);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.06);
}

.inquiry-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.inquiry-sender-info h4 {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.inquiry-contact-links {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.inquiry-contact-links a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.inquiry-contact-links a:hover {
    color: var(--accent-tcg);
    text-decoration: underline;
}

.inquiry-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.inquiry-body {
    background: rgba(6, 8, 11, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.inquiry-message-text {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.6;
    white-space: pre-wrap;
}

.inquiry-photos-section {
    margin-bottom: 20px;
}

.inquiry-photos-section h5 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.inquiry-photos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.inquiry-photo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    background: var(--bg-dark);
    transition: var(--transition-smooth);
}

.inquiry-photo-wrapper:hover {
    transform: scale(1.05);
    border-color: var(--accent-tcg);
}

.inquiry-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiry-actions {
    display: flex;
    justify-content: flex-end;
}

.inquiry-delete-btn {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #FF6B6B;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inquiry-delete-btn:hover {
    background: #FF6B6B;
    color: white;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.4);
}

/* ==========================================================================
   Store & Travel Schedules Grid Layout
   ========================================================================== */
.schedules-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.schedule-half-card {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
}

@media (max-width: 992px) {
    .schedules-two-col-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Drag and Drop reordering for service pillar cards (announcements) */
.service-pillar-card.dragging {
    opacity: 0.4;
}
.service-pillar-card.drag-hover {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 15px rgba(29, 99, 237, 0.2);
}




