/* Find the :root section or add it at the top if it doesn't exist */
:root {
    --pink: #ff69b4;
    --pink-hover: #e05a9b;
    --gold: #d4af37;
    --dark: #1a1a1a;
}

/* Find the navigation styles and update them */
nav a, .nav-menu a, .main-nav a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover, .nav-menu a:hover, .main-nav a:hover,
nav a.active, .nav-menu a.active, .main-nav a.active {
    background-color: var(--pink);
    color: white;
}

/* Update button styles */
.cta-button, button[type="submit"], .view-all-button, 
input[type="submit"], .button {
    background-color: var(--pink);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover, button[type="submit"]:hover, 
.view-all-button:hover, input[type="submit"]:hover, 
.button:hover {
    background-color: var(--pink-hover);
}

/* Update link colors */
a {
    color: var(--pink);
    text-decoration: none;
}

a:hover {
    color: var(--pink-hover);
}

.cart-icon {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--pink);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 60px;
    padding: 5px;
    text-align: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--gold);
    color: white;
    border-radius: 5px;
    margin-right: 5px;
}

.cart-button {
    background: var(--gold);
    color: black;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.product-actions {
    display: flex;
    align-items: center;
    margin-top: 10px;
} 