/* Mobile-friendly styles */
:root {
    --pink: #ff69b4;
    --pink-hover: #e05a9b;
    --gold: #d4af37;
    --dark: #1a1a1a;
}

/* Base mobile styles */
body {
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    max-width: 100vw;
}

/* Mobile-friendly cards */
.item-card, .product-card {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-bottom: 25px; /* Increased spacing between cards */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    background-color: white; /* Ensure background is visible */
}

.item-card img, .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-card h3, .product-card h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    padding: 0 15px;
}

.item-card p, .product-card p {
    padding: 0 15px;
    margin: 5px 0;
}

.item-card .price, .product-card .price {
    color: var(--pink);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Call to action buttons */
.cta-button, .view-all-button {
    display: inline-block;
    background-color: var(--pink);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    margin: 10px 15px 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover, .view-all-button:hover {
    background-color: var(--pink-hover);
}

/* Mobile-friendly forms */
form {
    max-width: 100%;
    padding: 10px 0;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px; /* Improve readability */
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.9);
}

button[type="submit"] {
    background-color: var(--pink);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #e05a9b;
}

/* Touch-friendly hover alternatives */
.has-touch .item-card:hover, 
.has-touch .product-card:hover {
    transform: none;
}

.has-touch .item-card:active, 
.has-touch .product-card:active {
    transform: scale(0.98);
}

/* Fix horizontal overflow issues */
html {
    overflow-x: hidden;
    width: 100%;
}

/* Important - ensure menu toggle is visible */
.mobile-menu-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background-color: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Menu overlay */
.menu-overlay {
    /* Delete lines 199-212 */
}

/* Add this to ensure the menu is properly positioned */
.main-nav {
    position: relative;
    padding: 15px;
}

/* Remove the notched devices support */
@supports (padding: max(0px)) {
    /* Delete lines 221-233 */
}

/* Rest of existing code... */ 