/* ============================================
   ANDORA LAB - Premium Header & Navigation
   Designer: Professional Frontend Developer
   ============================================ */

:root {
    --primary-orange: #FF6B35;
    --secondary-orange: #FF8C42;
    --dark-orange: #E85D2A;
    --light-orange: #FFB499;
    --dark-bg: #1A1A2E;
    --darker-bg: #0F0F1E;
    --text-dark: #2D2D2D;
    --text-light: #FFFFFF;
    --text-gray: #6B7280;
    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.1);
    --shadow-md: 0 4px 20px rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 10px 40px rgba(255, 107, 53, 0.2);
    --shadow-xl: 0 20px 60px rgba(255, 107, 53, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
}

.container {
    overflow: visible !important;
}

.hero-section .container {
    overflow: visible !important;
}

section, header, footer, main, article, nav {
    max-width: 100%;
    overflow-x: hidden;
}

/* ============================================
   TOPBAR - Premium Orange Design
   ============================================ */

.topbar {
    background: linear-gradient(100deg, 
        #DC2626 0%, 
        #E63946 20%,
        #EF4444 35%,
        #F97316 55%, 
        #FB923C 70%, 
        #FBBF24 100%);
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-light);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
    position: relative;
    overflow: hidden;
}

.topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.1); }
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.topbar-left {
    display: flex;
    gap: 30px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.topbar-item i {
    font-size: 16px;
    opacity: 0.9;
}

.topbar-item:hover {
    transform: translateY(-2px);
}

.topbar-right {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.social-link:hover {
    background: var(--text-light);
    color: var(--primary-orange);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   MAIN NAVBAR - Ultra Premium Design
   ============================================ */

.navbar-custom {
    background: var(--text-light);
    padding: 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

.navbar-custom.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 5px 0;
}

.navbar-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    width: 100%;
    min-height: 70px;
    position: relative;
    overflow: visible;
}

/* Logo Styling */
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 3px 12px rgba(255, 107, 53, 0.2));
}

.navbar-logo:hover img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 6px 20px rgba(255, 107, 53, 0.4));
}

/* Desktop Navigation */
.navbar-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    overflow: visible;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
    overflow: visible;
}

.nav-item {
    position: static;
    display: inline-block;
    overflow: visible;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 22px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

/* Dropdown Styling - Bootstrap Integration */
.dropdown {
    position: relative;
    overflow: visible;
}

.dropdown-toggle {
    gap: 6px;
    overflow: visible;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown.show .dropdown-toggle i,
.dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 10px !important;
    background: white;
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 8px;
    min-width: 200px;
    list-style: none;
    z-index: 9999 !important;
    transform: none !important;
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(255, 107, 53, 0.08);
    color: var(--primary-orange);
    padding-left: 20px;
}

/* Call-to-Action Button */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-order {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(120deg, #DC2626 0%, #F97316 50%, #FB923C 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
    color: var(--text-light);
}

.btn-order i {
    font-size: 18px;
}

@keyframes cartBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   MOBILE MENU - Ultra Premium Slide-in
   ============================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F2 100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu.active {
    right: 0;
}

/* Custom Scrollbar for Mobile Menu */
.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 107, 53, 0.1);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 3px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(100deg, 
        #DC2626 0%, 
        #E63946 20%,
        #EF4444 35%,
        #F97316 55%, 
        #FB923C 70%, 
        #FBBF24 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    animation: logoSlideIn 0.5s ease forwards;
}

@keyframes logoSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-close:hover {
    background: var(--text-light);
    color: var(--primary-orange);
    transform: rotate(90deg);
}

.mobile-menu-body {
    padding: 30px 25px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 5px;
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}

.mobile-menu.active .mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-nav-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav-item:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-nav-item:nth-child(5) { animation-delay: 0.3s; }

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #DC2626 0%, #F97316 50%, #FB923C 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    left: 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-light);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.mobile-nav-link i {
    font-size: 20px;
    width: 25px;
}

.submenu-arrow {
    margin-left: auto;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.has-submenu.active .submenu-arrow {
    transform: rotate(90deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 45px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-submenu.active .mobile-submenu {
    max-height: 300px;
}

.submenu-link {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
}

.mobile-menu-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed rgba(255, 107, 53, 0.2);
}

.btn-order-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(120deg, #DC2626 0%, #F97316 50%, #FB923C 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.btn-order-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
    color: var(--text-light);
}

.btn-order-mobile i {
    font-size: 20px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 28px;
    margin-bottom: 25px;
}

.mobile-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #DC2626 0%, #F97316 50%, #FB923C 100%);
    color: var(--text-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.mobile-social-link:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: var(--shadow-md);
}

.mobile-social-link i {
    font-size: 20px;
}

.mobile-contact {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
}

.mobile-contact p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-contact i {
    color: var(--primary-orange);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1199px) {
    .navbar-nav {
        gap: 2px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .topbar-left {
        gap: 20px;
    }
    
    .topbar-item span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .topbar-left {
        gap: 15px;
    }
    
    .topbar-item {
        gap: 6px;
    }
    
    .topbar-item i {
        font-size: 14px;
    }
    
    .topbar-item span {
        font-size: 12px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .navbar-logo img {
        height: 28px;
    }
    
    .btn-order {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-order span {
        display: none;
    }
    
    .btn-order i {
        font-size: 20px;
    }
    
    .mobile-menu {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .topbar-item:first-child {
        display: none;
    }
    
    .topbar-left {
        gap: 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-wrapper {
        padding: 12px 0;
    }
}

/* ============================================
   SCROLL ANIMATIONS & INTERACTIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
    .navbar-custom,
    .nav-link,
    .dropdown-menu,
    .btn-order,
    .mobile-menu,
    .social-link {
        will-change: transform;
    }
}

/* Loading Animation for Logo */
@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.15));
    }
    50% {
        filter: drop-shadow(0 4px 16px rgba(255, 107, 53, 0.4));
    }
}

.navbar-logo img {
    animation: logoGlow 3s ease-in-out infinite;
}

/* Hover Effect for Navigation Items */
.nav-link {
    position: relative;
    z-index: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    border-radius: 50%;
}

.nav-link:hover::after {
    width: 200px;
    height: 200px;
}

/* Premium Gradient Text Effect */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nav-link.active {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.05), rgba(255, 107, 53, 0.05));
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* ============================================
   ADDITIONAL PREMIUM EFFECTS
   ============================================ */

/* Mobile Menu Entrance Animation */
.mobile-menu.active {
    right: 0;
}

/* Topbar Icon Pulse */
.topbar-item:hover {
    opacity: 0.9;
}

/* Navigation Link Shine Effect */
@keyframes shine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 100%;
    }
}

.nav-link {
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.nav-link:hover::after {
    animation: shine 1.5s ease;
}

/* Mobile Menu Footer Fade In */
.mobile-menu-footer {
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.mobile-menu.active .mobile-menu-footer {
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

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

/* Loading Bar Effect */
.navbar-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange), var(--primary-orange));
    background-size: 200% 100%;
    transition: width 0.3s ease;
}

.navbar-custom.scrolled::after {
    width: 100%;
    animation: gradientSlide 2s ease infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* Social Links - Clean Design */

/* Button Glow Effect */
.btn-order:hover,
.btn-order-mobile:hover {
    opacity: 0.95;
}

/* Navbar Logo Hover */
.navbar-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.3));
}

/* Dropdown Menu Arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

/* Mobile Menu Backdrop Pattern */
.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 107, 53, 0.03) 10px,
            rgba(255, 107, 53, 0.03) 20px
        );
    pointer-events: none;
}

/* Topbar Animated Underline */
.topbar-item {
    position: relative;
}

.topbar-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
}

.topbar-item:hover::after {
    width: 100%;
}

/* Preloader for smooth page transitions */
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.page-transition::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

/* Enhanced Mobile Social Links */
.mobile-social-link {
    position: relative;
    overflow: hidden;
}

.mobile-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.3s ease;
}

.mobile-social-link:hover::before {
    left: 100%;
}

/* Fancy Scrollbar for Webkit Browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #FFF5F2, #FFFFFF);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 6px;
    border: 2px solid #FFF5F2;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--dark-orange), var(--primary-orange));
}

/* Text Selection Styling */
::selection {
    background: var(--primary-orange);
    color: white;
}

::-moz-selection {
    background: var(--primary-orange);
    color: white;
}

/* Focus Visible Styles for Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
    border-radius: 4px;
}
