/* Daniel's Custom Styles */

/* =================================
   HEADER - CONTACT BAR
   ================================= */
.contact-bar {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

header {
    padding-top: 0 !important;
}

.contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    color: #333;
}

.contact-details {
    display: flex;
    gap: 25px;
}

/* Why us section */
.contact-why-us {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: #000;
    justify-content: center;
    padding: 10px 0;
}

.contact-why-us .why-item {
    font-size: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-why-us .why-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    padding: 2px;
    border-radius: 8px;
}

/* Social icons in contact bar */
.contact-info .socials-container {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 30px;
}

.contact-info .socials-container a {
    display: inline-flex;
    align-items: center;
}

.contact-info .socials-container img {
    width: 25px;
    height: 25px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.contact-info .socials-container a:hover img {
    opacity: 1;
}

.contact-item {
    font-size: 14px;
    color: #666;
}

.contact-item strong {
    color: #333;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-bar .login-bar {
    margin: 0;
}

.contact-bar .links {
    margin: 0;
}

/* =================================
   MAIN HEADER
   ================================= */
.main-header {
    display: flex;
    align-items: center;
    padding: 20px 0;
    justify-content: space-between;
    background: #fff;
    padding-bottom: 5px;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-header .search-wrapper form {
    margin: 0;
}

/* Logo */
.logo-wrapper {
    flex: 0 0 auto;
}

.logo-wrapper .link-logo img {
    max-height: 60px;
    width: auto;
}

/* Search */
.search-wrapper {
    flex: 1 1 auto;
    max-width: 900px;
    margin: 0 30px;
}

.free-delivery-absolute-container {
    text-align: right;
}

.free-delivery-absolute-container strong {
    color: rgb(204, 0, 0);
}

.search-wrapper .search-form {
    width: 100%;
}

.search-wrapper .search-form fieldset {
    display: flex;
    gap: 10px;
    border: none;
    padding: 0;
    margin: 0;
}

.search-wrapper .search-input {
    flex: 1;
    padding: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.search-wrapper .search-input:focus {
    outline: none;
    border-color: #333;
}

.search-wrapper .search-btn {
    padding: 10px 25px;
    white-space: nowrap;
}

/* Action Icons */
.action-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.action-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 5px;
}

.action-icon img {
    width: 24px;
    height: 24px;
}

.action-icon .icon-label {
    font-size: 12px;
    color: #333;
    text-transform: uppercase;
    font-weight: 500;
}

.action-icon:hover .icon-label {
    color: #000;
    text-decoration: none;
}
header .logo-bar .basket img,
header .empty-basket .countlabel {
    display: none;
}

header .cart-price {
    margin-top: 30px;
}
/* =================================
   MENU
   ================================= */
.menu-wrapper {
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
}

header .menu {
    margin-top: 0;
}

.menu.version-4 .innermenu .menu-list ul.level1 {
    left: 50% !important;
    transform: translateX(-50%);
}

/* Make sure parent container is relatively positioned */
.menu.version-4 .innermenu {
    position: relative;
}

.menu.version-4 .innermenu .parent {
    position: static;
}

.menu.version-4 .innermenu .parent > div.submenu {
    position: static;
}

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

/* Desktop Only - Hide mobile elements */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* Mobile menu icon override */
@media screen and (max-width: 767px) {
    header.row .innermenu .menu-mobile .menu-mobile-li .fa-phone {
        background-color: transparent;
        position: relative;
    }

    header.row .innermenu .menu-mobile .menu-mobile-li .fa-phone:before {
        content: "\f095";
        font-family: FontAwesome;
        color: #fff;
        font-size: 25px;
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Mobile Only - Hide desktop elements and adjust layout */
@media (max-width: 768px) {
    /* Hide desktop elements */
    .desktop-only {
        display: none !important;
    }
    header .action-icons {
        display: none !important;
    }
    .contact-text {
        display: none !important;
    }

    /* Hide contact labels on mobile */
    .contact-label {
        display: none !important;
    }

    /* Hide email item completely on mobile */
    .email-item {
        display: none !important;
    }

    /* Mobile why-us rotating display */
    .contact-why-us {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 25px;
    }

    .contact-why-us.mobile-rotating {
        position: relative;
    }

    .contact-why-us.mobile-rotating .why-item {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        justify-content: center;
    }

    /* Mobile header adjustments */
    .contact-bar {
        padding: 5px 0;
    }

    .contact-bar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .contact-info {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .contact-details {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .contact-details .contact-item {
        display: flex;
        align-items: center;
    }

    /* Main header mobile */
    .main-header {
        padding: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-wrapper {
        display: flex;
        align-items: center;
    }

    .logo-wrapper .link-logo img {
        max-height: 40px;
    }

    /* Social icons on mobile - in logo wrapper */
    .logo-wrapper .socials-container {
        margin-left: 20px;
        display: flex !important;
        gap: 20px;
    }

    .logo-wrapper .socials-container img {
        width: 20px;
        height: 20px;
    }

    /* Login bar mobile */
    .contact-bar .login-bar {
        display: none;
    }

    .contact-bar .login-bar .links {
        display: flex;
        gap: 10px;
        margin: 0;
        padding: 0;
    }

    .contact-bar .login-bar .links li {
        list-style: none;
    }

    .contact-bar .login-bar .links a {
        font-size: 12px;
    }
    .free-delivery-absolute-container {
        text-align: center;
    }
    .daniel-menu {
        padding: 0;
    }
}

/* PRODUCT PAGE  */

.shop_product .innermain.container #box_description .innerbox .resetcss p {
    text-align: left !important;
}
