/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #ffcce6;
    --secondary-color: #ff66b3;
    --text-color: #333;
    --light-color: #fff;
    --dark-color: #000;
    --border-color: #ffb3d9;
    --shadow-color: rgba(197, 55, 126, 0.464);
}

body {
    background-color: var(--light-color);
    color: var(--text-color);
    overflow-x: hidden;
}
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f1e9;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.rotating-loader {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-icon {
    width: 60px;
    height: 60px;
    animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    background:linear-gradient(45deg, #ff00bb,  #ff00f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: rgb(48, 45, 45);
    border-color: var(--border-color);
    
    background:linear-gradient(45deg, #eeff00, #ff00ea);
}

.nav-link.active {
    color: rgb(48, 45, 45);
    transform: translateY(-6px);
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.cart-count {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Main Content */
main {
    margin-top: 80px;
    padding: 2rem 5%;
}

/* Home Section */
.home-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.home-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInLeft 1s ease;
}

.home-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
}

.home-title span {
    color: var(--secondary-color);
}

.home-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}

.explore-btn {
    background:linear-gradient(45deg, #eeff00, #ff00ea);
    color: var(--light-color);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.explore-btn:hover {
    
   background:linear-gradient(45deg, #eeff00, #ff00ea);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-color);
}


/* Home Image Styles */
.home-image {
    position: relative;
    margin-left: 10px;
}

.home-image img {
    width: 350px;
    height: auto;
    border-radius: 10px;

    transition: all 0.5s ease;
}

/* Floating Animation */
.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Pulse Animation */
.pulse-shadow {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(234, 206, 181, 0.844); }
    70% { box-shadow: 0 0 0 15px rgba(234, 206, 181, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 206, 181, 0); }
}


/* Products Section */
.products-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.featured-title {
    margin-top: 5rem;
}

.products-container, .featured-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.192);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    border: #000;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.307);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.7rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background:linear-gradient(45deg, #eeff00, #ff00ea);
    color: var(--light-color);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    max-width: 800px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.skills-section {
    width: 100%;
    max-width: 600px;
}

.skills-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-color);
}

.skill {
    margin-bottom: 1.5rem;
}

.skill-name {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.skill-bar {
    width: 100%;
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
   background:linear-gradient(45deg, #eeff00, #ff00ea);
    border-radius: 5px;
    transition: width 1.5s ease;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.2s; }
.review-card:nth-child(2) { animation-delay: 0.4s; }
.review-card:nth-child(3) { animation-delay: 0.6s; }

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reviewer-img {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--secondary-color);
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #f9f9f9;
    padding: 3rem 5% 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.cart-modal-content {
    max-width: 600px;
}

.checkout-modal-content {
    max-width: 700px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--secondary-color);
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
}

/* Login Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.login-submit-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-submit-btn:hover {
    background:linear-gradient(45deg, #eeff00, #ff00ea);
    color: var(--text-color);
}

.login-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}

/* Cart Items */
.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--secondary-color);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.remove-item {
    color: #ff4d4d;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #ff0000;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    border-top: 1px solid #eee;
}

.total-price {
    color: var(--secondary-color);
}

.checkout-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.checkout-btn:hover {
   background:linear-gradient(45deg, #eeff00, #ff00ea);
    color: var(--text-color);
}

/* Checkout Instructions */
.checkout-instructions {
    margin-bottom: 2rem;
}

.checkout-instructions p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.payment-details {
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.payment-details p {
    margin-bottom: 0.5rem;
}

.checkout-instructions ul {
    margin: 1rem 0 1rem 2rem;
}

.checkout-instructions ul li {
    margin-bottom: 0.5rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background-color: #25D366;
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
   background-color:rgba(142, 224, 224, 0.899) ;
}
/* Android-Specific Styles */
@media (max-width: 768px) {
    /* Header - Icon-Based Navigation */
    .header {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo-container {
        margin-bottom: 0;
    }
    
    .logo-text {
        display: block; /* Show text */
        font-size: 1.3rem; /* Smaller text */
        margin: 0; /* Remove default margins */
        background: none;
        -webkit-text-fill-color: initial;
        color:#ff00bb; /* Solid color for better visibility */
    }
    

    
    /* Home Section Adjustments */
    .home-section {
        flex-direction: column-reverse;
        padding-top: 1rem;
    }
    
    .home-image img {
        width: 250px; /* Reduced GIF/image size */
        margin-bottom: 1.5rem;
    }
    
    .home-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .home-title {
        font-size: 2rem;
    }
    
    /* Products Grid - 2 per column */
    .products-container, .featured-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    /* Footer Adjustments */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Modal Adjustments */
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}

/* Even Smaller Screens */
@media (max-width: 480px) {
    .products-container, .featured-container {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
    
    .home-image img {
        width: 200px;
    }
    
    .home-title {
        font-size: 1.8rem;
    }
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .home-section {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
    }

    .home-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .home-image {
        width: 100%;
    }
}


@media (max-width: 576px) {
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .products-container, .featured-container {
        grid-template-columns: 1fr;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
/* Add this to your existing styles.css */
/* Pink Glow Effect for All Buttons */
button, .btn, .add-to-cart, .explore-btn, 
.login-submit-btn, .checkout-btn, .whatsapp-btn,
.quantity-btn, .nav-link {
    transition: all 0.3s ease;
    position: relative;
}

button:hover, .btn:hover, .add-to-cart:hover, 
.explore-btn:hover, .login-submit-btn:hover, 
.checkout-btn:hover, .whatsapp-btn:hover,
.quantity-btn:hover, .nav-link:hover {
    box-shadow: 0 0 15px rgba(255, 102, 179, 0.8);
}

/* Enhance the glow effect for main buttons */
.explore-btn:hover, .add-to-cart:hover,
.login-submit-btn:hover, .checkout-btn:hover,
.whatsapp-btn:hover {
    box-shadow: 0 0 20px rgba(255, 102, 179, 1);
    transform: translateY(-2px);
}

/* Specific button adjustments */
.add-to-cart:hover {
    box-shadow: 0 0 15px rgba(255, 102, 179, 0.8),
                0 0 25px rgba(255, 102, 179, 0.6);
}

.nav-link:hover {
    box-shadow: 0 0 10px rgba(255, 102, 179, 0.6);
}

/* For the quantity buttons */
.quantity-btn:hover {
    box-shadow: 0 0 8px rgba(255, 102, 179, 0.6);
}
@media (max-width: 768px) {
    /* Product card adjustments for mobile */
    .products-container, .featured-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
        
    }
    
    .product-card {
        padding: 0.5rem;
        margin-bottom: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color); /* Slightly thinner border for mobile */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .product-card:hover {
    border-color: var(--secondary-color); /* Change border color on hover */
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

/* Featured Product Border Highlight */
.featured-badge {
    /* Keep your existing styles */
    border: 1px solid var(--light-color); /* Add border to badge */
}

/* Add this if you want a different border for featured products */
.product-card.featured {
    border: 1px solid var(--secondary-color);
}

/* For the Add to Cart button border */
.add-to-cart {
    border: 1px solid var(--border-color); /* Add border to button */
    /* Keep your existing styles */
}

.add-to-cart:hover {
    border-color: var(--secondary-color); /* Change border on hover */
}
    
    .product-image {
        height: 120px !important; /* Smaller fixed height */
        width: 100%;
        object-fit: contain; /* Show full image without cropping */
    }
    
    .product-info {
        padding: 0.8rem 0.5rem;
    }
    
    .product-name {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-description {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Limit to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-price {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .add-to-cart {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    
    .featured-badge {
        top: 8px;
        right: 8px;
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* Adjust section spacing */
    .products-section {
        padding: 2rem 0;
    }
    
    .section-title, .featured-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-title {
        margin-top: 2.5rem;
    }
}

/* For very small screens (optional) */
@media (max-width: 480px) {
    .products-container, .featured-container {
        gap: 0.5rem;
    }
    
    .product-image {
        height: 100px !important;
    }
    
    .product-name {
        font-size: 0.8rem;
    }
    
    .product-description {
        font-size: 0.65rem;
        -webkit-line-clamp: 1; /* Only 1 line on very small screens */
    }
    
    .add-to-cart {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .nav ul {
        display: flex;
        justify-content: space-around; /* Evenly distribute icons */
        width: 100%;
        gap: 13px; /* Remove gap since we're using space-around */
        padding: 0 5px; /* Small side padding */
    }

    .nav li {
        flex: 1; /* Each item takes equal space */
        text-align: center; /* Center the icon */
    }

    .nav-link {
        padding: 0.5rem 0; /* Vertical padding only */
        border-radius: 0; /* Remove rounded corners */
        border: none !important; /* Remove any borders */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%; /* Full height of nav */
    }

    .nav-icon {
        font-size: 1.0rem;
        color: black; /* Match your theme */
        margin-bottom: 3px; /* Small space between icon and active indicator */
    }

    .nav-text {
        display: none;
    }

    /* Active state indicator */
    .nav-link.active {
        transform: none; /* Remove the translateY */
        border-bottom: 3px solid var(--secondary-color); /* Bottom border indicator */
        background: transparent !important;
    }

    /* Cart count position adjustment */
    .cart-count {
        top: 3px;
        right: calc(50% - 20px); /* Center horizontally */
    }

    /* Remove hover effects on mobile */
    .nav-link:hover {
        background: transparent !important;
        box-shadow: none !important;
    }

}

/* For slightly larger mobile screens */
@media (min-width: 481px) and (max-width: 768px) {
    .nav-icon {
        font-size: 1.4rem; /* Slightly larger icons */
    }
    
    .nav ul {
        gap: 1.5rem; /* Slightly more space */
    }
}

/* Regular desktop view - show text, hide icons */
@media (min-width: 769px) {
    .nav-icon {
        display: none;
    }
    
    .nav-text {
        display: inline;
    }
}
/* Add to your existing styles.css */
.fas.fa-bracelet::before {
    content: "⌖";
    font-family: Arial;
}

.fas.fa-earrings::before {
    content: "⚭";
    font-family: Arial;
}
.customize-btn {
    background:linear-gradient(45deg, #fe63c5, #ff00aa);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
    margin-left: 1rem;
}

.customize-btn:hover {
    background:linear-gradient(45deg, #eeff00, #ff00ea);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

@media (max-width: 768px) {
    .home-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .explore-btn, .customize-btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}
/* For Android devices - adjust button width */
@media only screen and (max-width: 768px) and (hover: none) {
    .home-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .explore-btn, .customize-btn {
        width: 55%; /* Increased from 48% to 55% */
        min-width: auto;
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }

    .home-buttons button {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}