/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Hero Section */
.display-4 {
    font-weight: 700;
    line-height: 1.2;
}

/* Category Bubbles */
.rounded-full {
    border-radius: 9999px;
}

.cursor-pointer {
    cursor: pointer;
}

/* Domain Badges */
.badge {
    font-weight: normal;
    padding: 0.5em 0.8em;
}

/* Modal */
.modal-content {
    border-radius: 0.5rem;
}

/* How It Works Cards */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Search Results */
#searchResults {
    max-height: 300px;
    overflow-y: auto;
}

.hover-bg-light:hover {
    background-color: #f8f9fa;
}

/* Shopping Cart */
#cartCount {
    font-size: 0.6rem;
    padding: 0.2em 0.4em;
}

/* Form Controls */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #0d6efd !important;
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 100%;
    max-width: 350px;
    z-index: 9999;
}

.notification {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: #28a745;
}

.notification.info {
    background-color: #17a2b8;
}

.notification.warning {
    background-color: #ffc107;
    color: #212529;
}

.notification.error {
    background-color: #dc3545;
}

.notification-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.notification-close {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    #categories {
        gap: 0.5rem;
    }
    
    .rounded-full {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
    }
    
    #searchResults {
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}