:root {
    /* Brand Colors */
    --color-mint: #c9d9c0;        /* Light muted green */
    --color-mint-dark: #a27859;   /* Brown/Camel (Primary accents & buttons) */
    --color-pink: #eed6ca;        /* Dusty pink */
    --color-beige: #f5f1eb;       /* Warm beige */
    --color-text-dark: #05727e;   /* Deep Teal (Headings and main text) */
    
    /* Additional Palette Colors */
    --color-bg-light: #faf9f6;    /* Very light background */
    --color-grey: #8d9397;        /* Cool grey */
    --color-peach: #f9e0d7;       /* Light peach */
    --color-white: #ffffff;
    --color-black: #000000;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text-dark);
    background-color: #FAFAFA;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--color-text-dark);
}

.handwritten {
    font-family: 'Caveat', cursive;
    color: var(--color-mint-dark);
}

/* Base Buttons */
.btn-custom {
    background-color: var(--color-mint-dark);
    color: white;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 20px rgba(141, 188, 165, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-custom:hover {
    background-color: var(--color-text-dark);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(58, 90, 76, 0.4);
}

/* Header Adjustments */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand img {
    height: 60px;
    border-radius: 50%;
}

.nav-link {
    color: var(--color-text-dark) !important;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-mint-dark) !important;
}

/* Footer Styling */
.footer {
    background-color: var(--color-text-dark);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer .handwritten {
    color: var(--color-mint);
    font-size: 2.5rem;
}

.footer a {
    color: var(--color-mint);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-socials {
    font-size: 2rem;
    margin: 20px 0;
}

.footer-socials a {
    margin: 0 15px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}

/* =========================================
   CATALOG PAGE STYLING (Store Product List)
   ========================================= */

body.catalog {
    background-color: var(--color-bg-light);
}

body.catalog > .container {
    padding-top: 60px;
    padding-bottom: 80px;
}

body.catalog #products-container .card.item {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.4s ease;
    background: #ffffff;
    height: 100%;
}

body.catalog #products-container .card.item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(141, 188, 165, 0.15);
}

body.catalog #products-container .card.item img {
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.5s ease;
}

body.catalog #products-container .card.item:hover img {
    transform: scale(1.05);
}

body.catalog #products-container .card-body {
    padding: 25px 20px;
    text-align: center;
}

body.catalog #products-container .product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.catalog #products-container .product-price {
    font-size: 1.15rem;
    color: var(--color-mint-dark);
}

/* Make filter button round and minty */
body.catalog .filter .btn-outline-dark {
    border-color: var(--color-mint-dark);
    color: var(--color-mint-dark);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
}

body.catalog .filter .btn-outline-dark:hover {
    background-color: var(--color-mint-dark);
    color: white;
}