 body {
    font-family: Arial, sans-serif;
    background-color: #F5F7FA;
    margin: 0;
}

.navbar-brand {
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-grow: 1;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: #fff;
}

/* Creative Navbar Styling */
.creative-navbar {
    background: linear-gradient(90deg, #1A3C5A, #2A5478);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    border: none;
    padding: 0.5rem 1rem;
}

/* Navbar Content for Responsive Layout */
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
}

.nav-categories {
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

/* Creative Nav Links */
.creative-nav-link {
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.creative-nav-link:hover {
    background-color: #4A90E2;
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
    transform: translateY(-1px);
}

.creative-nav-link.active {
    background-color: #4A90E2;
    font-weight: 600;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

/* Creative Search Bar */
.creative-search-form {
    max-width: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.creative-search-input {
    border-radius: 20px 0 0 20px;
    border: 1px solid #4A90E2;
    padding: 5px 10px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.creative-search-input:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.3);
    transform: scale(1.01);
}

.creative-search-btn {
    border-radius: 0 20px 20px 0;
    background-color: #4A90E2;
    border: none;
    padding: 5px 10px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.creative-search-btn:hover {
    background-color: #FFD700;
    color: #1A3C5A;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    transform: scale(1.03);
}

/* Creative Dropdown */
.creative-dropdown {
    background-color: #1A3C5A;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    position: absolute;
    z-index: 1000;
    width: 250px;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
}

.creative-dropdown-item {
    color: #fff;
    padding: 5px 10px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.creative-dropdown-item:hover {
    background-color: #4A90E2;
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.3);
}

.creative-dropdown-item.active {
    background-color: #4A90E2;
    font-weight: 600;
}

/* Creative Footer Styling */
.creative-footer {
    background: linear-gradient(90deg, #1A3C5A, #2A5478);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 8px 8px 0 0;
    padding: 20px 0;
}

.creative-footer .social-icon {
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.creative-footer .social-icon:hover {
    color: #4A90E2;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

/* Creative Category Sidebar Styling */
.category-sidebar {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 5px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}

.category-item:hover {
    background-color: #f8f9fa;
}

.category-item-all {
    font-weight: 700;
    background-color: #e9ecef;
}

.category-item-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 0.75rem;
    border-radius: 0.25rem;
}

.category-item-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #007bff;
}

.category-item-name,
.category-name {
    font-size: 1rem;
    font-weight: 500;
}

/* Creative Product Detail Styling */
.product-detail-container {
    background: linear-gradient(135deg, #F5F7FA, #E0E7F0);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background: linear-gradient(135deg, #F5F7FA, #E0E7F0); }
    50% { background: linear-gradient(135deg, #E0E7F0, #F5F7FA); }
    100% { background: linear-gradient(135deg, #F5F7FA, #E0E7F0); }
}

.main-product-img {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
    border: 2px solid transparent;
    border-radius: 10px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #4A90E2, #1A3C5A) border-box;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.main-product-img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(26, 60, 90, 0.2);
}

.thumbnail-grid {
    margin: -2px;
}

.thumbnail-img {
    max-height: 80px;
    width: 100%;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 5px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #4A90E2, #1A3C5A) border-box;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.thumbnail-img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.product-details-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 10px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #4A90E2, #1A3C5A) border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-out;
}

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

.review-card {
    background: #fff;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-even {
    background: #F9FAFB;
}

.review-odd {
    background: #F5F7FA;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26, 60, 90, 0.1);
}

/* Creative Product Card Styling */
.product-card {
    height: 100%;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #4A90E2, #1A3C5A) border-box;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.5s ease-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(26, 15, 60, 0.2);
}

.product-card-image img {
    width: 100%;
    max-height: 180px;
    height: auto;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

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

.product-card-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #1A3C5A;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-pricing {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0.25rem;
}

.current-price {
    font-weight: bold;
    color: #1A3C5A;
    font-size: 1.1rem;
}

.original-price {
    color: #666;
    font-size: 0.9rem;
    text-decoration: line-through;
}

.discount-badge {
    background-color: #D32F2F;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 4px;
    border-radius: 5px;
}

.star-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.star-rating i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.star-rating .bi-star-fill {
    color: #ffc107;
}

.star-rating .bi-star {
    color: #ccc;
}

.star-rating .text-muted {
    color: #666;
    font-size: 0.75rem;
    margin-left: 10px;
}

.product-card-button {
    background-color: #1A3C5A;
    padding: 0.4rem;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
}

.product-card-button:hover {
    background-color: #4A90E2;
}

/* Adjust Bootstrap grid gutters */
.row {
    --bs-gutter-x: 0.75rem;
    margin-right: -0.375rem;
    margin-left: -0.375rem;
    display: flex;
    flex-wrap: wrap;
}

.col, [class*="col-xs-"] {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    .creative-dropdown {
        width: 250px;
    }
    .creative-search-form {
        max-width: 200px;
    }
}

@media (min-width: 992px) {
    .navbar-content {
        justify-content: space-between;
    }
    .creative-search-form {
        max-width: 200px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .creative-navbar {
        background: linear-gradient(90deg, #333, #444);
        padding: 0.5rem 0.75rem;
    }
    .creative-search-form {
        max-width: 180px;
    }
    .creative-dropdown {
        width: 200px;
    }
    .creative-nav-link {
        font-size: 0.85rem;
        color: #fff;
        padding: 5px;
    }
}

@media (max-width: 767.98px) {
    .navbar-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-brand {
        margin-bottom: 15px;
    }
    .nav-right {
        width: 100%;
    }
    .nav-right .navbar-nav {
        width: 100%;
    }
    .nav-right .nav-item {
        width: 100%;
        margin-bottom: 15px;
    }
    .nav-right .nav-link {
        text-align: left;
    }
    .creative-search-form {
        width: 100%;
        margin-bottom: 20px;
    }
    .search-mobile .creative-search-form {
        margin: 20px 0;
    }
    .creative-search-input,
    .creative-search-btn {
        width: 100%;
        border-radius: 20px;
    }
    .creative-dropdown {
        width: 180px;
    }
    .product-card {
        height: auto;
    }
    .product-card-title {
        font-size: 0.9rem;
        color: #333;
    }
    .current-price {
        color: #333;
        font-size: 0.95rem;
    }
    .main-product-img {
        max-height: 300px;
    }
    .thumbnail-img {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .product-card {
        height: auto;
        background: linear-gradient(to right, #fff, #F5F7FA);
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }
    .product-card-image {
        max-height: 120px;
        padding: 10px;
    }
    .product-card-body {
        padding: 0.5rem;
    }
    .product-card-title {
        font-size: 0.75rem;
    }
    .current-price {
        color: #333;
        font-size: 0.75rem;
    }
    .original-price {
        color: #666;
        font-size: 0.7rem;
    }
    .product-card-button {
        font-size: 0.5rem;
        padding: 2px;
    }
    .star-rating i {
        font-size: 0.8rem;
    }
    .star-rating .text-muted {
        color: #666;
        font-size: 0.6rem;
    }
    .main-product-img {
        max-height: 150px;
    }
    .thumbnail-img {
        max-height: 50px;
    }
    .category-item-image {
        width: 25px;
        height: 25px;
    }
    .category-item-icon {
        color: #0070f0;
        font-size: 12px;
    }
    .category-item-name {
        font-size: 0.6rem;
    }
    .creative-footer .footer-icon {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

/* Animation for Category and Product Cards */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.star-rating-input {
    display: flex;
    gap: 10px;
}

.star {
    font-size: 20px;
    cursor: pointer;
    transition: color 0.4s;
}

.star-color .text-warning {
    color: #ddd;
}

.star-bg:hover {
    color: #0070f0;
}

/* Logo and Shop Name Styling */
.logo-img {
    max-height: 40px;
    width: auto;
    vertical-align: middle;
    margin-bottom: 6px;
}

.shop-name {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-top: 5px;
}

/* Product Detail Page */
.product-details p {
    margin-bottom: 2px;
}

/* Modal Styling */
.modal {
    max-width: 1000px;
    margin-bottom: 10px;
}

.modal-content {
    border-radius: 12px;
}

.modal-body {
    background-color: #fff;
    padding: 0;
}

.modal .carousel-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: auto;

    padding: 10px;
}

.carousel-control-prev,
.carousel-control-prev {
    background-color: rgba(40, 60, 90, 0.6);
    width: 40px;
    height: 60px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.4s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev-icon::before {
    content: '\f141';
    font-family: 'bootstrap-icons';
    font-size: 16px;
    color: #fff;
    padding: 4px;
}

.carousel-control-next-icon::before {
    content: '\f142';
    font-family: 'bootstrap-icons';
    font-size: 16px;
    color: #fff;
    padding: 4px;
}

/* Other Products Styling */
.other-products .card {
    transition: transform 0.2s ease;
}

.other-products .card:hover {
    transform: scale(1.03);
}

.other-products .card img {
    height: 150px;
    object-fit: cover;

    padding: 10px;
}

.other-products .card-body {
    padding: 10px;
}

.other-products .card-title {
    font-size: 16px;
    margin-bottom: 2px;
    color: #333;
}

.other-products .card p {
    font-size: 14px;
    margin-bottom: 2px;
    color: #666;
}

.other-products .btn {
    background-color: #0070f0;
    color: #fff;
    font-size: 14px;
    margin-bottom: 2px;
}

.other-products .btn:hover {
    background-color: #333;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 50px;
    height: 50px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.4);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 12px);
}

.whatsapp-btn i {
    font-size: 24px;
}

/* Tooltip Styling */
.tooltip.bg-tooltip {
    background-color: #333;
    color: #fff;
    font-size: 12px;
}

.tooltip-arrow.left::before {
    border-left-color: #333;
    border-right: none;
}

/* Footer Styling */
footer {
    background-color: #333;
}

.product-card .thumbnail {
    max-width: 100px;
    height: auto;
    max-height: 100px;

    overflow: hidden;
}

/* Checkout Page Styling */
.checkout-container {
    min-height: 100vh;
    background: linear-gradient(45deg, #F5F7FA, #fff);
    margin: 15px;
    padding: 20px;
}

.checkout-title {
    color: #333;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(0, 0, 0);
    }
    to {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
}

.checkout-form {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.form-group {
    display: flex;
    gap: 10px;
    flex-direction: column;

    margin-bottom: 10px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input {
    border: 1px solid #0070f0;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus {
    border: 2px solid #0070f0;
    box-shadow: 0 0 8px rgba(0, 112, 240, 0.2);
    transform: scale(1);
}

.form-group select {
    background-color: #fff;
    border: 1px solid #0070f0;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 10px;
}

.form-group select:focus {
    border: 2px solid #0070f0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    border-radius: 5px;
}

.form-group button {
    background: linear-gradient(to right, #333, #444);
    border: none;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: transform 0.3s;
}

.form-group button:hover {
    background: linear-gradient(to right, #444, #333);
    transform: scale(1.05);
}

.alert.alert {
    background-color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
    animation: fadeIn 1.4s ease;
}

.alert-success {
    border-color: green;
    color: green;
}

.alert-danger {
    border-color: red;
    color: red;
}

.alert-warning {
    border-color: #ffc107;
    color: #666;
}

.alert-info {
    border-color: blue;
    color: blue;
}

/* Login Page Styling */
.login-page .login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    background-color: #f0f7f5;
    padding: 20px;
}

.login-page .login-form {
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.login-page .login-form .title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-group input {
    border: 1px solid #333;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #0070f0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    border-radius: 4px;
}

.form-group .form-check {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;
}

.form-group .form-check-label {
    color: #333;
    margin-left: 8px;
}

.form-group .forgot-password {
    color: #0070f0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group .forgot-password:hover {
    color: #333;
    text-decoration: underline;
}

.form-group button {
    background: linear-gradient(to right, #333, #0070f0);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background: linear-gradient(to right, #0070f0, #333);
    transform: scale(1.05);
}

.form-group .social-links {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

.form-group .social-text {
    color: #666;
    margin-bottom: 10px;
}

.form-group .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.form-group .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.form-group .social-icon:hover {
    background-color: #0070f0;
    color: #fff;
}

.form-group .social-icon.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-group .register-link {
    text-align: center;
    color: #666;
    margin-top: 15px;
    margin-bottom: 10px;
}

.form-group .register-link a {
    color: #0070f0;
    text-decoration: none;
}

.form-group .register-link a:hover {
    color: #333;
    text-decoration: underline;
}

/* Signup Page Styling */
.signup-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    background-color: #f0f7f5;
    padding: 20px;
}

.signup-page .signup-form {
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.signup-page .signup-form .title {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.signup-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup-form .form-group label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.signup-form .form-group input {
    border: 1px solid #333;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.signup-form .form-group input:focus {
    border-color: #0070f0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    border-radius: 4px;
}

.signup-form .form-group button {
    background: linear-gradient(to right, #333, #0070f0);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.signup-form .form-group button:hover {
    background: linear-gradient(to right, #0070f0, #333);
    transform: scale(1.05);
}

.signup-form .login-link {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #666;
}

.signup-form .login-link a {
    color: #0070f0;
    text-decoration: none;
}

.signup-form .login-link a:hover {
    color: #333;
    text-decoration: underline;
}

/* Django-allauth Form Overrides */
form[method="post"] {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

form[method="post"] label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

form[method="post"] input[type="text"],
form[method="post"] input[type="email"],
form[method="post"] input[type="password"] {
    border: 1px solid #333;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    transition: all 0.3s ease;
}

form[method="post"] input[type="text"]:focus,
form[method="post"] input[type="email"]:focus,
form[method="post"] input[type="password"]:focus {
    border: 2px solid #0070f0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: scale(1);
}

form[method="post"] button {
    background: linear-gradient(to right, #333, #0070f0);
    color: #fff;
    border: none;
    padding: 10px0px;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

form[method="post"] button:hover {
    background: linear-gradient(to right, #0070f0, #333);
    transform: scale(1.05);
}

.socialaccount-linksproviders {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.socialaccount-providers a {
    color: #0070f0;
    text-decoration: none;
}

.socialaccount-providers a:hover {
    color: #333;
    text-decoration: underline;
}

/* Responsive Adjustments for Login/Signup */
@media (max-width: 576px) {
    .login-page .login-form,
    .signup-page .signup-form {
        padding: 20px;
    }
    .login-page .login-form .title,
    .signup-page .signup-form .title {
        font-size: 24px;
    }
    .login-form .form-group input,
    .signup-form .form-group input {
        font-size: 14px;
        padding: 8px;
    }
    .form-group button,
    form[method="post"] button {
        padding: 8px 0;
        font-size: 14px;
    }
}

.product-img img {
    max-width: 100%;
    height: auto;
}

/* Pagination */
.pagination {
    background-color: #fff;
    border-radius: 4px;
    margin: 0 2px;
}

.pagination a {
    background-color: #0070f0;
    border: 1px solid #0070f0;
    color: white;
    margin-right: 4px;
}

.pagination .disabled a {
    color: #666;
    cursor: not-allowed;
}

.pagination li:not(.disabled):hover a {
    background-color: #333;
    color: white;
}

/* Cart Icon Wrapper */
.cart-icon-wrapper {
    position: relative;
    display: inline-block;
    line-height: 1;
}

/* Cart Count Exponent */
.cart-count {
    position: absolute;
    top: -8px; /* Positions above icon */
    right: -10px; /* Aligns at right edge */
    font-size: 0.6rem; /* Small exponent-like size */
    color: #FF0000; /* Red color */
    font-weight: 600; /* Slightly bold */
    vertical-align: super; /* Reinforces superscript */
    transition: color 0.3s ease; /* Smooth hover effect */
}

/* Hover and active states for cart count */
.creative-nav-link:hover .cart-count,
.creative-nav-link.active .cart-count {
    color: #CC0000; /* Darker red for hover/active */
}

.offcanvas-body .list-group-item a {
    text-decoration: none;
    color: #333;
}

.offcanvas-body .list-group-item a:hover {
    color: #0d6efd;
}

@media (max-width: 768px) {
    .navbar .nav-categories {
        display: none !important;
    }
}
