/* Google Fonts - Playfair Display (Serif) & Rubik (Sans) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Rubik:wght@300;400;500;600&display=swap');

:root {
    /* --- MODERN POWER PALETTE --- */
    --primary: rgb(244, 63, 94);
    /* Electric Coral */
    --secondary: rgb(56, 189, 248);
    /* Sky Blue (Accent) */
    --accent: rgb(251, 191, 36);
    /* Amber (Highlight) */

    --dark: rgb(15, 23, 42);
    /* Deep Ocean */
    --footer-bg: var(--dark);

    --light: #f8fafc;
    /* Slate 50 */
    --gray: #cbd5e1;
    /* Slate 300 */
    --text-main: var(--dark);
    --text-light: #64748b;
    /* Slate 500 */
    --white: #ffffff;
    --bg-body: #f1f5f9;
    /* Slate 100 */
    --bg-card: #ffffff;
    --shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);

    /* Dimensions & Spacing */
    --container-width: 1240px;
    --header-height: 90px;
    --radius: 4px;
    /* More angular for premium feel */
    --radius-sm: 4px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.15);

    --font-heading: 'Playfair Display', serif;
    --font-main: 'Rubik', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --dark: #ecf0f1;
    --light: #34495e;
    --text-main: #ecf0f1;
    --text-light: #bdc3c7;
    --white: #2c3e50;
    --bg-body: #1a252f;
    --bg-card: #2c3e50;
    --gray: #34495e;
    --input-bg: #34495e;

    --shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Helpers */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* --- TOP BAR --- */
.top-bar {
    background: var(--footer-bg);
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 1.5rem;
}

/* --- LOGO UPGRADE (TEXT ONLY) --- */
.brand-logo {
    display: flex;
    flex-direction: column;
    /* Stack vertically again */
    align-items: flex-start;
    /* Align left */
    text-decoration: none;
    color: var(--dark);
    line-height: 1;
}

.logo-badge {
    display: none;
    /* Hide Badge */
}

.logo-text-col {
    display: flex;
    flex-direction: column;
}

.logo-main-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    /* Larger Text */
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo-sub-text {
    font-family: var(--font-main);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-top: 2px;
    margin-left: 2px;
}

/* Override old logo styles */
.logo-icon-svg {
    display: none;
}

/* Override old logo styles */
.logo-icon-svg {
    display: none;
}

/* --- MAIN HEADER --- */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary);
}

/* Unified Nav */
.nav-list {
    display: flex;
    gap: 2.5rem;
    margin: 0;
}

.nav-list a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
    transition: var(--transition);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.desktop-only {
    display: flex;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -300px;
    /* Hidden */
    width: 300px;
    height: 100%;
    background: var(--white);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active .mobile-nav-content {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1rem;
}

.mobile-brand {
    font-family: inherit;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
}

.close-mobile-nav {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.mobile-nav-list a:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-content {
        padding: 0 1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-badges {
        right: 0;
        top: 0;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 4rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text h4 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-text p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    border-radius: var(--radius-sm);
}

.hero-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 1rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.hero-badges span {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

.hero-badges small {
    font-size: 0.7rem;
    text-transform: uppercase;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* --- SERVICE ICONS --- */
.services-section {
    padding: 3rem 0;
    background: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2rem;
    color: var(--secondary);
}

.service-text h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.service-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- CATEGORIES --- */
.categories-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.section-title p {
    color: var(--text-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    height: 250px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;

}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
}

.cat-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}


/* --- SEARCH SECTION --- */
.search-section {
    position: relative;
    z-index: 20;
    /* Ensure on top */
    padding: 0;
    background: transparent;
    border: none;
    height: 0;
    /* Don't take up layout space */
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    top: -2.5rem;
    /* Float functionality */
    background: var(--white);
    /* White in light, Dark in dark */
    padding: 0.5rem;
    border-radius: 50px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#searchInput {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-main);
    background: transparent;
}

[data-theme="dark"] .search-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.search-wrapper button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-wrapper button:hover {
    background: var(--dark);
}

/* --- MAIN SLIDER --- */
.slider-section {
    padding: 2rem 0;
}

.main-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    /* Important: Prevent shrinking so they stay full width */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CSS Logo Styles */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-ellipse {
    background: #d63031;
    color: var(--white);
    font-weight: 700;
    padding: 10px 35px;
    border-radius: 50%;
    /* Back to Ellipse */
    font-size: 2.2rem;
    text-transform: lowercase;
    font-family: 'Rubik', sans-serif;
    /* Using available font */
    line-height: 1;
    display: inline-block;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-family: serif;
    /* Elegant font */
    font-size: 1rem;
    color: var(--dark);
    margin-top: 5px;
    letter-spacing: 1px;
    font-weight: 600;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    color: var(--dark);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* --- PRODUCT CAROUSEL --- */
.carousel-section {
    padding: 3rem 0;
}

.product-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    /* Firefox */
}

.product-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.carousel-item {
    min-width: 250px;
    max-width: 250px;
    flex: 0 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #777;
}

.carousel-btn:hover {
    background: #ffebee;
    color: var(--primary);
    border-color: #ffebee;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* --- PRODUCTS GRID --- */
.products-section {
    padding: 4rem 0;
    background: var(--bg-body);
    /* Fix for dark mode */
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-buttons button {
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
}

.tab-buttons button.active,
.tab-buttons button:hover {
    background: var(--dark);
    color: var(--white);
}

.product-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    cursor: pointer;
}

[data-theme="dark"] .product-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-img-wrapper {
    position: relative;
    height: 280px;
    background: #f1f2f6;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    /* Lighter icon */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: #ffebee;
    /* Light red background */
    color: var(--primary);
    /* Red icon */
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-cat {
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- DEAL BANNER --- */
.deal-section {
    padding: 5rem 0;
    background: url('https://images.unsplash.com/photo-1542435503-956c469947f6?auto=format&fit=crop&w=1500&q=80') center/cover fixed;
    position: relative;
}

.deal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.deal-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.deal-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.time-box {
    text-align: center;
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.time-box small {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- FOOTER --- */
footer {
    background: var(--footer-bg);
    color: #b2bec3;
    padding: 4rem 0 2rem;
    border-top: 5px solid var(--primary);
    /* Dynamic border color */
    margin-top: 0;
    /* Reset */
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary);
    bottom: -8px;
    left: 0;
}

.footer-col p {
    color: #b2bec3;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b2bec3;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b2bec3;
}

.contact-row i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #636e72;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p,
    .hero-image img {
        margin: 0 auto 2rem;
    }

    .main-header {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list {
        display: none;
        /* Mobile menu to be implemented if needed */
    }

    .search-wrapper {
        width: 100%;
        margin: 1rem 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* --- PRODUCT SIDEBAR LAYOUT --- */
.product-layout-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.product-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray);
    color: var(--dark);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 0.5rem;
}

.sidebar-list a {
    display: block;
    padding: 0.5rem 0.8rem;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.sidebar-list a:hover,
.sidebar-list a.active {
    background: var(--primary);
    color: var(--white);
    padding-left: 1rem;
}

.product-main {
    flex: 1;
}

.product-toolbar {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-toolbar h2 {
    font-size: 1.5rem;
    color: var(--dark);
}

@media (max-width: 768px) {
    .product-layout-wrapper {
        flex-direction: column;
    }

    .product-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 2rem;
    }
}

.admin-body {
    background-color: #f4f6f8;
    min-height: 100vh;
}

.admin-header-nav {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.admin-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav-links {
    display: flex;
    gap: 1.5rem;
}

.admin-tab-btn {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 500;
}

.admin-tab-btn:hover,
.admin-tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.admin-card h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.2rem;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray);
}

.data-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--text-main);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.badge {
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- FOOTER (PREMIUM DARK GLASS) --- */
footer {
    /* Rich Dark Gradient Base */
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.95) 0%, rgba(36, 59, 85, 0.95) 100%);
    color: #ffffff;
    padding: 5rem 0 3rem;
    position: relative;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

/* Glass Effect Overlay */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 2;
    /* Content above glass */
}

/* Footer Logo Specifics */
.footer-logo .logo-badge {
    box-shadow: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-logo .logo-main-text {
    color: #fff;
}

.footer-logo .logo-sub-text {
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Separator */
    padding-bottom: 3rem;
}

.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

/* Refined Typography */
.footer-col p,
.footer-links a,
.contact-row span {
    font-family: var(--font-main);
    font-weight: 300;
    /* Lighter font weight */
    font-size: 0.95rem;
    color: rgba(236, 240, 241, 0.7);
    /* More transparent text */
    line-height: 1.8;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.contact-row a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-row i {
    color: var(--secondary);
    font-size: 1rem;
    opacity: 0.8;
}

.badge-primary {
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary);
}

.badge-secondary {
    background: rgba(78, 205, 196, 0.1);
    color: var(--secondary);
}

.badge-accent {
    background: rgba(255, 203, 119, 0.2);
    color: #e6b31e;
}

.action-btns {
    display: flex;
    gap: 0.5rem;
}

/* Category List Items */
.cat-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    border-bottom: 1px solid var(--gray);
    transition: var(--transition);
}

.cat-list-item:hover {
    background-color: #f8f9fa;
}

.cat-list-item:last-child {
    border-bottom: none;
}

/* Login Modal */
.login-overlay {
    position: fixed;
    inset: 0;
    background: rgba(41, 47, 54, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.hidden {
    display: none !important;
}

/* Admin Unified Action Buttons */
.admin-action-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 0.9rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.admin-action-btn i {
    pointer-events: none;
}

.admin-action-btn.warning {
    background: #ffc107;
    color: #000;
}

.admin-action-btn.neutral {
    background: #eee;
    color: #aaa;
}

.admin-action-btn.info {
    background: #e3f2fd;
    color: #1976d2;
}

.admin-action-btn.danger {
    background: #ffebee;
    color: #c62828;
}

.admin-action-btn:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.btn-light {
    background: #eee;
    color: #aaa;
}

.btn-info {
    background: #e3f2fd;
    color: #1976d2;
}

.btn-danger {
    background: #ffebee;
    color: #c62828;
}

.btn-icon:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* --- PRODUCT MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    position: relative;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    animation: scaleUp 0.3s forwards;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: 0.2s;
}

.close-modal:hover {
    color: #333;
}

[data-theme="dark"] .close-modal:hover {
    color: #fff;
}

[data-theme="dark"] .sidebar-widget {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .sidebar-list a {
    color: var(--text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .sidebar-list a:hover,
[data-theme="dark"] .sidebar-list a.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    to {
        transform: scale(1);
    }
}

/* --- DYNAMIC SETTINGS & STOCK STYLES --- */

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 101;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.announcement-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Out of Stock Code */
.product-card.out-of-stock {
    opacity: 0.75;
}

.product-card.out-of-stock .product-img-wrapper img {
    filter: grayscale(80%);
}

.out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(45, 52, 54, 0.9);
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 800;
    border: 2px solid #fff;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- PRELOADER --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    transform: scale(1.5);
    margin-bottom: 1rem;
    animation: pulseLogo 1.5s infinite ease-in-out;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    margin-top: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1.5);
    }

    50% {
        transform: scale(1.4);
    }
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- PARALLAX SECTION --- */
.parallax-section {
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&q=80&w=1500');
    /* High quality stationery img */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darken */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- ADVANCED HOVER EFFECTS --- */
.product-card {
    /* Existing transition is OK, but let's refine */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-img-wrapper {
    overflow: hidden;
    /* Ensure zoom stays inside */
}

.product-img-wrapper img {
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
    /* Zoom in */
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}/ *   - - -   M O D E R N   N O T I F I C A T I O N   B A N N E R   - - -   * /  
 . a n n o u n c e m e n t - b a r   {  
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;  
         / *   E l e c t r i c   C o r a l   * /  
         c o l o r :   v a r ( - - w h i t e ) ;  
         p a d d i n g :   0 . 8 r e m   1 r e m ;  
         p o s i t i o n :   r e l a t i v e ;  
         z - i n d e x :   1 0 0 1 ;  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
         a n i m a t i o n :   s l i d e D o w n   0 . 5 s   e a s e   f o r w a r d s ;  
 }  
  
 @ k e y f r a m e s   s l i d e D o w n   {  
         f r o m   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 0 % ) ;  
         }  
  
         t o   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
         }  
 }  
  
 . a n n o u n c e m e n t - t e x t   {  
         f o n t - s i z e :   0 . 9 5 r e m ;  
         f o n t - w e i g h t :   5 0 0 ;  
         l e t t e r - s p a c i n g :   0 . 5 p x ;  
         m a r g i n - r i g h t :   2 r e m ;  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . a n n - c l o s e - b t n   {  
         p o s i t i o n :   a b s o l u t e ;  
         r i g h t :   1 r e m ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ;  
         b o r d e r :   n o n e ;  
         c o l o r :   v a r ( - - w h i t e ) ;  
         w i d t h :   2 4 p x ;  
         h e i g h t :   2 4 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         c u r s o r :   p o i n t e r ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         f o n t - s i z e :   0 . 8 r e m ;  
 }  
  
 . a n n - c l o s e - b t n : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 4 ) ;  
         t r a n s f o r m :   r o t a t e ( 9 0 d e g ) ;  
 }  
  
 / *   - - -   M O D E R N   T I M E L I N E   F E E D   ( D u y u r u l a r   P a g e )   - - -   * /  
 . t i m e l i n e - f e e d   {  
         p o s i t i o n :   r e l a t i v e ;  
         m a x - w i d t h :   8 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
         p a d d i n g :   2 r e m   0 ;  
 }  
  
 / *   T i m e l i n e   L i n e   * /  
 . t i m e l i n e - f e e d : : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         b o t t o m :   0 ;  
         l e f t :   2 0 p x ;  
         w i d t h :   2 p x ;  
         b a c k g r o u n d :   v a r ( - - g r a y ) ;  
         z - i n d e x :   0 ;  
 }  
  
 . a n n - c a r d   {  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         p a d d i n g :   2 r e m ;  
         m a r g i n - b o t t o m :   3 r e m ;  
         m a r g i n - l e f t :   5 0 p x ;  
         / *   S p a c e   f o r   t i m e l i n e   * /  
         p o s i t i o n :   r e l a t i v e ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - s m ) ;  
         t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;  
 }  
  
 . a n n - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - h o v e r ) ;  
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ;  
 }  
  
 / *   T i m e l i n e   D o t   * /  
 . a n n - c a r d : : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         l e f t :   - 4 1 p x ;  
         / *   A d j u s t   t o   h i t   t h e   l i n e   * /  
         t o p :   2 r e m ;  
         w i d t h :   2 0 p x ;  
         h e i g h t :   2 0 p x ;  
         b a c k g r o u n d :   v a r ( - - w h i t e ) ;  
         b o r d e r :   4 p x   s o l i d   v a r ( - - p r i m a r y ) ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         z - i n d e x :   1 ;  
         b o x - s h a d o w :   0   0   0   4 p x   v a r ( - - b g - b o d y ) ;  
         / *   G a p   e f f e c t   * /  
 }  
  
 . a n n - d a t e   {  
         d i s p l a y :   i n l i n e - b l o c k ;  
         b a c k g r o u n d :   v a r ( - - l i g h t ) ;  
         c o l o r :   v a r ( - - t e x t - l i g h t ) ;  
         p a d d i n g :   0 . 4 r e m   1 r e m ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         f o n t - w e i g h t :   5 0 0 ;  
         m a r g i n - b o t t o m :   1 r e m ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - g r a y ) ;  
 }  
  
 . a n n - c o n t e n t   {  
         f o n t - s i z e :   1 . 1 r e m ;  
         l i n e - h e i g h t :   1 . 8 ;  
         c o l o r :   v a r ( - - t e x t - m a i n ) ;  
 }  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       M O D E R N   C A P S U L E   N A V   &   G L A S S   H E A D E R   O V E R R I D E  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
  
 / *   G l a s s   H e a d e r   C o n t a i n e r   * /  
 h e a d e r   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 )   ! i m p o r t a n t ;  
         h e i g h t :   v a r ( - - h e a d e r - h e i g h t ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         p o s i t i o n :   s t i c k y ;  
         t o p :   0 ;  
         z - i n d e x :   1 0 0 0 ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 2 p x )   ! i m p o r t a n t ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
         b o x - s h a d o w :   0   4 p x   2 0 p x   - 1 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 )   ! i m p o r t a n t ;  
         p a d d i n g :   0   ! i m p o r t a n t ;  
 }  
  
 . h e a d e r - c o n t e n t   {  
         h e i g h t :   1 0 0 % ;  
         m a r g i n - t o p :   0   ! i m p o r t a n t ;  
         m a r g i n - b o t t o m :   0   ! i m p o r t a n t ;  
 }  
  
 / *   H i d e   t h e   o l d   l i n e   e f f e c t   * /  
 . n a v - l i s t   a : : a f t e r   {  
         d i s p l a y :   n o n e   ! i m p o r t a n t ;  
 }  
  
 / *   N a v   L i s t   C o n t a i n e r   ( T h e   G r e y   C a p s u l e )   * /  
 . n a v - l i s t   {  
         d i s p l a y :   f l e x   ! i m p o r t a n t ;  
         g a p :   0 . 5 r e m   ! i m p o r t a n t ;  
         l i s t - s t y l e :   n o n e ;  
         m a r g i n :   0   ! i m p o r t a n t ;  
         b a c k g r o u n d :   v a r ( - - l i g h t )   ! i m p o r t a n t ;  
         p a d d i n g :   5 p x   6 p x   ! i m p o r t a n t ;  
         b o r d e r - r a d i u s :   5 0 p x   ! i m p o r t a n t ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 3 ) ;  
         a l i g n - i t e m s :   c e n t e r ;  
 }  
  
 / *   N a v   L i n k   I t e m s   ( T h e   P i l l s )   * /  
 . n a v - l i s t   a   {  
         t e x t - d e c o r a t i o n :   n o n e   ! i m p o r t a n t ;  
         c o l o r :   v a r ( - - t e x t - l i g h t )   ! i m p o r t a n t ;  
         f o n t - w e i g h t :   5 0 0   ! i m p o r t a n t ;  
         f o n t - s i z e :   0 . 9 r e m   ! i m p o r t a n t ;  
         p a d d i n g :   0 . 6 r e m   1 . 2 r e m   ! i m p o r t a n t ;  
         b o r d e r - r a d i u s :   4 0 p x   ! i m p o r t a n t ;  
         d i s p l a y :   f l e x   ! i m p o r t a n t ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   8 p x   ! i m p o r t a n t ;  
         t e x t - t r a n s f o r m :   n o n e   ! i m p o r t a n t ;  
         l e t t e r - s p a c i n g :   n o r m a l   ! i m p o r t a n t ;  
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 )   ! i m p o r t a n t ;  
         h e i g h t :   a u t o   ! i m p o r t a n t ;  
         l i n e - h e i g h t :   1   ! i m p o r t a n t ;  
 }  
  
 / *   H o v e r   E f f e c t   * /  
 . n a v - l i s t   a : h o v e r   {  
         c o l o r :   v a r ( - - d a r k )   ! i m p o r t a n t ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 )   ! i m p o r t a n t ;  
         b o x - s h a d o w :   0   2 p x   5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 )   ! i m p o r t a n t ;  
 }  
  
 / *   A c t i v e   P i l l   E f f e c t   * /  
 . n a v - l i s t   a . a c t i v e   {  
         b a c k g r o u n d :   v a r ( - - w h i t e )   ! i m p o r t a n t ;  
         c o l o r :   v a r ( - - p r i m a r y )   ! i m p o r t a n t ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 )   ! i m p o r t a n t ;  
         f o n t - w e i g h t :   6 0 0   ! i m p o r t a n t ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ;  
 }  
  
 / *   I c o n s   * /  
 . n a v - l i s t   a   i   {  
         f o n t - s i z e :   0 . 9 r e m ;  
         o p a c i t y :   0 . 8 ;  
 }  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       U L T R A - C O M P A C T   M O D E R N   F O O T E R   O V E R R I D E  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
  
 f o o t e r   {  
         b a c k g r o u n d :   v a r ( - - d a r k )   ! i m p o r t a n t ;  
         m a r g i n - t o p :   4 r e m   ! i m p o r t a n t ;  
         p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ;  
         o v e r f l o w :   h i d d e n   ! i m p o r t a n t ;  
         p a d d i n g :   2 r e m   0   ! i m p o r t a n t ;  
         / *   M i n i m a l   p a d d i n g   * /  
         b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 )   ! i m p o r t a n t ;  
         b a c k g r o u n d - i m a g e :   n o n e   ! i m p o r t a n t ;  
         / *   R e m o v e   g r a d i e n t   i f   a n y   * /  
 }  
  
 / *   O v e r r i d e   p r e v i o u s   h e a v y / c o m p l e x   f o o t e r   s t y l e s   * /  
 . f o o t e r - t o p ,  
 . f o o t e r - c o l ,  
 . f o o t e r - b o t t o m ,  
 . f o o t e r - l o g o   . l o g o - b a d g e   {  
         d i s p l a y :   n o n e   ! i m p o r t a n t ;  
 }  
  
 / *   F l e x   C o n t a i n e r   * /  
 f o o t e r   . c o n t a i n e r   {  
         d i s p l a y :   f l e x   ! i m p o r t a n t ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ;  
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ;  
         f l e x - w r a p :   w r a p   ! i m p o r t a n t ;  
         g a p :   2 r e m   ! i m p o r t a n t ;  
 }  
  
 / *   1 .   L e f t :   B r a n d   &   C o p y   * /  
 . f o o t e r - b r a n d - s i d e   {  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . f o o t e r - l o g o - s m a l l   {  
         f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ;  
         f o n t - s i z e :   1 . 4 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - w h i t e ) ;  
         l e t t e r - s p a c i n g :   - 0 . 5 p x ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   8 p x ;  
 }  
  
 . f o o t e r - c o p y   {  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 4 ) ;  
         f o n t - s i z e :   0 . 8 r e m ;  
 }  
  
 / *   2 .   M i d d l e :   S o c i a l   P i l l s   * /  
 . f o o t e r - s o c i a l - s i d e   {  
         d i s p l a y :   f l e x ;  
         g a p :   1 r e m ;  
 }  
  
 . s o c i a l - p i l l   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         c o l o r :   v a r ( - - w h i t e ) ;  
         w i d t h :   4 0 p x ;  
         h e i g h t :   4 0 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         f o n t - s i z e :   1 . 1 r e m ;  
 }  
  
 . s o c i a l - p i l l : h o v e r   {  
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ;  
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 2 4 4 ,   6 3 ,   9 4 ,   0 . 4 ) ;  
         / *   G l o w   e f f e c t   * /  
         c o l o r :   v a r ( - - w h i t e ) ;  
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ;  
 }  
  
 / *   3 .   R i g h t :   C o n t a c t   C o m p a c t   * /  
 . f o o t e r - c o n t a c t - s i d e   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 . 5 r e m ;  
 }  
  
 . c o n t a c t - m i n i - i t e m   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   8 p x ;  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 7 ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         t r a n s i t i o n :   c o l o r   0 . 2 s ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ;  
         p a d d i n g :   0 . 5 r e m   1 r e m ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
 }  
  
 . c o n t a c t - m i n i - i t e m : h o v e r   {  
         c o l o r :   v a r ( - - w h i t e ) ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
 }  
  
 . c o n t a c t - m i n i - i t e m   i   {  
         c o l o r :   v a r ( - - s e c o n d a r y ) ;  
         / *   S k y   B l u e   * /  
 }  
  
 / *   M o b i l e   A d j u s t m e n t s   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         f o o t e r   . c o n t a i n e r   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 t e x t - a l i g n :   c e n t e r ;  
                 g a p :   1 . 5 r e m ;  
         }  
  
         . f o o t e r - c o n t a c t - s i d e   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 g a p :   1 r e m ;  
                 w i d t h :   1 0 0 % ;  
         }  
  
         . c o n t a c t - m i n i - i t e m   {  
                 w i d t h :   1 0 0 % ;  
                 j u s t i f y - c o n t e n t :   c e n t e r ;  
         }  
 }  
 