/* Design tokens based on provided style guide */
:root {
    --color-primary: var(--color-500);
    /* Buttons / Highlights */
    --color-primary-hover: var(--color-600);
    --color-secondary: #131921;

    /* Color scale derived from main color #0f3845 */
    --color-50:  #e1f4fd;
    --color-100: #4ccaf2;
    --color-200: #3fadd0;
    --color-300: #2a7992;
    --color-400: #174c5d;
    --color-500: #0f3845; /* main */
    --color-600: #031319;

    --nav-bg: var(--color-500);
    /* Header / Footer */
    --color-bg: #FFFFFF;
    --color-section-bg: #F7F7F7;
    --color-text: #0F1111;
    --color-text-secondary: #565959;
    --color-muted: #767676;
    --color-link: var(--color-100);
    --color-link-hover: var(--color-200);
    --color-border: #DDDDDD;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

    --font-main: 'Poppins', Arial, Helvetica, sans-serif;
    --h1-size: 28px;
    --h2-size: 22px;
    --h3-size: 18px;
    --text-size: 14px;
    --small-text: 12px;
}

/* Basic reset */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: var(--text-size);
    line-height: 1.4
}

.container {
    max-width: 1400px;
    margin: 0 70px;
    padding: 0 16px;
}

.container1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}
.container1 ul button a{
    color: white;
}


.topbar {
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.topbar-inner {
    background: var(--color-400);
    max-width: 100%;
    padding: 4px 80px 4px 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    width: 100px;
    /* height: 80px; */
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Search */
.search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1
}

.search select,
.search input {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    background: #fff;
    font-size: 14px
}

.search input {
    flex: 1
}

.search button {
    background: var(--color-primary);
    color: var(--color-text);
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600
}

.search button:hover {
    background: var(--color-primary-hover)
}

/* ===== BUTTON HOVER ===== */
.btn,
.search button {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.cart-count {
  background: #ff4500;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  position: relative;
  top: -10px;
  left: -5px;
}


/* ===== SCROLL ANIMATION ===== */
.panel {
    opacity: 0;
    transform: translateY(30px);
}

.panel.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.user-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    color: #fff
}

.user-actions .account{
    font-size: 13px;
    line-height: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
}
.user-actions .account a{
    color: var(--color-400);
    font-weight:bold ;
}

.cart {
    font-size: 18px
}

/* Main nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #fff
}

.main-nav .menu {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 6px
}

/* ===== MENU HOVER ANIMATION ===== */
.main-nav .menu {
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
}

/* underline animation */
.main-nav .menu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.main-nav .menu:hover::after {
    width: 100%;
}

.main-nav .menu:hover {
    transform: translateY(-2px);
}

/* ===== CARD / PANEL HOVER EFFECT ===== */
.panel {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ===== IMAGE ZOOM EFFECT ===== */
.panel-grid img,
.panel-feature img {
    transition: transform 0.4s ease;
}

.panel-grid figure,
.panel-feature {
    overflow: hidden;
    border-radius: 6px;
}

.panel-grid figure:hover img,
.panel-feature:hover img {
    transform: scale(1.08);
}


.main-nav .menu:hover {
    background: rgba(255, 255, 255, 0.04)
}

.main-nav ul {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav button {
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600
}

/* Hero */
.hero {
    position: relative;
    margin-top: 18px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-section-bg);
    border-radius: 8px
}

.hero-slide {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end
}

.hero .hero-content {
    color: #fff;
    padding: 28px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.hero h1 {
    font-size: var(--h1-size);
    margin: 0;
    font-weight: 700
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.hero-nav:hover {
    transform: translateY(-50%) scale(1.15);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    box-shadow: var(--shadow)
}


.hero-nav.prev {
    left: 30px
}

.hero-nav.next {
    right: 30px
}

/* Top Ranking section */
.top-ranking-section {
    background: var(--color-section-bg);
    padding: 18px 0;
    border-radius: 8px;
    margin: 18px 0;
    border: 1px solid var(--color-border);
}

.tr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 12px;
}

.tr-header h2 {
    margin: 0;
    font-size: 20px;
}

.top-ranking-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 4px;
}

.rank-card {
    min-width: 220px;
    max-width: 250px;
    background: var(--color-bg);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    text-align: center;
    flex: 0 0 auto;
}

.rank-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.rank-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.rank-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    background: #ffffff;
    color: #111;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Loading Overlay */
.site-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background:var(--color-500);
  z-index: 9999;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}


.loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-align: center;
}

.loader-logo {
    width: 150px;
    height: auto;
}

.loader-percent {
    font-size: 32px;
    font-weight: bold;
}

.loader-bar {
    width: 300px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.loader-text {
    font-size: 16px;
    margin-top: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.close-btn:hover {
    color: #FF9900;
}

.rank-card h3 {
    margin: 20px 0 6px;
    font-size: 15px;
}

.rank-sub {
    color: var(--color-muted);
    font-size: 13px;
}

/* Promo row (peach) */
.promo-row {
    max-width: 100%;
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    background: var(--color-100);
    border-radius: 8px;
    margin: 18px 70px 10px 70px;
}

.promo-inner {
    display: flex;
    margin: 0px 16px ;
    gap: 10px;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card {
    background: linear-gradient(180deg, #fff, #ffefe9);
    padding: 15px;
    margin: 0px 0;
    border-radius: 8px;
    min-width: 320px;
    flex: 0 0 320px;
    box-shadow: var(--shadow);
}

.promo-pre {
    color: var(--color-text-secondary);
    font-weight: 700;
}

.promo-title {
    margin: 8px 0;
    font-size: 20px;
}

.promo-highlight {
    color: var(--color-primary);
    font-weight: 800;
}

.promo-sub {
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.promo-btn {
    margin-top: 6px;
    
}

.promo-deals-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 4px;
    -webkit-overflow-scrolling: touch;
}

.promo-deal {
    min-width: 150px;
    max-width: 180px;
    background: transparent;
    padding: 6px;
    border-radius: 8px;
    text-align: left;
}

.promo-deal img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.promo-price {
    margin-top: 8px;
    font-weight: 700;
}

.promo-moq {
    color: var(--color-muted);
    font-size: 13px;
}

/* Recommended (purple) */
.recommended-section {
    background: var(--color-300);
    color: #fff;
    padding: 20px 80px;
    padding-left: 0px;
    margin: 20px 70px 30px 70px; 
    border-radius: 8px;
}

.recommended-inner {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.recommended-cta {
    flex: 0 0 360px;
    padding: 2px;
}

.recommended-cta h3 {
    font-size: 22px;
    margin: 0 0 6px;
}

.recommended-cta p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.9);
}

.recommended-features {
    list-style: none;
    padding: 0;
    margin: 10px 10px  16px;
    color: rgba(255, 255, 255, 0.9);
}

.recommended-features li {
    margin-bottom: 6px;
}

.recommended-list {
    display: flex;
    gap: 14px;
    align-items: center;
    overflow-x: auto;
    padding: 6px 4px;
}

.rec-card {
    min-width: 180px;
    background: #fff;
    color: #111;
    padding: 12px;
    border-radius: 8px;
    text-align: left;
    box-shadow: var(--shadow);
}

.rec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.rec-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 6px;
}

.rec-price {
    font-weight: 700;
    margin-top: 8px;
}

.rec-moq {
    color: var(--color-muted);
    font-size: 13px;
}

/* Panels */
.panels-section {
    /* background: var(--color-section-bg); */
    padding: 28px;

}

.panels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0
}

.panel {
    background: var(--color-bg);
    padding: 18px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow)
}

.panel h2 {
    margin: 0 0 12px 0;
    font-size: var(--h2-size);
    font-weight: 600;
    color: var(--color-text)
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}


.panel-grid figure {
    margin: 0
}

.panel-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px
}

.panel-grid figcaption {
    font-size: var(--small-text);
    color: var(--color-text-secondary);
    padding: 6px 0
}

.panel.highlight {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.panel-feature img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px
}

/* Typography helpers */
h1 {
    font-size: var(--h1-size);
    font-weight: 700
}

h2 {
    font-size: var(--h2-size);
    font-weight: 600
}

h3 {
    font-size: var(--h3-size);
    font-weight: 600
}

.p-muted {
    color: var(--color-muted);
    font-size: 14px
}

a {
    color: var(--color-link);
    text-decoration: none
}

a:hover {
    color: var(--color-link-hover)
}

/* Make entire product cards clickable */
.card-link{ display:block; color:inherit; text-decoration:none }
.card-link:focus{ outline: 3px solid rgba(255,153,0,0.25); outline-offset:4px }
.card-link img{ display:block }
.card-link .deal-meta, .card-link .rec-price, .card-link .promo-price{ color:inherit }

/* Buttons utility */
.btn {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 14px
}

.btn:hover {
    background: var(--color-primary-hover)
}

/* Top Deals styles */
.deals-section {
    background: var(--color-bg);
    padding: 20px 20px 12px;
    border-radius: 8px;
    margin: 18px 0;

}

.deals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 8px 12px;
}

.deals-header h2 {
    margin: 0;
    font-size: 20px;
}

.deals-header .view-more {
    color: var(--color-text-secondary);
    font-weight: 600;
    text-decoration: none;
}

.deals-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 4px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.deals-list>* {
    scroll-snap-align: start
}

.top-ranking-list,
.promo-deals-list,
.recommended-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 4px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.top-ranking-list>*,
.promo-deals-list>*,
.recommended-list>* {
    scroll-snap-align: start
}

.list-wrap {
    position: relative;
}

.list-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5
}

.list-nav.prev {
    left: 8px
}

.list-nav.next {
    right: 8px
}

/* hide nav on small screens, allow swipe */
/* @media (max-width:700px) {
    .list-nav {
        display: none
    }
} */

/* make cards snap friendly */
.deal-card,
.rank-card,
.promo-deal,
.rec-card {
    scroll-snap-stop: always
}

.deal-card {
    min-width: 220px;
    max-width: 260px;
    background: var(--color-bg);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    padding: 10px;
    flex: 0 0 auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.deal-image {
    position: relative;
    height: 140px;
    border-radius: 6px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    left: 8px;
    top: 8px;
    background: linear-gradient(90deg, #ff7a5a, #ff5a3d);
    color: #fff;
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.price {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    align-items: baseline;
    flex-wrap: wrap;
}

.current {
    background: linear-gradient(90deg, #ff8a6b, #ff6347);
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.old {
    text-decoration: line-through;
    color: var(--color-muted);
    font-size: 13px;
}

.moq {
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 13px;
}

/* scrollbar styling */
.deals-list::-webkit-scrollbar {
    height: 8px;
}

.deals-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

@media (max-width:900px) {
    .deal-card {
        min-width: 200px;
    }
}

@media (max-width:600px) {
    .deal-card {
        min-width: 160px;
    }
}

/* Small screens */
@media (max-width: 900px) {
    .panels {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero {
        height: 260px
    }

    .hero h1 {
        font-size: 22px
    }
}

@media (max-width:600px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .main-nav ul {
        display: none
    }

    .panels {
        grid-template-columns: 1fr
    }

    .panel-grid img {
        height: 140px
    }

    .hero {
        height: 200px
    }
}

/* small utilities */
button {
    cursor: pointer
}

/* Footer styles */
.site-footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 28px 0 40px;
    margin-top: 28px;
}

.footer-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 18px;
}

.footer-col {
    flex: 1 1 180px;
    min-width: 160px;
}

.footer-heading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-heading h4 {
    margin: 0 0 8px 0;
    font-size: 16px
}

.footer-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links li {
    margin-bottom: 8px
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none
}

.footer-links a:hover {
    color: var(--color-link)
}

.footer-payments .payments-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px
}

.pay-badge {
    background: #fff;
    border-radius: 6px;
    padding: 6px 8px;
    border: 1px solid var(--color-border);
    font-weight: 700
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 13px
}

.footer-bottom .footer-link {
    color: var(--color-text-secondary);
    text-decoration: none
}

.socials {
    margin-top: 12px
}

.socials a {
    margin-right: 8px;
    text-decoration: none;
    font-size: 18px
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 22px;
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

/* Collapsible footer lists on small screens */
@media (max-width:700px) {
    .footer-grid {
        flex-direction: column
    }

    .footer-toggle {
        display: inline-block
    }

    .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.28s ease
    }

    .footer-links.open {
        max-height: 400px
    }
}

img {
    display: block;
    max-width: 100%
}

.footer {
    background: #f7f7f7;
    padding: 40px 60px;
    color: #333;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: #ff6a00;
}

.mt {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-icons i {
    font-size: 16px;
    cursor: pointer;
    color: #555;
}

.social-icons i:hover {
    color: #ff6a00;
}

/* Payments */
.payments {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.payments img {
    height: 24px;
    object-fit: contain;
}

/* Actions */
.footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.lens-btn {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.lens-btn i {
    margin-right: 6px;
}

.right {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.right img {
    height: 36px;
}

.left{
    display: flex;
    flex-direction:row;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.left img {
    height: 36px;

}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 12px;
    color: #777;
}

.footer-bottom p {
    margin-bottom: 6px;
}

.user-profile-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-link:hover {
    color: var(--color-100);
}

.logout-mini-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
}

.logout-mini-btn:hover {
    background: #ff4d4d;
    border-color: #ff4d4d;
}