body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Public Sans", sans-serif;
    font-size: 0.854rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 0;
}

h3 {
    font-size: calc(16px + 1vw);
}

p {
    margin-bottom: 0;
}

input::placeholder {
    font-size: 0.854rem;
    font-weight: 500;
}

.breadcrumbs-area {
    background-color: #ffffff;
    padding: 30px 0;
}

.breadcrumbs-area .flex-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.breadcrumbs-area .flex-inner .right {
    display: flex;
    gap: 1.5rem;
}

.breadcrumbs-area ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 1rem;
}

.breadcrumbs-area ul li a {
    color: #848484;
    text-decoration: none;
}

.breadcrumbs-area .right a.btn {
    text-decoration: none;
    width: max-content;
    padding: 8px 20px;
    border-radius: 4px;
    background-color: #277e30;
    color: #ffffff;
}

.breadcrumbs-area .right .price-area div {
    text-align: center;
}

.breadcrumbs-area .right .price-area div span {
    text-decoration: line-through;
}

.breadcrumbs-area .right .price-area div h6 {
    margin: 0;
    color: #277e30;
    font-weight: 600;
}

.breadcrumbs-area .right .price-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breadcrumbs-area .right .price-area div p {
    margin: 0;
}

.dropdown-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.dropdown-area>* {
    margin: 0;
}

.dropdown-area .custom-select {
    position: relative;
    width: max-content;
}

.dropdown-area .selected {
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: #f1f1f1;
    position: relative;
    padding-right: 25px;
    border-radius: 4px;
}

.dropdown-area .selected::after {
    content: "\f0d7";
    font-family: "fontAwesome";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    color: #666;
    pointer-events: none;
}

.dropdown-area .options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-top: none;
    background: #fff;
    display: none;
    z-index: 999;
}

.dropdown-area .option {
    padding: 10px;
    cursor: pointer;
}

.dropdown-area .option:hover {
    background: #f0f0f0;
}

.container-fluid {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 15px;
}

.view-all-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.view-all-area .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.view-all-area .right a {
    color: #452e73;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.view-all-area .right .owl-nav {
    gap: 1rem;
    display: flex;
}

.view-all-area .right .owl-nav button {
    background-color: #452e73;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 0;
}

.view-all-area .right .owl-nav button.owl-prev:disabled,
.view-all-area .right .owl-nav button.owl-next:disabled {
    background: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
}

.view-all-area .right .owl-nav button svg {
    width: 100%;
    color: #fff;
}

span.text-green {
    color: #277e30;
    font-weight: 600;
}

.bg-gray {
    background-color: #f1f1f1;
}

.rating-area .checked {
    color: orange;
}

.form-area .form-inner-area {
    background-color: #EDEAF2;
    padding: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: space-around;
}

.form-area .form-inner-area .text-area {
    flex: 1 1 70%;
    max-width: 70%;
}

.form-area .form-inner-area .text-area h4,
.form-area .form-inner-area .text-area p {
    max-width: 60%;
    font-weight: 600;
}

.form-area .form-inner-area .form-card {
    width: 100%;
    flex: 1 1 30%;
    max-width: 30%;
}

.form-area .form-inner-area .form-card input {
    border: 1px solid #ececec;
}

.form-area .form-inner-area .form-card input:focus {
    box-shadow: none;
}

.form-area .form-inner-area .form-card a {
    text-decoration: none;
    width: 100%;
    padding: 8px 20px;
    border-radius: 4px;
    background-color: #452e73;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* #chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #452e73;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
}

#chat-box {
    display: flex;
    flex-direction: column;
    height: 550px;
    /* or any desired height *
    width: 450px;
    /* optional *
    border: 1px solid #ccc;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

#chat-header {
    background: #452e73;
    color: white;
    padding: 10px;
    font-weight: bold;
}

#chat-content {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#chat-input {
    border-top: 1px solid #ccc;
    padding: 10px;
    border: none;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.bot,
.user {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 16px;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
}

.bot {
    align-self: flex-start;
    background-color: #f1f0f0;
    color: #333;
    border-bottom-left-radius: 0;
}

.user {
    align-self: flex-end;
    background-color: #452e73;
    color: white;
    border-bottom-right-radius: 0;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-self: flex-start;
    margin-top: 5px;
}

.chat-options button {
    padding: 8px 12px;
    background: #eeeeee;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s ease;
}

.chat-options button:hover {
    background: #ccc;
}

.chat-link {
    display: block;
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #452e73;
    font-weight: 500;
    align-self: flex-start;
    margin-top: -4px;
}

.chat-link:hover {
    background: #e6f0ff;
}

.grievance-form {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f9f9f9;
    border-radius: 12px;
    margin: 10px;
}

.grievance-form .form-group {
    display: flex;
    flex-direction: column;
}

.grievance-form input,
.grievance-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.grievance-form input:focus,
.grievance-form textarea:focus {
    border-color: #452e73;
}

.grievance-form button {
    background: #452e73;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.grievance-form button:hover {
    background: #5d3e8e;
}

@keyframes blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; }
    100% { opacity: 0.2; }
}

.typing-dots span {
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
} */

#chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #452e73;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background 0.3s ease;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chat-icon:hover {
    background: #5d3e8e;
}

#chat-box {
    display: flex;
    flex-direction: column;
    height: 550px;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: transform 0.3s ease;
}

#chat-header {
    /* background: #452e73;
    color: white;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #3a2561; */
    display: flex;
    align-items: center;
    background-color: #452e73;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

#chat-header img.chat-logo {
    height: 24px;
    width: 24px;
    margin-right: 10px;
    border-radius: 50%;
}

#chat-content {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: #f9f9f9;
}

#chat-input {
    padding: 12px 14px;
    border: none;
    border-top: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

.bot,
.user {
    max-width: 80%;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    word-break: break-word;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.bot {
    align-self: flex-start;
    background-color: #277e30;
    color: #fff;
    border-bottom-left-radius: 4px;
}

.user {
    align-self: flex-end;
    background-color: #452e73;
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.chat-options button {
    padding: 8px 12px;
    background: #f0f0f0;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s ease;
}

.chat-options button:hover {
    background: #dcdcdc;
}

/* .chat-link {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 14px;
    background: #f0f6ff;
    border: 1px solid #d0e3ff;
    color: #452e73;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.chat-link:hover {
    background: #e0eeff;
} */

.chat-link {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 14px;
    background: #f0f6ff;
    border: 1px solid #d0e3ff;
    color: #452e73;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.chat-link:hover {
    background: #d0e3ff;
}

.chat-link-arrow {
    margin-left: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.chat-link:hover .chat-link-arrow {
    transform: translateX(4px);
}


.grievance-form {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
}

.grievance-form .form-group {
    display: flex;
    flex-direction: column;
}

.grievance-form input,
.grievance-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: white;
    transition: border-color 0.3s ease;
}

.grievance-form input:focus,
.grievance-form textarea:focus {
    border-color: #452e73;
}

.grievance-form button {
    background: #452e73;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.grievance-form button:hover {
    background: #5d3e8e;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.typing-dots span {
    animation: blink 1.4s infinite both;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Chat */
@media (max-width: 480px) {
    #chat-box {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #452e73;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 600px;
    margin: auto;
}

.cookie-consent.show {
    opacity: 1;
    visibility: visible;
}

.cookie-consent p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-consent a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-consent button {
    background: #ffd700;
    color: #452e73;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-consent button:hover {
    background: #fff;
    color: #452e73;
}

.product-list-sku {
    padding: 2px 5px;
    border-radius: 5px;
    background-color: #452e7330;
    font-size: 13px;
}

.price-strikethrough {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}