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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #fefefe;
            color: #2c2c2c;
            line-height: 1.6;
        }

        .header {
            background: #ffffff;
            border-bottom: 1px solid #e8e8e8;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }

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

        .logo {
            font-size: 1.8em;
            font-weight: 300;
            letter-spacing: 2px;
            color: #2c2c2c;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c2c2c;
            font-size: 0.9em;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s ease;
            font-weight: 300;
        }

        .nav-links a:hover {
            color: #8b7355;
        }

        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f5f3f0" width="1200" height="600"/><text x="600" y="320" text-anchor="middle" font-family="serif" font-size="24" fill="%23999">Luxury Background</text></svg>');
            height: 60vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.5em;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-content p {
            font-size: 1.2em;
            letter-spacing: 1px;
            font-weight: 300;
            opacity: 0.9;
        }

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

        .section-title {
            text-align: center;
            margin: 80px 0 60px;
        }

        .section-title h2 {
            font-size: 2.2em;
            font-weight: 300;
            letter-spacing: 2px;
            color: #2c2c2c;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1em;
            color: #8b7355;
            letter-spacing: 1px;
            font-style: italic;
        }

        .upload-area {
            background: transparent;
            border: 1px solid #e8e8e8;
            padding: 40px;
            text-align: center;
            margin: 40px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .upload-area:hover {
            border-color: #2c2c2c;
        }

        .upload-icon {
            font-size: 2.5em;
            color: #8b7355;
            margin-bottom: 20px;
        }

        .upload-text {
            font-size: 0.9em;
            color: #2c2c2c;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 300;
        }

        #fileInput {
            display: none;
        }

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

        .product-card {
            background: #ffffff;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .product-image-container {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/4;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

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

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

        .view-details {
            background: #ffffff;
            color: #2c2c2c;
            padding: 12px 30px;
            border: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.85em;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .view-details:hover {
            background: #8b7355;
            color: white;
        }

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

        .product-name {
            font-size: 1.3em;
            font-weight: 300;
            letter-spacing: 1px;
            color: #2c2c2c;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .product-description {
            font-size: 0.9em;
            color: #666;
            margin-bottom: 15px;
            font-style: italic;
            line-height: 1.5;
        }

        .product-price {
            font-size: 1.1em;
            color: #8b7355;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .delete-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.9);
            color: #2c2c2c;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-card:hover .delete-btn {
            opacity: 1;
        }

        .delete-btn:hover {
            background: #e74c3c;
            color: white;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ffffff;
            width: 90%;
            max-width: 500px;
            padding: 40px;
        }

        .modal h3 {
            font-size: 1.5em;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            color: #2c2c2c;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #2c2c2c;
            font-size: 0.9em;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 300;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 0;
            border: none;
            border-bottom: 1px solid #e8e8e8;
            font-size: 1em;
            background: transparent;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom-color: #8b7355;
        }

        .form-group textarea {
            height: 80px;
            resize: vertical;
        }

        .modal-buttons {
            display: flex;
            gap: 20px;
            justify-content: flex-end;
            margin-top: 30px;
        }

        .btn {
            padding: 12px 30px;
            border: 1px solid #8b7355;
            background: transparent;
            color: #8b7355;
            cursor: pointer;
            font-size: 0.85em;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .btn-primary {
            background: #8b7355;
            color: white;
        }

        .btn:hover {
            background: #8b7355;
            color: white;
        }

        .empty-state {
            text-align: center;
            padding: 100px 40px;
            color: #999;
        }

        .empty-state-icon {
            font-size: 4em;
            margin-bottom: 30px;
            opacity: 0.5;
        }

        .empty-state h3 {
            font-size: 1.5em;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .empty-state p {
            font-style: italic;
            font-size: 1em;
        }

        .footer {
            background: #2c2c2c;
            color: #ffffff;
            text-align: center;
            padding: 60px 40px;
            margin-top: 100px;
        }

        .footer p {
            letter-spacing: 1px;
            font-size: 0.9em;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
                flex-direction: column;
                height: auto;
                padding: 20px;
            }

            .nav-links {
                gap: 20px;
                margin-top: 15px;
            }

            .hero-content h1 {
                font-size: 2.5em;
            }

            .container {
                padding: 0 20px;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .upload-area {
                padding: 40px 20px;
            }
        }
