
/* --- Offcanvas Mobile Menu Styles --- */
.mobile-menu-offcanvas {
    position: fixed;
    top: 0;
    left: -300px; /* Initially off-screen */
    width: 300px; /* Width of the offcanvas menu */
    height: 100%;
    background-color: #363636; /* Dark background as per image */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease-in-out; /* Smooth slide-in/out */
    z-index: 1050; /* Above most content */
    overflow-y: auto; /* Enable scrolling for long content */
    display: flex; /* Use flexbox for internal layout */
    flex-direction: column;
}

.mobile-menu-offcanvas.open {
    left: 0; /* Slide into view */
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #2b2b2b; /* Slightly darker header background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-header .close-btn {
    background: none;
    border: none;
    color: #f1f1f1;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

.menu-header .menu-logo {
    height: 30px; /* Adjust logo size in menu header */
}

.menu-header .menu-cart-btn {
    background-color: #444; /* Darker cart button in menu */
    color: #f1f1f1;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.9rem;
}

.menu-search-bar {
    position: relative;
    padding: 15px;
    background-color: #363636;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 15px; /* Space for icon */
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #444; /* Darker input background */
    color: #f1f1f1;
}

.search-input::placeholder {
    color: #aaa;
}

.search-input:focus {
    border-color: #B1DC44;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(177, 220, 68, 0.25);
}

.search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #f1f1f1;
    cursor: pointer;
    font-size: 1.1rem;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Allows the list to take remaining space */
}

.menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.menu-link:hover {
    background-color: #444; /* Darker on hover */
    color: #B1DC44; /* Green accent on hover */
}

.menu-link i {
    margin-left: 10px;
    color: #aaa; /* Icon color */
}

/* Specific styles for "Shop" and "Discover" dropdowns */
.menu-item.has-dropdown .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; /* Hidden by default */
    background-color: #444; /* Submenu background */
}

.menu-item.has-dropdown .submenu.show {
    display: block; /* Shown when active */
}

.menu-item.has-dropdown .submenu li a {
    padding: 10px 15px 10px 30px; /* Indent submenu items */
    color: #ddd;
    display: block;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.menu-item.has-dropdown .submenu li a:hover {
    background-color: #555;
    color: #B1DC44;
}

.platinum-points-cta {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.platinum-points-btn {
    width: 100%;
    background-color: #B1DC44; /* Green button */
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.platinum-points-btn:hover {
    background-color: #a0cb30;
}

.platinum-points-btn i {
    color: #1a1a1a;
}


/* --- Overlay Styles --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1040; /* Below the menu, above content */
    display: none; /* Hidden by default */
}

.mobile-menu-overlay.show {
    display: block; /* Shown when menu is open */
}

/* Hide the offcanvas menu and overlay on desktop */
@media (min-width: 768px) {
    .mobile-menu-offcanvas,
    .mobile-menu-overlay {
        display: none !important;
    }
}









.paragraph {
  font-size: 1rem;
  color: #bbb;
}

.form-control,
.form-select {
  background-color: #2c2c2c;
  color: #fff;
  border: 1px solid #444;
}

.form-control::placeholder {
  color: #888;
  font-size: 14px;
}

textarea.form-control {
  resize: vertical;
}
.btnn{
  border: none;
  border-radius: 30px;
  padding: 10px;
  background-color: rgb(118, 118, 118);
}
.btnn:hover{
  background-color: #bed97a;
  color: black;
}
.form-control:focus,
select.form-control:focus {
  border-color: #def078;
  box-shadow: 0 0 0 0.2rem rgba(177, 220, 68, 0.25);
}

/* Toggle Switch */
.switchToggle {
  position: relative;
}
.switchToggle input {
  display: none;
}
.switchToggle label {
  display: block;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.switchToggle label::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: 0.3s;
}
.switchToggle input:checked + label {
  background: #B1DC44;
}
.switchToggle input:checked + label::after {
  left: 26px;
}

.form-control-file {
    display: block;
    width: 100%;
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: gray;
    background-color: white;
    background-clip: padding-box;
    border: 1px solid #444;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-file::file-selector-button {
    background-color: transparent;
    color: black;
    font-weight: 600;
    border: none;
    margin-right: 1rem;
    border-radius: 0.2rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.form-control-file::file-selector-button:hover {
    background-color: #555;
    color: #fff;
}

.form-control-file:focus {
    border-color: #B1DC44;
    box-shadow: 0 0 0 0.2rem rgba(177, 220, 68, 0.4);
    outline: none;
}

.form-group label {
    margin-bottom: 0.5rem;
    display: block;
    color: #ccc;
    font-weight: 500;
}






.outerDivFull {
    margin-bottom: 30px;
}

.outerDivFull h5 {
    color: #4d4d4d;
    margin-bottom: 0;
    font-weight: 500;
}

.switchToggle input[type=checkbox]{
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
}
.switchToggle label {
    cursor: pointer;
    text-indent: -9999px;
    width: 70px;
    max-width: 70px;
    height: 30px;
    background: #9f9f9f;
    display: block;
    border-radius: 100px;
    position: relative;
}
.switchToggle label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: #494949;
    border-radius: 90px;
    transition: 0.3s;
}
.switchToggle input:checked + label, .switchToggle input:checked + input + label {
    background: #f0ff80;
    color: black;
}
.switchToggle input + label:before, .switchToggle input + input + label:before {
    content: 'No';
    position: absolute;
    top: 5px;
    left: 35px;
    width: 26px;
    height: 26px;
    border-radius: 90px;
    transition: 0.3s;
    text-indent: 0;
    color: #f0ff80;
}
.switchToggle input:checked + label:before, .switchToggle input:checked + input + label:before {
    content: 'Yes';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 26px;
    height: 26px;
    border-radius: 90px;
    transition: 0.3s;
    text-indent: 0;
    color: #494949;
}
.switchToggle input:checked + label:after, .switchToggle input:checked + input + label:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
}
.switchToggle label:active:after {
    width: 60px;
}

.form-group label {
    color: #050505;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    color: #495057;
    padding: 10px 15px;
    border-radius: 5px;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control:focus {
    background-color: #e9ecef;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-group-prepend .input-group-text {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    color: #495057;
}

.fab-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-weight: bold;
    background-color: #cedd5d;
    color: black;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.fab-button:hover {
    background-color: #b3c54d;
    color: rgb(22, 22, 22);
    text-decoration: none;
}

.fab-button img {
    height: 20px;
    margin-right: 8px;
} 




.footer {
    font-family: "Michroma", sans-serif;
    background-color: #f2f2f2;
    color: #1f1f1f;
      font-weight: bold;
}

.footer a {
    color: #343434;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.footer a:hover {
    color: #b3c54d;
    text-decoration: none;
}

.footer__blocks-wrapper .footer-block {
    margin-bottom: 2rem;
}

.footer-accordion__tab {
    cursor: pointer;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-accordion__tab:hover {
    opacity: 0.8;
}

.footer-block__heading {
    font-weight: bold;
    color: #343434;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-block__heading-icon svg {
    transition: transform 0.3s ease-in-out;
}

.footer-block__heading-icon svg.rotate-icon {
    transform: rotate(180deg);
}

.footer-accordion__content {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer-accordion__content .list-unstyled li {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .footer-accordion__tab {
        pointer-events: none;
        border-bottom: none;
    }
    .footer-accordion__tab .footer-block__heading-icon {
        display: none;
    }
    .footer-accordion__content.collapse {
        display: block !important;
        height: auto !important;
    }
}

.list-social {
    display: flex;
    padding-left: 0;
}

.list-social__item {
    margin-right: 1.5rem;
}

.list-social__link svg {
    width: 24px;
    height: 24px;
    color: #343434;
    transition: color 0.3s ease;
}

.list-social__link:hover svg {
    color: #cedd5d;
}

.social-mobile {
    display: block;
}
.social-desktop {
    display: none;
}

@media (min-width: 768px) {
    .social-mobile {
        display: none !important;
    }
    .social-desktop {
        display: block !important;
    }
    .footer__blocks-wrapper .footer-block {
        margin-bottom: 0;
    }
}

.button--accessibility {
    background-color: transparent;
    border: 1px solid #f8f9fa;
    color: #343434;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.button--accessibility:hover {
    background-color: #343434;
    color: #333;
    border-color: #343434;
}

.button--accessibility svg {
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
    color: #343434;
}

.button--accessibility:hover svg {
    color: #333;
}

.footer-block__warranty-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .footer-block__warranty-section {
        align-items: flex-start;
        text-align: left;
    }
}

.footer-block__warranty-section img {
    max-width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-block__warranty-box p {
    margin-bottom: 0.5rem;
}

.footer-block__warranty-box strong {
    font-weight: bold;
}

.footer-block__warranty-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-block--video {
    position: relative;
    width: 100%;
}

.footer-block--video-wrapper {
    position: relative;
    padding-top: 19.55%;
    overflow: hidden;
}

.footer-block--video__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-block--video-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-block--middle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-block--middle-content {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
    }
}

.footer-block--copy-rich-text,
.footer-block--copy-bottom {
    font-size: 0.9rem;
    color: rgba(26, 26, 26, 0.6);
}

.footer-block--copy-rich-text p,
.footer-block--copy-bottom p {
    margin-bottom: 0;
}

.effect-hover {
  color: black;
  transition: color 0.3s ease;
}

.effect-hover:hover {
  color: #bed97a;
}