/* Catalog Page Specific Styles */

/* Cart Icon */
.cart-icon {
    position: relative;
    color: #ff6b35;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    border: 2px solid white;
}

/* Active Navigation Link */
.nav-link.active {
    color: #ff6b35;
    font-weight: 600;
}

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

/* Catalog Main */
.catalog-main {
    padding-top: 80px;
}

/* Catalog Hero Section */
.catalog-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-description strong {
    color: #ff6b35;
    font-weight: 700;
}

.catalog-link {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.catalog-link:hover {
    color: #e55a2b;
}

.hero-note {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    font-style: italic;
}

/* Quote Section */
.quote-section {
    background: white;
    padding: 80px 0;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Quote Form Container */
.quote-form-container {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 100px;
}

.form-header h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.file-upload-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-upload-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.file-upload-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff6b35;
}

.file-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: none;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

/* Inventory Container */
.inventory-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.3);
}

.inventory-container h3 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-section {
    background: rgba(248, 250, 252, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(229, 231, 235, 0.3);
    transition: all 0.3s ease;
}

.category-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
}

.category-section h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

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

.product-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    transition: color 0.3s ease;
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li:hover {
    color: #ff6b35;
}

.count {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(107, 114, 128, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.product-list li:hover .count {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

/* Footer Updates for Catalog Page */
.footer {
    background: #20b2aa;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    background: #1a9b94;
    margin-top: 2rem;
    padding: 1rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quote-form-container {
        position: static;
    }
    
    .inventory-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .catalog-hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .quote-section {
        padding: 60px 0;
    }
    
    .quote-form-container,
    .inventory-container {
        padding: 2rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .inventory-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .quote-form-container,
    .inventory-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
    
    .category-section {
        padding: 1rem;
    }
    
    .category-section h4 {
        font-size: 1.1rem;
    }
    
    .product-list li {
        font-size: 0.9rem;
    }
}



