/* Existing styles */
.ch-body {
    font-family: var(--font-family);
    margin: 0;
    padding-top: 0;
}

.ch-top-header {
    background-color: var(--color-secondary);
    padding: 5px 50px;
    margin-bottom: 10px;
}

.ch-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-bottom: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
}

.ch-header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
}

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

.ch-shop-name {
    display: block;
    text-align: center;
    width: 100%;
    color: var(--color-white);
    font-size: 1.5rem;
}

.ch-shop-name-responsive {
    display: none;
}

.ch-brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10001;
}

.ch-brand-link h3 {
    color: var(--color-white);
}

.ch-brand-link img {
    max-width: 150px;
    height: auto;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.ch-header.scrolled .ch-brand-link img {
    max-width: 150px;
}

.ch-brand-link h3 {
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.ch-header.scrolled .ch-brand-link h3 {
    font-size: 1.3rem;
}

/* Dropdown Menu Styles */
.ch-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--color-secondary);
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 10px !important;
    border: none;
    padding: 8px 0;
}

.dropdown.show .ch-dropdown-menu {
    display: block;
}

.ch-dropdown-item {
    padding: 10px 15px;
    color: var(--color-white);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ch-dropdown-item:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.ch-dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Store Dropdown Specific Styles */
.store-dropdown {
    min-width: 220px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .ch-dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 1px;
}

.dropdown-submenu:hover > .ch-dropdown-menu {
    display: block;
}

.dropdown-submenu > .ch-dropdown-item.dropdown-toggle {
    position: relative;
    padding-right: 30px;
}

.dropdown-submenu > .ch-dropdown-item.dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.dropdown-submenu:hover > .ch-dropdown-item.dropdown-toggle::after {
    border-left-color: var(--color-white);
}

/* Contact Info Styles */
.ch-contact-info {
    color: #fff;
}

.ch-contact-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 5px;
}

.ch-contact-icon {
    margin-right: 5px;
    font-size: 1rem;
}

.ch-phone-number {
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--color-white);
}

/* Navbar Styles */
.ch-navbar {
    padding: 0;
}

.ch-navbar-nav {
    margin-top: 10px;
    margin-left: auto;
}

.ch-nav-link {
    color: var(--color-white);
    padding: 10px 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-right: 5px;
}

.ch-nav-link:hover,
.ch-nav-link:focus {
    color: var(--color-white);
    background-color: var(--color-secondary);
    border-radius: 5px;
}

/* Button Styles */
.ch-btn {
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.ch-btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.ch-btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.ch-btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.ch-btn-secondary:hover {
    background-color: var(--color-secondary-dark);
    transform: translateY(-2px);
}

/* Social Icons */
.ch-social-icons {
    display: flex;
    justify-content: flex-end;
}

.ch-social-icons a {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.ch-social-icons a:hover {
    color: var(--color-primary);
    transform: scale(1.2);
}

/* Navbar Toggler */
.ch-navbar-toggler {
    border: none;
    background-color: transparent;
    color: #fff;
}

.ch-navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Styles */
@media (max-width: 1200px) {
    .hero-section {
        height: 80vh;
    }
}

@media (max-width: 991px) {
    .ch-logo-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .ch-logo-col {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .ch-logo-img {
        display: block;
        margin-left: 3%;
    }

    .ch-shop-name {
        display: block;
        text-align: center;
        width: 100%;
        color: var(--color-white);
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .ch-shop-name-responsive {
        display: none;
    }

    .ch-brand-link {
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .ch-navbar-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .ch-navbar-toggler {
        margin: -10px auto;
    }

    .ch-navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .ch-dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        text-align: center;
    }

    /* Mobile Submenu Styles */
    .dropdown-submenu > .ch-dropdown-menu {
        position: static;
        margin: 0;
        padding-left: 20px;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
    }

    .dropdown-submenu > .ch-dropdown-item.dropdown-toggle::after {
        transform: rotate(90deg);
        top: 45%;
    }

    .dropdown-submenu.show > .ch-dropdown-item.dropdown-toggle::after {
        transform: rotate(-90deg);
    }
}

@media (max-width: 767px) {
    .ch-top-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ch-contact-info-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .ch-contact-info,
    .ch-social-icons {
        flex: 1;
        text-align: center;
    }

    .ch-contact-line {
        font-size: 0.9em;
    }

    .ch-phone-number {
        display: block;
        margin-top: 5px;
    }

    .ch-logo-col {
        margin-bottom: 10px;
    }

    .ch-logo-img {
        text-align: center;
        margin-bottom: 15px;
        max-width: 150px;
        height: auto;
    }

    .ch-navbar {
        padding: auto;
    }

    .ch-navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .ch-brand-link {
        margin: auto;
    }

    .ch-navbar-toggler {
        margin: auto;
        margin-top: -20px;
    }

    .ch-nav-link:last-child {
        border-bottom: none;
    }

    .ch-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .ch-dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 610px) {
    .ch-contact-info {
        text-align: left;
        flex: 1;
    }

    .ch-social-icons {
        flex: 1;
        text-align: left;
        margin-bottom: auto;
    }

    .ch-top-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 20px;
    }

    .ch-contact-info-wrapper {
        order: 1;
        flex-grow: 1;
        margin-right: 10px;
    }

    .ch-contact-line {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .ch-contact-text {
        font-size: 1rem;
        font-weight: normal;
        margin-bottom: 5px;
        color: #fff;
    }

    .ch-phone-number {
        font-size: 1.2rem;
        font-weight: bold;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        color: #fff;
    }
}