html {
    scroll-behavior: smooth;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.tonal-shift-bg {
    background: rgba(245, 250, 250, 0.7);
}

.no-border {
    border: none !important;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(0, 103, 107, 0.05) 0%, rgba(118, 75, 157, 0.05) 100%);
}

.purity-gradient-btn {
    background: linear-gradient(to right, #00676b, #008287);
}

.purity-gradient {
    background: linear-gradient(135deg, #00676b 0%, #008287 100%);
}

.glass-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Custom Scrollbar (Optional but premium) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f5fafa;
}
::-webkit-scrollbar-thumb {
    background: #00676b;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #008287;
}
/* Unified Navigation & Product Components */
.braspur-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.braspur-logo {
    height: 5rem; /* h-20 */
    width: 15rem;  /* w-60 */
    object-fit: contain;
    object-position: left;
    mix-blend-mode: multiply;
}

.braspur-product-card {
    background-color: #ffffff; /* surface-container-lowest */
    border-radius: 0.75rem;     /* rounded-xl */
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.braspur-product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
}

.braspur-product-card-body {
    padding: 1.5rem; /* p-6 */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.braspur-product-card-btn {
    margin-top: auto;
    display: block;
    width: 100%;
    border: 2px solid #00676b; /* primary */
    color: #00676b;
    font-weight: 700;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    border-radius: 0.5rem; /* rounded-lg */
    transition: all 0.2s;
    text-align: center;
}

.braspur-product-card-btn:hover {
    background-color: #00676b;
    color: #ffffff;
}
