/*
 Theme Name:   Storefront Child
 Template:     storefront
 Version:      1.0
*/

/* --- Your custom CSS can go below this line --- */

/* ================================
   HEADER NAVIGATION STYLING
   ================================ */
.sweettee-header {
    background-color: #D2275b; /* brand pink background */
    padding: 15px 30px;
}

.sweettee-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sweettee-header .site-branding a {
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.sweettee-header .nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.sweettee-header .nav-menu li a {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sweettee-header .nav-menu li a:hover {
    color: #000000; /* playful hover flip */
}

.sweettee-header .cart-link {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    background: #000000;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sweettee-header .cart-link:hover {
    background: #ffffff;
    color: #D2275b;
}

/* ================================
   FOOTER STYLING
   ================================ */
.sweettee-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 30px;
    text-align: center;
}

.sweettee-footer .footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
    padding: 0;
}

.sweettee-footer .footer-menu li a,
.sweettee-footer .footer-links a {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sweettee-footer .footer-menu li a:hover,
.sweettee-footer .footer-links a:hover {
    color: #D2275b;
}


/* ================================
   RESPONSIVE MEDIA QUERIES
   ================================ */

/* Tablet screens (max-width: 768px) */
@media (max-width: 768px) {
    .sweettee-header .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .sweettee-header .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .sweettee-header .cart-link {
        margin-top: 15px;
        align-self: flex-start;
    }

    .sweettee-footer .footer-menu {
        flex-direction: column;
        gap: 8px;
    }
}

/* Mobile screens (max-width: 480px) */
@media (max-width: 480px) {
    .sweettee-header {
        padding: 10px 15px;
    }

    .sweettee-header .site-branding a {
        font-size: 18px;
    }

    .sweettee-header .nav-menu li a {
        font-size: 14px;
    }

    .sweettee-header .cart-link {
        font-size: 14px;
        padding: 6px 12px;
    }

    .sweettee-footer {
        padding: 15px;
    }

    .sweettee-footer .footer-menu li a {
        font-size: 12px;
    }
}

/* ================================
   NAV LINK HOVER ANIMATIONS
   ================================ */

/* Underline slide-in effect */
.sweettee-header .nav-menu li a {
    position: relative;
    overflow: hidden;
}

.sweettee-header .nav-menu li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #083fee; /* brand blue underline */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sweettee-header .nav-menu li a:hover::after {
    transform: translateX(0);
}

/* Subtle bounce effect */
.sweettee-header .nav-menu li a:hover {
    color: #000000;
    transform: translateY(-2px);
    transition: transform 0.2s ease, color 0.3s ease;
}

/* Reset WooCommerce Shop page buttons to normal size */
.woocommerce ul.products li.product .button {
    font-size: 14px;   /* smaller text */
    padding: 8px 16px; /* balanced padding */
    border-radius: 4px;
}

