/* Safari-specific fixes */
@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        /* Safari-specific styles for select elements */
        select {
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
            background-repeat: no-repeat;
            background-position: calc(100% - 15px) center;
            padding-right: 35px !important;
        }
        
        /* Safari-specific styles for buttons */
        .btn, 
        .popup-submit, 
        .order-form button {
            -webkit-appearance: none;
            -webkit-transform: translateZ(0);
        }
        
        /* Safari-specific fixes for mobile menu */
        @media (max-width: 768px) {
            .menu-toggle {
                -webkit-appearance: none;
                margin-left: 10px;
            }
            
            .cta-buttons {
                right: 55px;
            }
            
            .header-container {
                display: -webkit-flex;
                -webkit-justify-content: space-between;
                -webkit-align-items: center;
            }
        }
    }
} 