:root {
    --primary-color: #0F172A;       /* Deep Midnight Blue (Trust & Authority) */
    --primary-hover: #1E293B;      /* Lighter Slate */
    --secondary-color: #0EA5E9;     /* Electric Cyan (Innovation & Speed) */
    --secondary-hover: #0284C7;     /* Focused Blue */
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1;
}

.bg-brand-primary {
    background-color: var(--primary-color) !important;
}

.text-brand-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);
}
.btn-rounded-pill {
    border-radius: 50rem !important;
}
.btn-outline-dark {
    font-weight: 500;
}

.navbar-brand img {
    max-height: 40px;
}

.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.product-card .card-img-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    height: 200px;
    object-fit: contain;
    padding: 1rem;
    background-color: white;
}

.category-tile {
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
.category-tile:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}
.category-tile i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.category-tile:hover i {
    color: white;
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
}
.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Premium Product Styles */
.product-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.product-description-container {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #4a4a4a;
}
.product-description-container ul, 
.product-description-container ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}
.product-description-container li {
    margin-bottom: 0.5rem;
}
.section-padding {
    padding: 100px 0;
}
.bg-soft-primary {
    background-color: #f1f8f1;
}
.gallery-main-wrapper {
    background: #fdfdfd;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}
.gallery-main-wrapper:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.gallery-thumb {
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}
.gallery-thumb:hover, .gallery-thumb.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}
.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
}
.badge-premium {
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Floating Cart Button */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1030;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-cart:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.5);
}
.floating-cart .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid #fff;
    padding: 0.4em 0.6em;
}
@media (max-width: 768px) {
    .floating-cart {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}


