  

        .container {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 600px;
            transform: translateY(50px);
            animation: slideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        @keyframes slideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .contact-title {
            color: #2d3748;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .contact-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: #f95a32;
            border-radius: 2px;
        }

        .messageform {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-group-message {
            position: relative;
        }

        .form-group-message label {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #718096;
            pointer-events: none;
            transition: 0.3s ease;
        }

        .form-group-message input, textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: 0.3s ease;
            background: transparent;
        }

        .form-group-message textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group-message input:focus, textarea:focus,
        .form-group-message input:valid, textarea:valid {
            border-color: #fc584f;
            outline: none;
        }

        .form-group-message input:focus ~ label,
        .form-group-message input:valid ~ label,
        .form-group-message textarea:focus ~ label,
        .form-group-message textarea:valid ~ label {
            top: -10px;
            left: 5px;
            font-size: 0.8rem;
            color: #101010;
            background: white;
            padding: 0 5px;
        }

        .submitmessage {
            background: #f95a32;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }

        .submitmessage:hover {
            background: #fb724f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(116, 79, 168, 0.4);
        }

        .submitmessage:active {
            transform: translateY(0);
        }

        @media (max-width: 480px) {
            .container {
                padding: 25px;
            }
            
            h2 {
                font-size: 2rem;
            }
        }

        /* Floating animation for form elements */
        .form-group {
            opacity: 0;
            transform: translateX(-30px);
            animation: floatIn 0.6s forwards;
        }

        @keyframes floatIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .form-group:nth-child(1) { animation-delay: 0.2s; }
        .form-group:nth-child(2) { animation-delay: 0.4s; }
        .form-group:nth-child(3) { animation-delay: 0.6s; }
        .form-group:nth-child(4) { animation-delay: 0.8s; }

        @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
:root {
    --gradient: linear-gradient(45deg, #f82f1d, #ff6b6b, #ff8d8d, #fccccc);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 5px; 
}

.search-bar input[type="text"] {
    flex-grow: 1;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px;
    padding-right: 100px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    background-color: #f1f1f1;
    color: #333;
}

.search-bar input[type="text"]:focus {
    box-shadow: 0 0 10px rgb(191, 219, 249);
    background-color: #ffffff;
}

.search-bar button {
    flex-shrink: 0; /* Prevent the button from shrinking */
    padding: 12px 17px;
    border: none;
    background-color: #ff5733;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #d25134;
}

.no-results {
    font-size: 18px;
    color: #e74c3c;
    margin-top: 20px;
    text-align: center;
}

.navbar {
    zoom: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 5%;
    backdrop-filter: blur(12px);
    background: var(--glass-bg);
    border-bottom: var(--border);
    background-color: #000000;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(10, 10, 10, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s linear infinite;
    background-size: 300%;
    letter-spacing: -0.5px;
    text-decoration: underline 2.5px rgb(254, 133, 133);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    width: 100%;
    animation: gradient 1s linear infinite;
}
.get-started-button {
    background-color: #ff5733;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.get-started-button:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.get-started-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle .bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.4s ease;
}

.mobile-nav-toggle .bar:nth-child(1) { top: 14px; }
.mobile-nav-toggle .bar:nth-child(2) { top: 19px; }
.mobile-nav-toggle .bar:nth-child(3) { top: 24px; }



@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        backdrop-filter: blur(10px);
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03));
        pointer-events: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links a:nth-child(5) { transition-delay: 0.5s; }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translate(-50%, 5px) rotate(45deg);
        width: 24px;
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translate(-50%, -5px) rotate(-45deg);
        width: 24px;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(4px);
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
}
.icon-button {
    position: relative;
background-color: #ff5733;
color: white;
padding: 12px 17px;
border-radius: 50%;
font-weight: bold;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
text-align: center;

}

.icon-button i {
pointer-events: none; /* Disable pointer events for icons */
}

.icon-button:hover {
background: #e55d51;
transform: scale(1.1);
}

.icon-button:active {
transform: scale(1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes float {
    0% { transform: translate(-50%, 0px); }
    50% { transform: translate(-50%, -10px); }
    100% { transform: translate(-50%, 0px); }
}

/* Rest of your existing styles */
:root {
    --primary: #FF4B2B;
    --background: #f6f5f7;
    --surface: #fbf8f8;
    --text: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');



.container {
zoom: 0.8;
position: relative;
max-width: 800px;
margin: 8rem auto;
background: white;
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
padding: 2.5rem;
animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}



h3 {
color: #1a1a1a;
font-size: 1.5rem;
margin: 2rem 0 1.5rem;
position: relative;
padding-left: 1rem;
}

h3::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 4px;
height: 70%;
background: #ff5733;
border-radius: 2px;
}

.myform {
margin-bottom: 2.5rem;
}

.form-group {
margin-bottom: 1.5rem;
position: relative;
}

label {
display: block;
margin-bottom: 0.5rem;
color: #404040;
font-weight: 500;
font-size: 0.95rem;
}

.form-control {
width: 100%;
padding: 0.9rem 1.2rem;
border: 2px solid #e5e5e5;
border-radius: 8px;
font-size: 1rem;
transition: all 0.3s ease;
background: white;
color: #1a1a1a;
}

.form-control:focus {
outline: none;
border-color: #ff5733;
box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn {
padding: 0.9rem 1.8rem;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.btn-primary {
background: #ff5733;
color: white;
}

.btn-primary:hover {
background: #ff1616;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn-warning {
background: transparent;
border: 2px solid #404040;
color: #404040;
}

.btn-warning:hover {
background: #404040;
color: white;
transform: translateY(-2px);
}

hr {
border: 0;
height: 1px;
background: #e5e5e5;
margin: 2.5rem 0;
}

.ripple {
position: absolute;
background: rgba(255, 255, 255, 0.4);
transform: translate(-50%, -50%);
pointer-events: none;
border-radius: 50%;
animation: rippleEffect 0.6s linear;
}

@keyframes rippleEffect {
from {
    width: 0;
    height: 0;
    opacity: 1;
}
to {
    width: 600px;
    height: 600px;
    opacity: 0;
}
}

@media (max-width: 768px) {


h2 {
    font-size: 1.8rem;
}
}

@media (max-width: 640px) {
    .profile-card {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .search-bar {
        display: none;
    }

    .search-bar input[type="text"] {
        padding: 10px 20px;
        width: 100%;
    }

    .navbar-container {
        position: relative;
    }

    .nav-links {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .profile-card {
        margin-top: 4rem;
    }
}
canvas {
z-index: -1;	
width: 100%;
height: 100%;
position: absolute;
}



.icon-button .hover-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
font-family: Arial, sans-serif;
font-size: 12px;
white-space: nowrap;
color: #fff;
background: rgba(0,0,0,0.7);
padding: 4px 8px;
border-radius: 4px;
}

.icon-button:hover .hover-text {
opacity: 1;
visibility: visible;
transform: translate(-50%, -20px);
}

.icon-button i {
transition: transform 0.3s ease;
}

.icon-button:hover i {
transform: scale(1.1);
}
.popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
display: none;
z-index: 1002;
animation: fadeIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.popup-container {
zoom: 0.9;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
max-width: 420px;
background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
border-radius: 20px;
padding: 30px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
z-index: 1003;
display: none;
animation: slideInDown 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-header {
text-align: center;
margin-bottom: 25px;
}

.user-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(45deg, #6a11ff, #2575fc);
margin: -60px auto 20px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 28px;
box-shadow: 0 4px 15px rgba(106, 17, 255, 0.3);
}

.popup-user {
font-size: 24px;
font-weight: 700;
color: #2d2d2d;
margin-bottom: 10px;
}

.user-status {
color: #6c757d;
font-size: 14px;
margin-bottom: 20px;
}

.popup-links {
display: flex;
flex-direction: column;
gap: 15px;
margin: 20px 0;
}

.popup-link {
background: linear-gradient(45deg, #ff5733, #fd1b1b);
color: white;
padding: 15px 25px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(106, 17, 255, 0.2);
}

.popup-link.logout {
background: linear-gradient(45deg, #ff416c, #ff4b2b);
box-shadow: 0 4px 15px rgba(255, 65, 108, 0.2);
}

.popup-link:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(106, 17, 255, 0.3);
}

.popup-link:active {
transform: translateY(0);
}

.close-btn {
position: absolute;
top: 15px;
right: 15px;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.9);
border: none;
border-radius: 50%;
font-size: 24px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-btn:hover {
background: #ff4b2b;
color: white;
transform: rotate(90deg);
}

.social-links {
margin-top: 25px;
display: flex;
justify-content: center;
gap: 15px;
}

.social-link {
color: #6c757d;
font-size: 20px;
transition: all 0.3s ease;
}

.social-link:hover {
color: #6a11ff;
transform: translateY(-3px);
}

@keyframes slideInDown {
0% {
transform: translate(-50%, -60%);
opacity: 0;
}
100% {
transform: translate(-50%, -50%);
opacity: 1;
}
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.profile-header {
    text-align: center;
    position: relative;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.profile-avatar:hover {
    transform: scale(1.05);
}




/* Cart Items List */
.ul {
list-style: none;
padding: 0;
max-width: 800px;
margin: 30px auto;
}

.li {
background: white;
border-radius: 15px;
margin-bottom: 20px;
padding: 20px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
display: flex;
align-items: center;
animation: itemAppear 0.6s ease-out forwards;
transform: translateY(20px);
opacity: 0;
}

.li:hover {
transform: translateY(-3px);
transition: transform 0.3s ease;
}

/* Cart Item Elements */
.img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 10px;
margin-right: 20px;
border: 2px solid #ff5733;
}

.span {
flex: 1;
color: #333;
font-size: 1.1em;
margin-right: 15px;
}

.span:nth-child(2) {
font-weight: bold;
color: #000;
}

/* Remove Button */
.remove-from-cart {
background: #ff5733;
color: white;
border: none;
padding: 10px 20px;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
}

.remove-from-cart:hover {
background: #cc0000;
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}

.checkout-button {
display: inline-block;
background: #ff5733; /* Orange-red primary color */
color: white;
font-size: 18px;
font-weight: bold;
text-align: center;
padding: 12px 20px;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
max-width: 250px;
margin: 20px auto;
display: flex;
align-items: center;
justify-content: center;
}

.checkout-button i {
margin-right: 8px;
font-size: 20px;
}

.checkout-button:hover {
background: #e04e2f; /* Darker shade on hover */
transform: scale(1.05);
}

.checkout-button:active {
transform: scale(1);
}

p {
text-align: center;
font-size: 1.2em;
color: #666;
animation: pulse 2s infinite;
}

/* Animations */
@keyframes titleSlide {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes itemAppear {
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
.li {
    flex-direction: column;
    text-align: center;
    padding: 15px;
}

.img {
    margin: 0 0 15px 0;
}

.span {
    margin: 5px 0;
}

.button {
    width: 80%;
}
}

.cart_li .cart-count {
position: absolute;
visibility: visible;
top: 0%;
left: 100%;
border-radius: 50% 50%;
background-color: white;
border: 2px solid #ff5733;
transform: translate(-50%, -50%);
opacity: 1;
transition: all 0.3s ease;
font-family: Arial, sans-serif;
font-size: 14px;
white-space: nowrap;
color: #ff5733;
padding: 3px 6px;

}
#price_span {
display: inline-block;
font-family: 'Poppins', sans-serif;
color: #ff5733;
padding: 15px 25px;
border-radius: 15px;
position: relative;
overflow: hidden;
background: linear-gradient(45deg, #ff0000 0%, #ff4d4d 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 2px 4px rgba(255, 0, 0, 0.2);
animation: pricePulse 2s infinite;
transition: all 0.3s ease;
border: 2px solid rgba(255, 0, 0, 0.2);
box-shadow: 0 8px 24px rgba(255, 0, 0, 0.1);
}

#price_span::before {
content: "💵"; /* Currency symbol icon */
position: absolute;
left: -25px;
top: 50%;
transform: translateY(-50%);
opacity: 0;
transition: all 0.3s ease;
}

#price_span::after {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 50%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.4),
transparent
);
animation: priceShine 3s infinite;
}

@keyframes pricePulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}

@keyframes priceShine {
0% { left: -100%; }
100% { left: 200%; }
}

#price_span:hover {
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(255, 0, 0, 0.2);
animation: none;
}

#price_span:hover::before {
left: 10px;
opacity: 1;
}

/* For modern browsers */
@supports (backdrop-filter: blur(10px)) {
#price_span {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.1);
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
#price_span {
padding: 12px 20px;
}
}

.cart-summary {
background: #f8f9fa; /* Light gray background */
padding: 15px;
border-radius: 8px;
text-align: center;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
max-width: 400px;
margin: 20px auto;
border-radius: 20px;
}

.cart-summary p {
font-size: 22px;
font-weight: bold;
color: #333;
margin: 10px auto;
display: flex;
align-items: center;
justify-content: center;
}

.cart-summary p i {
color: #ff5733; /* Orange-red for icons */
margin-right: 8px;
}

.cart-summary .count {
color: #28a745; /* Green for count */
font-weight: bold;
}

.cart-summary .pricef {
color: #dc3545; /* Red for price */
font-weight: bold;
font-size: 28px;
}
