:root {
    /* Brand Colors - Menha Boutique Theme */
    --color-primary: #004D40;
    --color-primary-light: #00897B;
    --color-primary-dark: #00251A;
    --color-accent: #FFB300;
    --color-accent-hover: #FFA000;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #102A43;
    --color-text: #102A43;
    --color-text-light: #7B8794;
    --color-light-gray: #f4f6f8;
    --color-border: #e9ecef;

    /* Shadows & Glass */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 30px rgba(0, 77, 64, 0.1);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--color-text);
    background-color: var(--color-light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: 1200px;
}

.section-padding {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

/* Header */
.header {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-left: 0.5rem;
    letter-spacing: -0.5px;
}

.menu-btn,
.action-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.action-btn:hover,
.menu-btn:hover {
    background-color: rgba(0, 77, 64, 0.08);
}

.cart-container {
    position: relative;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 800;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(25%, -25%);
    border: 2px solid var(--color-white);
}

/* Shimmer Loading */
.loading-shimmer {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeholderShimmer;
    animation-timing-function: linear;
}

@keyframes placeholderShimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

/* Banner */
.banner-section {
    padding: 1.5rem 0;
}

.banner-carousel {
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Categories */
.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.category-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.cat-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 3px solid transparent;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    background: var(--color-white);
    padding: 2px;
}

.cat-img-wrapper img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item:hover .cat-img-wrapper {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

/* Products */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.view-all-btn {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(0, 77, 64, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
}

.view-all-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 0;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    overflow: hidden;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.prod-img-box {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    position: relative;
}

.prod-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}

.product-card:hover .prod-img-box img {
    transform: scale(1.05);
}

.card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.icon-btn {
    width: 32px;
    height: 32px;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    color: var(--color-text-light);
    transition: var(--transition-fast);
}

.icon-btn:hover {
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.1);
}

.icon-btn svg {
    width: 16px;
    height: 16px;
}

.prod-info {
    padding: 1.25rem;
}

.prod-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prod-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.rating-pill {
    background: var(--color-light-gray);
    padding: 2px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--color-text);
}

.rating-pill svg {
    width: 12px;
    height: 12px;
    color: var(--color-accent);
    fill: var(--color-accent);
}

.prod-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    .banner-carousel {
        height: 200px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .prod-img-box {
        height: 150px;
    }

    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-text {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-left: 0;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-light-gray);
    transition: var(--transition-fast);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--color-accent);
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--color-light-gray);
    font-size: 0.9rem;
    opacity: 0.8;
}