/* =============================================
   CUSTOM STYLES — Professional Premium Design
   ============================================= */

/* === GLOBAL LAYOUT === */
.container {
    max-width: 1360px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

/* === NAVBAR REFINEMENT === */
.navbar {
    padding: 0.5rem 1.75rem !important;
}
.navbar > .container {
    max-width: 100% !important;
    padding: 0 !important;
}
.navbar .navbar-nav { align-items: center !important; }
.navbar .nav-item { margin-left: 0.1rem !important; margin-right: 0.1rem !important; }
.navbar .nav-link {
    padding: 0.4rem 0.65rem !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
}
.navbar .nav-link i { margin-right: 0.3rem !important; }
.navbar .nav-balance {
    padding: 0.35rem 0.75rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
}
.navbar .nav-withdraw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    color: white !important;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.navbar .nav-withdraw-btn:hover {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
    transform: translateY(-1px);
    filter: brightness(1.15);
    color: white !important;
}
.navbar .btn-primary.btn-sm {
    padding: 0.35rem 0.75rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    border-radius: var(--radius-full) !important;
}
/* Hamburger toggler */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.1) !important;
    padding: 0.35rem 0.6rem !important;
}
.navbar-toggler-icon { filter: invert(0.7); }

/* === FOOTER === */
footer.footer {
    background: var(--bg-secondary) !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 2rem 1.75rem !important;
    margin-top: 3rem !important;
}
.footer .footer-content { padding: 0 1rem; }
.footer h5 {
    font-family: 'Playfair Display', serif !important;
    background: var(--accent-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 0.35rem !important;
    font-size: 1.05rem !important;
}
.footer p {
    color: var(--text-muted) !important;
    font-size: 0.82rem !important;
    margin: 0 !important;
}
.footer-content {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}
@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-right { text-align: center; }
}
.footer-center { text-align: center; }
.footer-icons {
    display: flex; justify-content: center; gap: 1.25rem; margin-bottom: 0.4rem;
}
.footer-icons a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--duration-fast) var(--ease-smooth);
    opacity: 0.7;
}
.footer-icons a:hover { color: var(--accent-primary); opacity: 1; }
.footer-right { text-align: right; }

/* Buttons — no uppercase */
.btn { text-transform: none !important; letter-spacing: normal !important; }
.age-gate .btn { text-transform: none !important; }

/* === HOMEPAGE LAYOUT === */
.main-content {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    margin-top: 1.5rem;
}
@media (max-width: 1024px) {
    .main-content { grid-template-columns: 1fr; }
}
.products-section { min-width: 0; }

/* === PRODUCTS GRID === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1rem;
}
@media (max-width: 576px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
}

/* === PRODUCT CARD === */
.products-grid .product-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all var(--duration-normal) var(--ease-out);
    cursor: pointer;
    animation: fadeIn 0.4s ease forwards;
    opacity: 0;
}
.products-grid .product-card:nth-child(1) { animation-delay: 0.03s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.06s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.09s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.12s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.15s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.18s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.21s; }

.products-grid .product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-hover);
}
.products-grid .product-card:hover .product-image-wrapper img {
    transform: scale(1.06);
}

/* Hover overlay */
.products-grid .product-card .product-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
    z-index: 5;
}
.products-grid .product-card .product-overlay span {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 0.03em;
}
.products-grid .product-card:hover .product-overlay { opacity: 1; }
@media (max-width: 768px) {
    .products-grid .product-card .product-overlay { display: none; }
}

/* Image wrapper */
.product-card { display: block; text-decoration: none; }
.product-image-wrapper {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-secondary);
}
.product-image-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s var(--ease-out);
}
.product-image-wrapper::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    pointer-events: none;
}

/* === BADGES === */
.video-badge {
    position: absolute; top: 8px; right: 8px;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
    color: #fff; padding: 3px 7px;
    border-radius: var(--radius-sm); font-size: 0.68rem; font-weight: 600;
    display: flex; align-items: center; gap: 3px;
    z-index: 5; border: 1px solid rgba(255,255,255,0.1);
}
.video-badge i { font-size: 9px; }

.price-badge {
    position: absolute; bottom: 8px; right: 8px;
    background: var(--accent-gradient);
    color: #fff; padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem; font-weight: 700;
    z-index: 5;
    box-shadow: 0 3px 12px rgba(232, 69, 107, 0.35);
}

.rating-badge {
    position: absolute; top: 8px; left: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a24; padding: 3px 8px;
    border-radius: var(--radius-sm); font-size: 0.72rem; font-weight: 700;
    z-index: 5;
}

.media-count-badge {
    position: absolute; bottom: 34px; left: 8px;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
    color: #fff; padding: 3px 7px;
    border-radius: var(--radius-sm); font-size: 0.68rem;
    z-index: 5;
}

/* === FILTER PANEL === */
.filters-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.filters-header {
    background: rgba(255,255,255,0.02);
    padding: 0.85rem 1.25rem;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--duration-fast);
}
.filters-header:hover { background: rgba(255,255,255,0.04); }
.filters-header .badge {
    background: var(--accent-gradient) !important;
    color: white; padding: 2px 7px;
    border-radius: var(--radius-sm); font-size: 0.65rem; margin-left: 6px;
}
.filters-body {
    padding: 1.25rem;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.85rem;
}
.filter-group label {
    display: block; font-size: 0.78rem;
    color: var(--text-muted); margin-bottom: 0.35rem; font-weight: 500;
}
.filter-group input, .filter-group select {
    width: 100%; padding: 0.55rem 0.75rem;
    background: var(--bg-input); border: 1px solid var(--border-color);
    border-radius: var(--radius-sm); color: var(--text-primary); font-size: 0.85rem;
    transition: border-color var(--duration-fast);
}
.filter-group input:focus, .filter-group select:focus {
    outline: none; border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(232, 69, 107, 0.12);
}
.filter-group .filter-checkbox {
    display: flex; align-items: center; gap: 0.5rem;
    height: 100%; padding-top: 1.5rem;
}
.filter-group .btn { width: 100%; padding: 0.55rem; }
.filters-header .fa-chevron-down {
    transition: transform 0.3s ease; color: var(--text-muted); font-size: 0.75rem;
}
.filters-header.collapsed .fa-chevron-down { transform: rotate(-90deg); }

/* === SORT BAR === */
.sort-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.75rem;
}
.sort-bar .sort-label {
    background: transparent;
    padding: 0.3rem 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.sort-buttons { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.sort-btn {
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    font-size: 0.8rem; font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.3rem;
}
.sort-btn:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    border-color: var(--border-hover);
}
.sort-btn.active {
    background: var(--accent-gradient);
    border-color: transparent; color: white;
}
@media (max-width: 768px) {
    .sort-btn { padding: 0.35rem 0.55rem; font-size: 0.72rem; }
    .sort-btn .btn-text { display: none; }
}

/* === SIDEBAR === */
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden; margin-bottom: 1.25rem;
}
.sidebar-card:hover { transform: none !important; box-shadow: none !important; }
.sidebar-header {
    background: rgba(255,255,255,0.02);
    padding: 0.85rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.sidebar-header .sidebar-label {
    background: transparent;
    padding: 0; font-size: 0.85rem;
    color: var(--text-primary); font-weight: 600;
}
.sidebar-body { padding: 1rem; }

/* News items */
.news-item {
    padding-bottom: 0.85rem; margin-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-subtle);
}
.news-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.news-item small { color: var(--text-muted); font-size: 0.7rem; }
.news-item h6 {
    margin: 0.3rem 0; font-family: 'Playfair Display', serif;
    font-size: 0.9rem; color: var(--text-primary); font-weight: 500;
}
.news-item p { color: var(--text-secondary); font-size: 0.82rem; margin: 0; line-height: 1.5; }

/* Statistics */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; text-align: center; }
.stat-item h4 {
    font-size: 1.2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 0.15rem;
}
.stat-item small { color: var(--text-muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* === ADMIN PHOTO CONTROLS === */
.photo_del, .photo_is_cover, .photo_cover {
    font-size: 11px; font-weight: 500;
    position: absolute; z-index: 10;
    display: block; padding: 3px 7px;
    color: #fff; border: 0; border-radius: 4px;
}
.photo_del { cursor: pointer; top: 0; right: 0; padding: 3px 8px; }
.photo_is_cover { top: 0; left: 0; }
.photo_cover { cursor: pointer; top: 0; left: 0; }

/* === CATEGORY CARDS === */
.category-card {
    transition: all var(--duration-normal) var(--ease-out);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: var(--radius-md) !important;
}
.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}
.category-card .card-title { color: var(--text-primary); font-weight: 600; }

/* === FAQ ACCORDION === */
.accordion-button:not(.collapsed) {
    background: rgba(232, 69, 107, 0.08) !important;
    color: var(--accent-primary) !important;
}
.accordion-button:focus { box-shadow: none; }

/* === AMOUNT BUTTONS === */
.amount-btn.active {
    background: var(--accent-gradient);
    color: #fff; border-color: var(--accent-primary);
}

/* === BREADCRUMB === */
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a { color: var(--accent-primary); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }

/* === PROMO TABLE === */
#promo_table code {
    background: var(--bg-elevated);
    color: var(--accent-secondary);
    padding: 2px 6px; border-radius: 4px; font-size: 13px;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.3s ease forwards; }

/* Sort buttons legacy */
.btn-group-sm .btn { padding: 0.35rem 0.65rem; font-size: 0.72rem; }

/* === GALLERY / SWIPER === */
.media-swiper-container {
    position: relative; overflow: hidden;
    border-radius: var(--radius-md); background: #000;
}
.media-swiper {
    display: flex; transition: transform 0.35s var(--ease-out);
    touch-action: pan-y pinch-zoom;
}
.swiper-slide { flex: 0 0 100%; min-width: 100%; }
.media-item { position: relative; width: 100%; padding-top: 75%; background: #0c0c10; }
.media-item img, .media-item video {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: contain;
}

.blurred-preview { filter: blur(20px); }

.lock-overlay {
    position: absolute; bottom: 15px; right: 15px;
    width: 44px; height: 44px;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75); font-size: 1rem;
    border-radius: 50%; pointer-events: none; z-index: 5;
    border: 1px solid rgba(255,255,255,0.08);
}
.lock-overlay span { font-size: 0.7rem; display: none; }

.video-badge-large {
    position: absolute; top: 10px; left: 10px;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
    color: #fff; padding: 5px 10px;
    border-radius: var(--radius-sm); font-size: 0.8rem; z-index: 5;
    border: 1px solid rgba(255,255,255,0.08);
}

.swiper-indicators {
    position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 5px; z-index: 10;
}
.indicator {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.35); transition: all 0.2s; cursor: pointer;
}
.indicator.active { background: #fff; width: 20px; border-radius: 4px; }

.swipe-hint {
    position: absolute; bottom: 45px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.8); padding: 6px 14px;
    border-radius: var(--radius-full); font-size: 0.75rem;
    animation: swipePulse 2s infinite;
}
@keyframes swipePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.swiper-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border: none;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border-radius: 50%; cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: rgba(255,255,255,0.8);
    transition: all var(--duration-fast) var(--ease-smooth);
    border: 1px solid rgba(255,255,255,0.1);
}
.swiper-nav:hover {
    background: rgba(255,255,255,0.15); color: #fff;
    transform: translateY(-50%) scale(1.05);
}
.swiper-nav.prev { left: 12px; }
.swiper-nav.next { right: 12px; }

.swiper-counter {
    position: absolute; top: 12px; right: 12px;
    bottom: auto; left: auto; transform: none;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.8); padding: 4px 10px;
    border-radius: var(--radius-full); font-size: 0.78rem; z-index: 10;
    pointer-events: none; width: auto;
}

.thumbnails-row {
    display: flex; gap: 6px; overflow-x: auto;
    padding: 8px 0; -webkit-overflow-scrolling: touch;
}
.thumbnail {
    flex: 0 0 64px; width: 64px; height: 64px;
    border-radius: var(--radius-sm); overflow: hidden;
    cursor: pointer; position: relative;
    border: 2px solid transparent;
    transition: all var(--duration-fast) var(--ease-smooth);
    opacity: 0.65;
}
.thumbnail.active, .thumbnail:hover {
    border-color: var(--accent-primary); opacity: 1;
    box-shadow: 0 0 10px rgba(232, 69, 107, 0.25);
}
.thumbnail img, .thumbnail video { width: 100%; height: 100%; object-fit: cover; }
.thumbnail .video-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; font-size: 1.2rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.video-play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.9); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent-primary);
    cursor: pointer; transition: all var(--duration-fast);
    box-shadow: var(--shadow-md);
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }

/* === FULLSCREEN VIEWER === */
.fullscreen-viewer {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 9999; display: none;
    align-items: center; justify-content: center;
}
.fullscreen-viewer.active { display: flex; }
.fullscreen-viewer img {
    max-width: 92%; max-height: 92%;
    object-fit: contain; position: relative; z-index: 2;
    border-radius: 4px;
}
.fs-backdrop { position: absolute; inset: 0; z-index: 1; cursor: pointer; }

.close-fullscreen {
    position: absolute; top: 16px; right: 16px;
    width: 44px; height: 44px; border: none;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border-radius: 50%; color: rgba(255,255,255,0.7);
    font-size: 1.2rem; cursor: pointer; z-index: 20;
    transition: all var(--duration-fast);
    border: 1px solid rgba(255,255,255,0.1);
}
.close-fullscreen:hover { background: rgba(255,255,255,0.15); color: #fff; }

.fs-nav {
    position: absolute; top: 0; bottom: 0;
    width: 15%; min-width: 60px;
    background: transparent; border: none;
    color: #fff; font-size: 1.4rem; cursor: pointer;
    z-index: 10; display: flex; align-items: center;
    transition: background 0.2s;
}
.fs-nav:hover { background: rgba(255,255,255,0.03); }
.fs-nav i {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%; transition: all var(--duration-fast);
    font-size: 0.9rem;
}
.fs-nav:hover i {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
}
.fs-prev { left: 0; justify-content: flex-start; padding-left: 16px; }
.fs-next { right: 0; justify-content: flex-end; padding-right: 16px; }

.fs-counter {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); font-size: 0.82rem;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
    padding: 4px 12px; border-radius: var(--radius-full);
    z-index: 10;
}

.preview-video { pointer-events: none; }

/* === DOWNLOAD PROTECTION === */
.media-item img, .media-item video,
.thumbnail img, .thumbnail video,
.product-card img {
    -webkit-user-select: none; -moz-user-select: none;
    -ms-user-select: none; user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto;
}
.protected-media { position: relative; }
.protected-media::after {
    content: ''; position: absolute; inset: 0;
    background: transparent; z-index: 1;
}
.media-item.is-video::after { pointer-events: none; }
video::-webkit-media-controls-enclosure { overflow: hidden; }
video::-webkit-media-controls-panel { width: calc(100% + 30px); }
video::-internal-media-controls-download-button { display: none !important; }
video::-webkit-media-controls-download-button { display: none !important; }

/* === RATING SYSTEM === */
.star-rating { font-size: 1.6rem; cursor: pointer; }
.star-rating .star-btn {
    color: #fbbf24; transition: transform 0.1s ease; margin-right: 2px;
}
.star-rating .star-btn:hover { transform: scale(1.15); }
.stars-small { font-size: 0.85rem; }
.stars-small .fa-star { margin-right: 1px; color: #fbbf24; }
.rating-display .stars { font-size: 0.95rem; color: #fbbf24; }

/* === REVIEWS === */
.review-item { transition: background-color var(--duration-fast); }
.review-item:hover { background-color: var(--bg-card-hover); }
.review-form { border: 1.5px dashed rgba(255,255,255,0.06); }

/* === GALLERY PREVIEWS === */
.media-gallery-preview {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
@media (max-width: 768px) {
    .media-gallery-preview {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; gap: 8px; padding-bottom: 8px;
    }
    .media-gallery-preview .preview-item { flex: 0 0 85%; scroll-snap-align: center; }
}
.preview-item {
    position: relative; aspect-ratio: 1;
    border-radius: var(--radius-md); overflow: hidden; background: #0c0c10;
}
.preview-item.main-preview { grid-column: span 2; grid-row: span 2; }
@media (max-width: 768px) { .preview-item.main-preview { flex: 0 0 85%; } }
.preview-item img, .preview-item video { width: 100%; height: 100%; object-fit: cover; }
.blurred-img { filter: blur(15px); transform: scale(1.1); }

.lock-overlay {
    position: absolute; bottom: 15px; right: 15px;
    width: 44px; height: 44px;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75); font-size: 1rem;
    border-radius: 50%; pointer-events: none; z-index: 5;
    border: 1px solid rgba(255,255,255,0.08);
}

.video-badge-preview {
    position: absolute; top: 8px; left: 8px;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
    color: #fff; padding: 4px 8px;
    border-radius: var(--radius-sm); font-size: 0.75rem; z-index: 5;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Gallery full */
.media-gallery-full {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
@media (max-width: 992px) { .media-gallery-full { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .media-gallery-full { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
    position: relative; aspect-ratio: 1;
    border-radius: var(--radius-md); overflow: hidden;
    cursor: pointer; background: #0c0c10;
}
.gallery-item img, .gallery-item video {
    width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.4s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.is-video { cursor: default; }
.video-play-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.25);
    display: flex; align-items: center; justify-content: center;
    color: #fff; pointer-events: none; opacity: 1;
    transition: opacity 0.3s;
}
.gallery-item.is-video:hover .video-play-overlay { opacity: 0; }

/* === LIGHTBOX === */
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 9999; display: none;
    align-items: center; justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 90%; }
.lightbox-content img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close {
    position: absolute; top: 16px; right: 16px;
    width: 44px; height: 44px; border: none;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
    border-radius: 50%; color: rgba(255,255,255,0.7); font-size: 1.2rem;
    cursor: pointer; z-index: 10; border: 1px solid rgba(255,255,255,0.1);
}
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border: none;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
    border-radius: 50%; color: rgba(255,255,255,0.7); font-size: 1rem;
    cursor: pointer; z-index: 10; border: 1px solid rgba(255,255,255,0.1);
}
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }
.lightbox-nav:hover, .lightbox-close:hover {
    background: rgba(255,255,255,0.15); color: #fff;
}
.lightbox-counter {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); font-size: 0.85rem;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
    padding: 6px 14px; border-radius: var(--radius-full);
}

/* === DROPDOWN === */
.dropdown-menu { min-width: auto; }

/* === NO PRODUCTS === */
.no-products { text-align: center; padding: 3rem 2rem; }
.no-products i { color: var(--text-muted); margin-bottom: 0.75rem; }
.no-products p { color: var(--text-muted); font-size: 0.9rem; }

/* === PAGINATION === */
.pagination { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px; }
.page-item .page-link {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px;
    padding: 0.35rem 0.65rem;
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-sm); color: var(--text-secondary);
    text-decoration: none; font-size: 0.82rem;
    transition: all var(--duration-fast) var(--ease-smooth);
}
.page-item .page-link:hover {
    background: var(--bg-elevated); color: var(--text-primary);
    border-color: var(--border-hover);
}
.page-item.active .page-link {
    background: var(--accent-gradient); border-color: transparent; color: #fff; font-weight: 600;
}
.page-item.disabled .page-link { opacity: 0.4; cursor: default; pointer-events: none; }

/* Mobile thumbnails */
@media (max-width: 576px) {
    .thumbnail { flex: 0 0 48px; width: 48px; height: 48px; }
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */

.product-detail {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden; margin-top: 1.5rem;
}
.product-detail-header {
    background: rgba(255,255,255,0.02);
    padding: 1rem 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap; gap: 0.5rem;
}
.product-detail-header h3 {
    font-family: 'Playfair Display', serif;
    margin: 0; font-size: 1.1rem; color: var(--text-primary);
}
@media (max-width: 480px) {
    .product-detail-header { padding: 0.75rem 1rem; }
    .product-detail-header h3 { font-size: 0.95rem; }
    .premium-badge { font-size: 0.7rem; padding: 0.2rem 0.55rem; }
}
.premium-badge {
    background: var(--accent-gradient);
    padding: 0.3rem 0.7rem; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 600; color: #fff;
}
/* Stats bar above gallery */
.product-stats-bar {
    display: flex;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    align-items: center;
}
@media (max-width: 768px) {
    .product-stats-bar { padding: 0.5rem 1rem; gap: 0.4rem; }
}
@media (max-width: 480px) {
    .product-stats-bar { padding: 0.4rem 0.75rem; }
    .product-stats-bar .meta-badge { padding: 0.2rem 0.45rem; font-size: 0.7rem; }
}

/* Gallery wrapper (single column, full width) */
.product-gallery-wrap {
    padding: 1.25rem;
}
@media (max-width: 768px) {
    .product-gallery-wrap { padding: 0.85rem; }
}
@media (max-width: 480px) {
    .product-gallery-wrap { padding: 0.6rem; }
}

/* Action bar below gallery */
.product-action-bar {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}
.product-action-bar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.product-buy-bar {
    flex-direction: column;
    align-items: flex-start;
}
.product-buy-bar .buy-btn {
    max-width: 400px;
}
.btn-report {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.btn-report:hover {
    color: var(--text-secondary);
    border-color: var(--text-muted);
}
@media (max-width: 768px) {
    .product-action-bar { padding: 0.85rem 1rem; }
}
@media (max-width: 480px) {
    .product-action-bar { padding: 0.6rem 0.75rem; }
    .product-buy-bar .buy-btn { width: 100%; max-width: none; }
}

/* Repeating watermark overlay on gallery — covers entire image, can't be cropped */
.media-watermark {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 6;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}
.media-watermark::before,
.media-watermark::after {
    content: attr(data-user) '   ' attr(data-user) '   ' attr(data-user) '   ' attr(data-user) '   ' attr(data-user) '   ' attr(data-user) '   ' attr(data-user) '   ' attr(data-user) '   ' attr(data-user) '   ' attr(data-user) '   ' attr(data-user) '   ' attr(data-user);
    position: absolute;
    white-space: nowrap;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.06);
    letter-spacing: 3px;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}
.media-watermark::before {
    top: 30%; left: -20%;
    transform: rotate(-25deg);
    width: 200%;
}
.media-watermark::after {
    top: 65%; left: -20%;
    transform: rotate(-25deg);
    width: 200%;
}
/* Fullscreen watermark */
.fs-watermark {
    position: fixed;
    inset: 0;
    z-index: 99998;
}

/* Description section (full-width below gallery) */
.product-description-section {
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid var(--border-color);
}
.product-description-section h5 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.product-description-section h5 i {
    color: var(--accent-primary);
    font-size: 0.85rem;
}
.product-description-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    word-break: break-word;
    white-space: pre-wrap;
}
@media (max-width: 768px) {
    .product-description-section { padding: 0.85rem 1rem; }
    .product-description-text { font-size: 0.85rem; }
}

/* Seller info */
.product-seller-info {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.product-seller-info i {
    color: var(--accent-primary);
    margin-right: 0.25rem;
}
.product-seller-info strong {
    color: var(--text-secondary);
}
@media (max-width: 768px) {
    .product-seller-info { padding: 0.6rem 1rem; font-size: 0.8rem; }
}

/* Gallery preview */
.gallery-preview {
    background: #0c0c10;
    border-radius: var(--radius-md);
    width: 100%; max-height: 80vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.gallery-preview img, .gallery-preview video {
    width: 100%; max-height: 80vh; object-fit: contain;
}
.gallery-preview .blurred-preview {
    width: 100%; height: 100%; object-fit: cover; filter: blur(20px);
}

.gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%; color: rgba(255,255,255,0.8);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all var(--duration-fast) var(--ease-smooth);
    z-index: 10; font-size: 0.85rem;
}
.gallery-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(255,255,255,0.15); color: #fff;
}
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }
@media (max-width: 480px) {
    .gallery-nav { width: 32px; height: 32px; font-size: 0.75rem; }
    .gallery-nav.prev { left: 5px; }
    .gallery-nav.next { right: 5px; }
    .gallery-preview { max-height: 60vh; }
    .gallery-preview img, .gallery-preview video { max-height: 60vh; }
}

/* === CUSTOM VIDEO PLAYER === */
.gallery-preview.video-mode {
    flex-direction: column;
    max-height: none;
    padding-bottom: 0;
}
.gallery-preview.video-mode video {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}
.gallery-preview.video-mode .gallery-nav {
    top: calc(50% - 28px);
}
.gallery-preview.video-mode .media-watermark {
    bottom: 56px;
}
.vp-controls {
    position: relative;
    z-index: 20;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%);
    padding: 8px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    user-select: none;
    -webkit-user-select: none;
}
.vp-progress-wrap {
    width: 100%;
    height: 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.vp-progress-bg {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: height 0.15s;
}
.vp-progress-wrap:hover .vp-progress-bg {
    height: 8px;
}
.vp-buffer {
    position: absolute;
    top: 0; left: 0; height: 100%;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    transition: width 0.3s;
}
.vp-progress-fill {
    position: absolute;
    top: 0; left: 0; height: 100%;
    background: var(--accent-primary, #ff3366);
    border-radius: 3px;
    transition: width 0.05s linear;
}
.vp-progress-thumb {
    position: absolute;
    top: 50%;
    width: 14px; height: 14px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.15s;
    pointer-events: none;
}
.vp-progress-wrap:hover .vp-progress-thumb {
    opacity: 1;
}
.vp-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vp-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    opacity: 0.85;
    transition: opacity 0.15s, transform 0.15s;
}
.vp-btn:hover {
    opacity: 1;
    transform: scale(1.15);
}
.vp-time {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-family: monospace;
    white-space: nowrap;
}
.vp-spacer { flex: 1; }
.vp-volume-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}
.vp-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 70px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
.vp-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px; height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}
.vp-volume-slider::-moz-range-thumb {
    width: 12px; height: 12px;
    background: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}
.vp-big-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    width: 70px; height: 70px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    pointer-events: auto;
}
.vp-big-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0,0,0,0.7);
}
.vp-big-play.hidden { display: none; }
@media (max-width: 480px) {
    .gallery-preview.video-mode video { max-height: 55vh; }
    .vp-volume-wrap { display: none; }
    .vp-big-play { width: 56px; height: 56px; font-size: 1.3rem; }
}

.thumbnails {
    display: flex; gap: 6px; margin-top: 0.75rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.thumb {
    flex-shrink: 0; width: 52px; height: 52px;
    border-radius: var(--radius-sm); overflow: hidden;
    border: 2px solid transparent; cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    opacity: 0.6; position: relative;
}
@media (max-width: 480px) {
    .thumb { width: 44px; height: 44px; }
    .thumbnails { gap: 4px; margin-top: 0.5rem; }
}
.thumb:hover, .thumb.active {
    border-color: var(--accent-primary); opacity: 1;
    box-shadow: 0 0 8px rgba(232, 69, 107, 0.25);
}
.thumb img, .thumb video { width: 100%; height: 100%; object-fit: cover; }
.thumb .video-thumb-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; font-size: 0.85rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Product info badges */
.meta-badge {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.7rem; border-radius: var(--radius-full);
    font-size: 0.78rem; color: var(--text-secondary);
    display: inline-flex; align-items: center; gap: 0.25rem;
}
.product-price {
    font-size: 1.75rem; font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 0.85rem;
}
.buy-btn { width: 100%; padding: 0.8rem; font-size: 0.95rem; }
.secure-text {
    color: var(--text-muted); font-size: 0.78rem;
    margin-top: 0.75rem; text-align: center;
}
.access-granted-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: linear-gradient(135deg, #059669, #34d399);
    color: #fff; padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md); font-weight: 600; font-size: 0.9rem;
}
@media (max-width: 768px) {
    .product-price { font-size: 1.5rem; }
    .buy-btn { padding: 0.7rem; font-size: 0.9rem; }
    .access-granted-badge { font-size: 0.82rem; padding: 0.55rem 1rem; }
}
@media (max-width: 480px) {
    .meta-badge { padding: 0.25rem 0.5rem; font-size: 0.72rem; }
    .product-price { font-size: 1.3rem; }
}

/* === REVIEWS SECTION === */
.reviews-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-top: 1.5rem; overflow: hidden;
}
.reviews-header {
    background: rgba(255,255,255,0.02);
    padding: 0.85rem 1.25rem;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border-color);
}
.reviews-header h4 { margin: 0; font-size: 0.95rem; color: var(--text-primary); }
.rating-gold-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a24; padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 0.25rem;
}
.reviews-body { padding: 1.25rem; }

/* Review form */
.reviews-section .review-form {
    background: var(--bg-secondary);
    border: 1.5px dashed rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 1.1rem; margin-bottom: 1rem;
}
.reviews-section .review-form h6 {
    margin-bottom: 0.65rem; font-size: 0.9rem; color: var(--text-primary);
}
.reviews-section .review-form textarea {
    width: 100%; padding: 0.7rem;
    background: var(--bg-input); border: 1px solid var(--border-color);
    border-radius: var(--radius-sm); color: var(--text-primary);
    resize: vertical; min-height: 70px;
    font-family: inherit; font-size: 0.85rem;
    transition: border-color var(--duration-fast);
}
.reviews-section .review-form textarea:focus {
    outline: none; border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(232, 69, 107, 0.12);
}
.reviews-section .review-form .form-actions {
    display: flex; justify-content: space-between; align-items: center; margin-top: 0.65rem;
}
.reviews-section .review-form .anonymous-label {
    color: var(--text-secondary); font-size: 0.8rem;
    display: flex; align-items: center; gap: 0.4rem;
}

/* Review items */
.reviews-section .review-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.85rem; margin-bottom: 0.6rem;
}
.review-header { display: flex; justify-content: space-between; margin-bottom: 0.3rem; }
.review-author { font-weight: 600; font-size: 0.85rem; color: var(--text-primary); }
.review-date { color: var(--text-muted); font-size: 0.75rem; }
.review-stars { color: #fbbf24; font-size: 0.8rem; margin-bottom: 0.3rem; }
.review-text { color: var(--text-secondary); font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* Star rating in review form */
.reviews-section .star-rating { font-size: 1.5rem; margin-bottom: 0.75rem; }
.reviews-section .star-rating i {
    color: var(--text-muted); cursor: pointer;
    transition: color var(--duration-fast); margin-right: 2px;
}
.reviews-section .star-rating i:hover,
.reviews-section .star-rating i.active,
.reviews-section .star-rating i.fas { color: #fbbf24; }

/* Reviews responsive */
@media (max-width: 768px) {
    .reviews-section { margin-top: 1rem; }
    .reviews-header { padding: 0.7rem 1rem; }
    .reviews-header h4 { font-size: 0.95rem; }
    .reviews-body { padding: 0.75rem; }
    .reviews-section .review-form { padding: 0.85rem; }
    .reviews-section .review-form .form-actions { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}
@media (max-width: 480px) {
    .reviews-section .review-item { padding: 0.7rem; }
    .review-author { font-size: 0.8rem; }
    .review-text { font-size: 0.8rem; }
    .reviews-section .star-rating { font-size: 1.3rem; }
}

/* === SEARCH INPUT IN NAVBAR === */
.navbar .search-input {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-full) !important;
    color: var(--text-primary) !important;
    font-size: 0.8rem !important;
    padding: 0.35rem 0.75rem !important;
    width: 140px;
    transition: width 0.3s var(--ease-out), border-color var(--duration-fast) !important;
}
.navbar .search-input:focus {
    width: 200px;
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 2px rgba(232, 69, 107, 0.1) !important;
}

/* === LOGIN / REGISTER PAGE === */
.auth-card {
    max-width: 420px;
    margin: 3rem auto;
}

/* =============================================
   CRYPTO PAYMENT SYSTEM
   ============================================= */

/* Step Indicator */
.crypto-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 1rem;
}
.crypto-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.4;
    transition: all 0.3s ease;
}
.crypto-step.active, .crypto-step.completed {
    opacity: 1;
}
.step-number {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.crypto-step.active .step-number {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 69, 107, 0.3);
}
.crypto-step.completed .step-number {
    background: #059669;
    border-color: transparent;
    color: #fff;
}
.step-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 500;
}
.crypto-step.active .step-label {
    color: var(--text-primary);
}
.step-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 0.75rem;
    margin-bottom: 1.5rem;
    min-width: 40px;
}

/* Crypto Currency Grid */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}
.crypto-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.crypto-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.crypto-card.selected {
    border-color: var(--accent-primary);
    background: rgba(232, 69, 107, 0.08);
    box-shadow: 0 0 0 3px rgba(232, 69, 107, 0.15);
}
.crypto-card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.crypto-card-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}
.crypto-card-network {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Payment Timer */
.crypto-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.crypto-timer strong {
    font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
    color: var(--accent-primary);
}
.crypto-timer.timer-warning {
    border-color: #ef4444;
    animation: timerPulse 1s infinite;
}
.crypto-timer.timer-warning strong {
    color: #ef4444;
}
@keyframes timerPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* Payment Info Box */
.crypto-pay-info {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
}

/* Amount and Address Boxes */
.crypto-amount-box input,
.crypto-address-box input {
    background: var(--bg-secondary) !important;
    border-color: var(--border-color) !important;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
}

/* QR Code Wrapper */
.crypto-qr-wrapper {
    display: inline-block;
    padding: 12px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.crypto-qr-wrapper img {
    display: block;
}

/* Copy Button Feedback */
.copy-btn {
    transition: all 0.2s ease;
}
.copy-btn .fa-check {
    color: #059669;
}

/* Wallets Table in Admin */
#wallets_table code {
    background: var(--bg-elevated);
    color: var(--accent-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

@media (max-width: 576px) {
    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .crypto-card {
        padding: 0.85rem 0.5rem;
    }
    .crypto-card-icon {
        font-size: 1.5rem;
    }
    .crypto-steps {
        padding: 0 0.5rem;
    }
    .step-label {
        font-size: 0.65rem;
    }
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* =============================================
   PAYMENT METHOD SELECTION
   ============================================= */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 480px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
}
.payment-method-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.payment-method-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.payment-method-card.selected {
    border-color: var(--accent-primary);
    background: rgba(232, 69, 107, 0.08);
    box-shadow: 0 0 0 3px rgba(232, 69, 107, 0.15);
}
.payment-method-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.payment-method-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.payment-method-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Payment timer 12h format */
.crypto-timer.timer-12h strong {
    font-size: 1.1rem;
}

/* Admin payments table badges */
.badge-status-pending {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: #fff !important;
}
.badge-status-completed {
    background: linear-gradient(135deg, #059669, #34d399) !important;
    color: #fff !important;
}
.badge-status-cancelled {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    color: #fff !important;
}
.badge-method-cryptobot {
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
    color: #fff !important;
}
.badge-method-crypto {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    color: #fff !important;
}

/* Payments filter */
.payments-filter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.payments-filter .btn {
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
}
.payments-filter .btn.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
}

/* Admin payment action buttons */
#payments_table .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    margin: 0 1px;
}

/* SweetAlert2 toast customization */
.swal2-popup.swal2-toast {
    font-size: 0.85rem;
}
.swal2-popup.swal2-toast .swal2-title {
    font-size: 0.9rem;
}

/* =============================================
   NOTIFICATION BELL
   ============================================= */
.notif-badge {
    position: absolute;
    top: 2px; right: -2px;
    min-width: 18px; height: 18px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid var(--bg-primary);
    animation: notifPulse 2s ease infinite;
}
@keyframes notifPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.notif-dropdown {
    width: 360px;
    max-width: 92vw;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4) !important;
}
.notif-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.notif-dropdown-body {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.notif-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.notif-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}
.notif-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s;
    cursor: pointer;
}
.notif-item:hover {
    background: rgba(255,255,255,0.03);
}
.notif-item.notif-unread {
    background: rgba(232, 69, 107, 0.06);
    border-left: 3px solid var(--accent-primary);
}
.notif-item.notif-unread:hover {
    background: rgba(232, 69, 107, 0.1);
}
.notif-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    font-size: 0.9rem;
}
.notif-content {
    flex: 1; min-width: 0;
}
.notif-title {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notif-msg {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.notif-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}
@media (max-width: 480px) {
    .notif-dropdown { width: 100vw; max-width: 100vw; right: -60px; }
    .notif-dropdown-body { max-height: 300px; }
}
/* "View all" link in dropdown */
.notif-view-all {
    display: block;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.8rem;
    color: var(--accent-primary);
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    transition: background 0.2s;
}
.notif-view-all:hover {
    background: var(--bg-elevated);
    color: var(--accent-primary);
}

/* ============================================
   NOTIFICATIONS PAGE
   ============================================ */
.notifications-page {
    max-width: 800px;
    margin: 0 auto;
}
.notifications-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.notifications-page-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.4rem;
}
.notifications-page-list {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.notif-date-separator {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.notif-page-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}
.notif-page-item:hover {
    background: var(--bg-elevated);
    color: inherit;
    text-decoration: none;
}
.notif-page-item:last-child {
    border-bottom: none;
}
.notif-page-unread {
    border-left: 3px solid var(--accent-primary);
    background: rgba(255, 51, 102, 0.03);
}
.notif-page-icon {
    font-size: 1.2rem;
    min-width: 32px;
    text-align: center;
    padding-top: 2px;
}
.notif-page-body {
    flex: 1;
    min-width: 0;
}
.notif-page-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.notif-page-msg {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.notif-page-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}
.notif-page-time {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.notif-delete-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px 6px;
    font-size: 0.75rem;
    border-radius: 4px;
    transition: all 0.2s;
    opacity: 0;
}
.notif-swipe-wrap:hover .notif-delete-btn,
.notif-page-item:hover .notif-delete-btn {
    opacity: 1;
}
.notif-delete-btn:hover {
    color: #ef4444;
    background: rgba(239,68,68,0.1);
}
/* Swipe to delete */
.notif-swipe-wrap {
    position: relative;
    overflow: hidden;
}
.notif-swipe-inner {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    transition: transform 0.3s;
}
.notif-swipe-action {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}
.notif-page-empty {
    text-align: center;
    padding: 3rem 1rem;
}
.notifications-pagination {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.notif-pag-btn {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.7rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}
.notif-pag-btn:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}
.notif-pag-btn.active {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}
@media (max-width: 768px) {
    .notifications-page-header { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .notif-page-item { padding: 0.7rem 1rem; }
    .notif-page-time { font-size: 0.68rem; }
}
@media (max-width: 480px) {
    .notif-page-item { padding: 0.6rem 0.75rem; gap: 0.5rem; }
    .notif-page-title { font-size: 0.82rem; }
    .notif-page-msg { font-size: 0.78rem; }
}

/* =============================================
   SCREENSHOT / SCREEN CAPTURE PROTECTION
   ============================================= */
/* Hide media content when printing */
@media print {
    .gallery-preview, .product-gallery-wrap img, .product-gallery-wrap video,
    .fullscreen-viewer, .thumbnails, .preview-item,
    .media-gallery-full, .media-gallery-preview {
        display: none !important;
    }
    .product-detail::before {
        content: 'Content protected from printing';
        display: block;
        padding: 3rem;
        text-align: center;
        font-size: 1.5rem;
        color: #999;
    }
}

/* Content protection overlay — activated when screen capture detected */
.capture-shield {
    display: none;
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1rem;
}
.capture-shield.active {
    display: flex;
}

/* =============================================
   LANGUAGE FLAGS - Pure CSS
   ============================================= */
.lang-flag {
    display: inline-block;
    width: 22px;
    height: 15px;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.lang-flag-ru {
    background: linear-gradient(180deg, #fff 0%, #fff 33.33%, #0039A6 33.33%, #0039A6 66.66%, #D52B1E 66.66%, #D52B1E 100%);
}
.lang-flag-en {
    background: linear-gradient(180deg,
        #B22234 0%, #B22234 15%, #fff 15%, #fff 23%,
        #B22234 23%, #B22234 38%, #fff 38%, #fff 46%,
        #B22234 46%, #B22234 62%, #fff 62%, #fff 69%,
        #B22234 69%, #B22234 85%, #fff 85%, #fff 92%,
        #B22234 92%, #B22234 100%);
}
.lang-flag-en::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40%; height: 54%;
    background: #3C3B6E;
}
.lang-switcher-btn {
    display: flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
}
.lang-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem;
    color: var(--text-primary) !important;
    padding: 0.55rem 0.85rem !important;
}
.lang-dropdown-item:hover {
    background: rgba(255,255,255,0.06) !important;
}
.lang-dropdown-item .lang-flag { margin-right: 0; }

/* =============================================
   BUTTONS - Enhanced design
   ============================================= */
.btn-primary, .bg-gradient-primary {
    background: linear-gradient(135deg, #e8456b 0%, #c23a5c 50%, #a855f7 100%) !important;
    background-size: 200% 200% !important;
    background-position: 0% 50% !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(232,69,107,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover, .bg-gradient-primary:hover {
    background-position: 100% 50% !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,69,107,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    filter: brightness(1.08);
}
.btn-primary:active, .bg-gradient-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(232,69,107,0.3);
}
.btn-success, .bg-gradient-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important; border: none !important;
    box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(16,185,129,0.4); filter: brightness(1.08); }
.btn-danger, .bg-gradient-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: white !important; border: none !important;
    box-shadow: 0 4px 15px rgba(239,68,68,0.3);
}
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(239,68,68,0.4); }
.btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #000 !important; border: none !important;
    box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}
.btn-warning:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,0.4); }
.btn-sm { border-radius: 8px !important; }
.btn-lg { padding: 0.85rem 2rem !important; font-size: 1rem !important; border-radius: 12px !important; }
.sort-btn, .amount-btn {
    background: var(--bg-elevated) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-secondary) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease;
}
.sort-btn:hover, .amount-btn:hover {
    border-color: var(--accent-primary) !important;
    color: var(--text-primary) !important;
}
.sort-btn.active, .amount-btn.active {
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: 0 2px 12px rgba(232,69,107,0.3);
}
.product-buy-bar .buy-btn, .btn-buy {
    background: linear-gradient(135deg, #e8456b 0%, #a855f7 100%) !important;
    color: white !important; font-weight: 700;
    padding: 0.75rem 2rem; border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(232,69,107,0.35);
}
.product-buy-bar .buy-btn:hover, .btn-buy:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 35px rgba(232,69,107,0.45);
}

/* =============================================
   FULL RESPONSIVE - All screens
   ============================================= */
@media (min-width: 1920px) {
    .container { max-width: 1600px !important; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}
@media (max-width: 1024px) {
    .container { padding-left: 1rem !important; padding-right: 1rem !important; }
    .product-detail .product-detail-body { grid-template-columns: 1fr !important; }
    .container > div[style*="grid-template-columns:1fr 1fr"],
    .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 768px) {
    .container { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
    .navbar { padding: 0.4rem 0.75rem !important; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
    .form-control, .form-select {
        padding: 0.75rem 1rem !important;
        font-size: 16px !important;
    }
    .filters-body { grid-template-columns: 1fr !important; }
    .h-captcha { display: flex; justify-content: center; }
    .modal-dialog { margin: 0.5rem !important; max-width: calc(100% - 1rem) !important; }
    table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 600px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    h1, h2 { font-size: 1.3rem; }
    h3 { font-size: 1.15rem; }
    .navbar-collapse {
        background: var(--bg-card);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-color);
        padding: 0.75rem !important;
        margin-top: 0.5rem;
        box-shadow: var(--shadow-md);
    }
    .navbar-collapse .nav-item { margin: 0 !important; }
    .navbar-collapse .nav-link { padding: 0.65rem 0.85rem !important; border-radius: var(--radius-sm); }
    .navbar-collapse .nav-balance { margin: 0.5rem 0; display: flex; justify-content: center; }
    .navbar-collapse form { width: 100% !important; margin-bottom: 0.5rem; }
    .navbar-collapse form input { width: 100% !important; }
    .navbar-collapse form input:focus { width: 100% !important; }
    footer { padding: 1.5rem 0; margin-top: 2rem; }
}
@media (max-width: 480px) {
    body { font-size: 0.9rem; }
    .container { padding-left: 0.6rem !important; padding-right: 0.6rem !important; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
    .product-card { border-radius: 8px !important; }
    .price-badge, .video-badge, .rating-badge, .media-count-badge { font-size: 0.6rem; padding: 2px 5px; }
    .amount-btn { padding: 0.35rem 0.55rem !important; font-size: 0.75rem !important; }
    .chat-message { max-width: 92%; font-size: 0.85rem; }
    .age-gate-content { padding: 1.5rem; }
    .age-gate-icon { font-size: 3rem; }
    .age-gate h2 { font-size: 1.3rem; }
    .age-gate .btn { padding: 0.6rem 1.5rem !important; font-size: 0.9rem; }
    .stats-row { grid-template-columns: 1fr 1fr !important; gap: 0.5rem !important; }
    .pagination { gap: 0.15rem !important; }
    .page-link { padding: 0.35rem 0.55rem; font-size: 0.8rem; }
}
@media (max-width: 360px) {
    .products-grid { gap: 0.35rem; }
    .btn { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
    .navbar-brand { font-size: 0.95rem; }
}
@media (max-height: 500px) and (orientation: landscape) {
    .age-gate-content { padding: 1rem; }
    .age-gate-icon { font-size: 2rem; margin-bottom: 0.5rem; }
    .age-gate h2 { font-size: 1.2rem; }
}
@supports (-webkit-touch-callout: none) {
    footer { padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px)); }
}
html, body { overflow-x: hidden; max-width: 100vw; }
@media (hover: none) and (pointer: coarse) {
    .btn { min-height: 44px; }
    .nav-link { min-height: 44px; display: flex !important; align-items: center !important; }
    .product-card:hover { transform: none !important; }
    .product-card:active { transform: scale(0.98) !important; transition: transform 0.1s !important; }
}
@media print {
    .navbar, footer, .age-gate, .capture-shield { display: none !important; }
    body { background: white; color: black; }
}
