/**
 * Desktop-specific customizations
 */

/* Add margins to header and footer on desktop */
@media (min-width: 768px) {
    .top-header-inner,
    .mh-container,
    .footer-widgets-container,
    .footer-bottom-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    /* Fix payment images size in footer - make them smaller */
    .payment-icons img {
        max-width: 30px !important;
        height: auto !important;
        width: auto !important;
    }

    /* Style footer menus properly */
    .footer-menu {
        display: block !important;
        padding-left: 0 !important;
    }
    
    .footer-menu li {
        margin-bottom: 10px !important;
    }
    
    .footer-menu li a {
        color: #a0a0a0 !important;
        transition: color 0.3s ease !important;
        text-decoration: none !important;
        font-size: 14px !important;
    }
    
    .footer-menu li a:hover {
        color: var(--primary-color) !important;
    }
}

/* Announcement bar below top header */
.announcement-bar {
    background-color: #fff5e5;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #ffe0b2;
}

.announcement-bar .container {
    padding-left: 30px;
    padding-right: 30px;
}

/* Enhance dropdown content for desktop */
@media (min-width: 768px) {
    #primary-menu > li > .sub-menu {
        min-width: 220px;
        padding: 15px 0;
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    #primary-menu > li:hover > .sub-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    #primary-menu > li > .sub-menu > li > a {
        padding: 8px 20px;
        display: block;
        color: #333;
        font-size: 14px;
        transition: all 0.3s ease;
        position: relative;
    }

    #primary-menu > li > .sub-menu > li > a:hover {
        background-color: #f9f9f9;
        color: var(--primary-color);
        padding-left: 25px;
    }
    
    #primary-menu > li > .sub-menu > li > a:before {
        content: '';
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    #primary-menu > li > .sub-menu > li > a:hover:before {
        width: 5px;
        opacity: 1;
    }
}
