/* ALGO SHOES - Premium Stylesheet with Real Images */
:root {
    /* Color Palette - Monochrome Luxe with Gold Accent */
    --bg-primary: #FAFAFA;
    --bg-secondary: #F5F5F5;
    --bg-dark: #1A1A1A;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #FFFFFF;
    --accent-gold: #B8860B;
    --accent-gold-light: #D4AF37;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-3d: 0 20px 60px rgba(0,0,0,0.3);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 32px;
    animation: bounce 2s infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.admin-btn {
    background: var(--bg-dark);
    color: var(--text-light);
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-admin-btn {
    background: var(--bg-dark);
    color: var(--text-light);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 8px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.offer-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

.offer-badge.flash {
    background: #FF6B6B;
    animation: flash 1.5s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    animation: slideInLeft 1s ease 0.2s both;
}

.hero-btn {
    display: inline-block;
    background: var(--text-light);
    color: var(--bg-dark);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-normal);
    animation: slideInLeft 1s ease 0.4s both;
}

.hero-btn:hover {
    background: var(--accent-gold);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}

.hero-shoe-3d {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shoe-float {
    animation: float 3s ease-in-out infinite;
}

.hero-shoe-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    transition: var(--transition-slow);
}

.hero-shoe-img:hover {
    transform: scale(1.05) rotateY(10deg);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-dot.active {
    background: var(--text-light);
    transform: scale(1.3);
}

/* Section Styles */
.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 60px;
}

/* Best Shoes Section */
.best-shoes {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.best-shoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.best-shoe-card {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.best-shoe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.best-shoe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.best-shoe-card:hover::before {
    transform: scaleX(1);
}

.best-shoe-image {
    width: 100%;
    height: 250px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
}

.best-shoe-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
}

.best-shoe-card:hover .best-shoe-img {
    transform: scale(1.1) rotateY(15deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.best-shoe-card:hover .image-overlay {
    opacity: 1;
}

.view-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.best-shoe-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.best-shoe-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.best-shoe-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.view-360-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.view-360-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-light);
}

/* Horizontal Scroll Gallery */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.horizontal-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 40px 0;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-secondary);
}

.horizontal-scroll:active {
    cursor: grabbing;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.scroll-track {
    display: flex;
    gap: 30px;
    padding: 20px 24px;
    width: max-content;
}

.gallery-card {
    width: 320px;
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    height: 260px;
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-shoe-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: var(--transition-slow);
}

.gallery-card:hover .gallery-shoe-img {
    transform: scale(1.15) rotate(5deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 12px 24px;
    background: var(--text-light);
    color: var(--bg-dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-view-btn:hover {
    background: var(--accent-gold);
    color: var(--text-light);
}

.gallery-info {
    padding: 24px;
}

.gallery-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
}

.gallery-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.category-block {
    margin-bottom: 80px;
}

.category-block:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.category-icon {
    font-size: 60px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.category-info h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-info p {
    color: var(--text-secondary);
    font-size: 16px;
}

.category-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-shoe-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: var(--transition-slow);
}

.product-card:hover .product-shoe-img {
    transform: scale(1.15) rotate(-5deg);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #FF6B6B;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    padding: 12px 24px;
    background: var(--text-light);
    color: var(--bg-dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.view-btn:hover {
    background: var(--accent-gold);
    color: var(--text-light);
}

.product-info {
    padding: 24px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a2a 100%);
}

.offers-section .section-title {
    color: var(--text-light);
}

.offers-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.offer-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.offer-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
}

.offer-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.offer-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.offer-tag {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations for offer cards */
.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 2s infinite;
}

.rotate {
    animation: rotateCard 4s ease-in-out infinite;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.shop-3d {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-secondary), #e0e0e0);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-3d);
    animation: float 4s ease-in-out infinite;
}

.shop-emoji {
    font-size: 150px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* Address Section */
.address-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.address-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-primary);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.address-info {
    padding: 60px;
}

.address-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-item h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 8px;
}

.address-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.map-container {
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-placeholder {
    text-align: center;
    padding: 40px;
}

.map-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

.map-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--bg-dark);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.map-btn:hover {
    background: var(--accent-gold);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 40px;
}

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

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
}

.footer-contact h4,
.footer-links h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Admin Modal */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-modal.active {
    display: flex;
}

.admin-panel {
    background: var(--bg-primary);
    border-radius: 24px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: var(--bg-dark);
    color: var(--text-light);
}

.admin-header h2 {
    font-family: var(--font-display);
    font-size: 24px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.admin-login,
.admin-content {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.admin-login h3 {
    margin-bottom: 24px;
    font-family: var(--font-display);
}

.admin-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 16px;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.admin-input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.admin-submit {
    width: 100%;
    padding: 16px;
    background: var(--bg-dark);
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.admin-submit:hover {
    background: var(--accent-gold);
}

.admin-hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    margin-top: 16px;
}

.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 16px;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 8px;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input[type="checkbox"] {
    margin-right: 8px;
}

.image-preview {
    margin-top: 12px;
    min-height: 100px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preview-img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.products-list,
.offers-list {
    margin-top: 24px;
}

.product-item,
.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 12px;
}

.product-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-product-thumb {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
}

.product-item-info h4,
.offer-item-info h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.product-item-info p,
.offer-item-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.delete-btn {
    background: #FF6B6B;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

/* 360° Viewer Modal */
.viewer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.viewer-modal.active {
    display: flex;
}

.viewer-content {
    background: var(--bg-primary);
    border-radius: 24px;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    position: relative;
}

.viewer-360 {
    padding: 60px;
    background: linear-gradient(135deg, var(--bg-secondary), #e0e0e0);
    text-align: center;
}

.shoe-360-container {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
    cursor: grab;
}

.shoe-360-container:active {
    cursor: grabbing;
}

#viewerImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
    transition: transform 0.1s ease;
}

.viewer-hint {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.viewer-info {
    padding: 30px;
    text-align: center;
}

.viewer-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 12px;
}

.viewer-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.viewer-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate3d {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

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

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotateCard {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Smooth image loading */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-shoe-3d {
        width: 350px;
        height: 350px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .address-card {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-shoe-3d {
        width: 280px;
        height: 280px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-3d {
        width: 280px;
        height: 280px;
    }
    
    .shop-emoji {
        font-size: 100px;
    }
    
    .best-shoes-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-card {
        width: 280px;
    }
    
    .address-info {
        padding: 30px;
    }
    
    .shoe-360-container {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .gallery-card {
        width: 260px;
    }
    
    .admin-panel {
        margin: 10px;
    }
}