/* Global Resets and Base Styles */
body {
    margin: 0;
    font-family: var(--font-family-base);
    line-height: var(--line-height-base);
    letter-spacing: 0.5px;
    color: var(--font-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Secreto Mio';
    src: url('/fonts/Secreto Mio.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.brand-logo {
    font-family: 'Secreto Mio', cursive;
    font-size: 2.2rem;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
}

.top-logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-sm) 0;
    margin-bottom: var(--spacing-sm);
    width: 100%;
}

.center-logo {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .center-logo {
        font-size: 2.5rem;
    }

    .top-logo-area {
        padding: var(--spacing-md) 0;
        margin-bottom: var(--spacing-sm);
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Header Areas within Main */
.page-header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.85);
    /* Glassmorphism-ish */
    backdrop-filter: blur(12px);
    padding: var(--spacing-md) 0;
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-md);
}

.page-header h2 {
    margin: 0;
    font-size: 1.25rem;
}

/* Generic Page Containers */
.about-container,
.shop-page,
.custom-content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.about-container h1,
.shop-page h2,
.custom-content-page h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    /* Removed Gradient */
    color: var(--color-dark);
}

.about-container p,
.shop-page p,
.custom-content-page p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

/* Global scrollbar styling */
::-webkit-scrollbar {
    width: 18px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-dark);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark);
    opacity: 0.8;
}

/* For Firefox */
* {
    scrollbar-width: auto;
}

/* Shared Card Component */
.global-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.global-card:hover {
    border-color: var(--primary-color);
    /* No shadow or zoom as per user request (blog style) */
}

.global-card-image {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.global-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bg-pink-light {
    background-image: var(--bg-pink-light-gradient);
    min-height: 100vh;
}

.bg-pink-dark {
    background-image: var(--bg-pink-dark-gradient);
    min-height: 100vh;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}