@charset "utf-8";
/* CSS Document */

/**
 * ===== USTRADEENT TYPOGRAPHY SYSTEM =====
 * Site-wide font: Inter (already loaded further down for the product-detail
 * purchase panel via @import - that @import is kept, only its old `* {
 * font-family: Inter }` UNIVERSAL reset was removed and rescoped to
 * `.product-container`, since an unscoped `*` rule was silently fighting
 * this file's own `body { font-family: Montserrat }` on every element
 * site-wide that didn't have a more specific font-family of its own -
 * the root cause of the "inconsistent typography" audit finding. Inter is
 * adopted here (replacing the scattered Montserrat/Lato declarations)
 * because it's what the product-detail page - the one page already singled
 * out as "comparatively good" - already used successfully.
 *
 * Heading scale (was previously broken: h1 and h2 were both 25px, h5 and h6
 * were both 18px - no real hierarchy):
 *   h1 32px/700   h2 26px/700   h3 20px/600   h4 17px/600   h5 15px/600   h6 14px/600
 */
:root {
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}
body {
    margin: auto;
    font-family: var(--font-sans);
    font-size: 14px;
    overflow-x: hidden;
}

/* Keyboard-focus visibility. The template strips outline:0/none on ~20+
 * selectors sitewide (links, buttons, inputs, dropdowns) with no
 * replacement, so a keyboard user tabbing through the site gets zero
 * indication of what's focused almost anywhere. :focus-visible only
 * fires for keyboard/programmatic focus (not mouse clicks), so this
 * restores that indicator without adding a visible ring on every click -
 * and since it's a pseudo-class, it wins the cascade over the plain
 * `outline: 0` rules those elements already have. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid #10a0d7;
    outline-offset: 2px;
}
img, object {
    max-width: 100%;
}
a {
    outline: 0;
}
a {
    color: #000;
    /*    font-size: 15px;*/
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: none;
}
.border {
    border: 0px solid red;
}
.clr {
    clear: both;
}
h1 {
    margin: 10px 0px 10px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 32px;
    color: #000;
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.25;
}
h2 {
    margin: 10px 0px 10px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 26px;
    color: #000;
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.3;
}
h3 {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 20px !important;
    color: #000;
    font-family: var(--font-sans);
    font-weight: 600;
}
h4 {
    margin: 0px 0px 5px 0px!important;
    padding: 0px 0px 0px 0px!important;
    font-size: 17px !important;
    color: #000 !important;
    font-family: var(--font-sans);
    font-weight: 600 !important;
}
h5 {
    margin: 0px 0px 0px 0px;
    font-size: 15px !important;
    color: #000;
    font-family: var(--font-sans);
    font-weight: 600;
}
h6 {
    margin: 0px 0px 0px 0px;
    font-size: 14px !important;
    color: #333;
    font-family: var(--font-sans);
    font-weight: 600;
}
p {
    font-size: 15px;
    line-height: 25px;
    color: #000;
}
.none {
    display: block;
}
.display {
    display: none;
}
.filter-none {
    display: none;
}
.filter-block {
    display: block;
}
.header-top {
    background-color: #f3b404;
    height: 5px;
    margin-bottom: 7px;
}
.middle {
    margin: auto;
    width: 1300px;
    height: auto;
    border: 0px solid blue;
}
.search {
    padding: 0px 10px 0px 10px;
	margin: 15px 0px 0px 0px;
    border-radius: 25px;
    border: 1px solid #cccccc;
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(241,241,241,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(241,241,241,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(241,241,241,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f1f1f1', GradientType=0 ); /* IE6-9 */
}
.search-input {
    padding: 12px 10px 8px 10px;
    width: 91%;
    font-size: 14px;
    height: auto;
    background: transparent;
    float: left;
    border: 0px solid red;
    outline: 0;
}
.search-btn {
    width: 59px;
    height: 45px;
    float: right;
    margin-right: -15px;
    border: 0px solid red;
}
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    border: none;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    text-align: left;
    left: -60px;
    top: 25px;
    border-top: 3px solid #f3b404;
}
.dropdown-content a {
    color: black;
    padding: 10px 10px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.4s linear;
    display: block;
}
.dropdown-content a:hover {
    background-color: #13a7df;
    color: #fff;
}
.dropdown:hover .dropdown-content {
    display: block;
    color: #fff;
}
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
    color: #fff;
}
.drop-cart {
    width: 300px;
    left: -239px;
    right: 0px;
    top: 25px;
}
.cart-counter {
    width: auto;
    color: #fff;
    text-align: center;
    border-radius: 100px;
    position: relative;
    top: -20px;
    left: 25px;
    font-size: 12px;
    background-color: #13a7df;
}
.link a {
    padding: 0px 0px 0px 0px !important;
    color: #000;
    font-size: 12px !important;
    text-align: left !important;
    text-decoration: none !important;
}
.link :hover {
    color: #000 !important;
    background-color: #fff !important;
    text-decoration: none !important;
}
.btn-button {
    margin: 20px 0px 10px 0px;
    padding: 10px 15px 10px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    border: 0px solid red;
    background: rgb(19,167,223); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(19,167,223,1) 0%, rgba(18,131,201,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(19,167,223,1) 0%, rgba(18,131,201,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(19,167,223,1) 0%, rgba(18,131,201,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13a7df', endColorstr='#1283c9', GradientType=0 ); /* IE6-9 */
}
.navbar {
    background-color: #13a7df;
    border-radius: 0px;
    margin-bottom: 1px;
	margin-top: 5px;
}
.left-navbar {
    background-color: #fcd117;
    color: #000;
    text-align: center;
    height: 50px;
    background-image: url("../images/nav-bar.png");
}
button.accordion {
    background-color: #fcd117;
    color: #000;
    cursor: pointer;
    padding: 14px 10px 13px 10px !important;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.4s;
}
button.accordion.active, button.accordion:hover {
    background-color: #f8d370;
}
div.panel {
    /*padding: 0 16px;*/
    padding: 0px !important;
    width: 100%;
    background-color: #ffffff;
    max-height: 0;
    height: auto;
    overflow: auto;
    position: absolute;
    z-index: 1;
    top: 51px;
    border: 0px solid #e7e6e6 !important;
    transition: max-height 0.2s ease-out;
    border-radius: 0px;
}
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 0px solid transparent !important;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
#list1 {
}
#list1 ul {
    list-style: none;
    margin: 0px 0px 0px 0px;
    display: inline;
    padding: 0px 0px 0px 0px;
    width: 100%;
    height: auto;
    float: left;
    border: #FF0000 0px solid;
}
#list1 ul li {
    display: inline;
    text-transform: capitalize;
    float: left;
    width: auto;
    border: #000000 0px solid;
}
#list1 ul li a {
    margin: 0px 5px 0px 6px;
    padding: 12px 12px 12px 12px;
    font-size: 17.9px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: all 0.4s linear;
    float: left;
}
#list1 ul li a:hover {
    text-decoration: none;
    background-color: #fcd117;
    text-align: center;
    color: #000;
}
.heading-bar {
    margin: 20px auto 20px auto;
    width: 125px;
    height: 5px;
    text-align: center;
    border-radius: 25px;
    background-color: #1db7f1;
}
.middle-left-bg {
    background-color: #f2f2f2;
    padding: 15px;
    border: 0px solid green;
}
.cat-box {
    padding: 10px 0px 10px 0px;
    margin: auto auto 10px auto;
    /*width: 90px;
height: 110px;*/
    background-color: #fff;
    font-size: 12px !important;
    color: #333 !important;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e2e1e1;
}
.product-box {
    margin: 10px auto 10px auto;
    width: 100%;
    height: auto;
    text-align: center;
    border: 1px solid #e2e1e1;
}
.product-box-inner {
    margin: 10px auto 10px auto;
    padding: 0px 10px 0px 10px;
    width: 100%;
    height: auto;
    text-align: center;
    border: 0px solid red;
}
.product-name {
    margin: 10px auto 10px auto;
    padding: 0px 10px 0px 10px;
    width: 100%;
    height: 65px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    border: 0px solid red;
}
.price {
    padding: 5px 0px 5px 0px;
    color: #e5011b;
    font-size: 14px;
    font-weight: 600;
}
.market-price {
    padding: 5px 0px 5px 0px;
    color: #000099;
    font-size: 14px;
    font-weight: 600;
    text-decoration: line-through;
}
.footer-subscribe {
    padding: 10px 0px 10px 0px;
    margin-bottom: 2px;
    background-color: #f9c50e;
}
.input-subscribe-bg {
    margin: 5px 0px 5px 0px;
    border-radius: 7px;
    background-color: #fff;
    border: 0px solid red;
}
.input-subscribe {
    padding: 17px;
    width: 70%;
    background-color: #fff;
    float: left;
    outline: 0;
    border-radius: 7px;
    font-size: 14px;
    border: 0px solid red;
}
.button-subscribe {
    margin: 0px -2px 0px 0px;
    width: 169px;
    height: 55px;
    float: right;
    border: 0px solid red;
}
.footer-bg {
    margin: 0px 0px 0px 0px;
    padding: 25px 0px 0px 0px;
    background-color: #f2f2f2;
    border: 0px solid red;
}
.btn-call {
    margin: 0px 0px 0px 0px;
    padding: 15px 0px 15px 0px;
    width: 65%;
    height: auto;
    color: #f9c50e !important;
    background-color: #f2f2f2;
    border-radius: 25px;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    border: 2px solid #1db7f1;
}
.phone-link a {
    padding: 10px;
    margin: 0px 0px 10px 0px;
    width: 65%;
    height: auto;
    float: left !important;
    color: #333 !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background-color: #f2f2f2 !important;
    border-radius: 25px;
    border: 2px solid #1db7f1;
}
#list4 {
}
#list4 ul {
    list-style: none;
    margin: 0px 0px 0px 0px;
}
#list4 ul li a {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 100%;
    height: auto;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    float: left;
    line-height: 30px;
    transition: all 0.4s linear;
    border: 0px solid red;
}
#list4 ul li :hover {
    color: #000;
    text-decoration: none;
}
.social-icon {
    margin: 0px 0px 10px 5px;
    width: 41px;
    height: auto;
    float: left !important;
    border: 0px solid red;
}
.tooltip1 {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}
.tooltip1 .tooltiptext1 {
    visibility: hidden;
    width: 300px;
    max-width: min(300px, 90vw);
    padding: 15px !important;
    background-color: #13a7df;
    color: #fff;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    cursor: copy;
    border: 2px dashed #fcd117;
    /* Position the tooltip - anchored to the trigger's right edge (not left-
       unbounded from its static position) so it can never push the page's
       scrollWidth past the viewport, whatever the trigger's position is. */
    position: absolute;
    z-index: 1;
}
.tooltip1:hover .tooltiptext1 {
    visibility: visible;
}
.slidingDiv {
    height: auto;
    width: 325px;
    position: absolute;
    background-color: #fff;
    /*padding:20px;*/
    z-index: 1;
    top: 50px;
    text-decoration: none;
    border-bottom: 0px solid #3399FF;
    border: 1px solid #ccc;
    padding: 0px 0px 0px 0px;
}
.show_hide {
    display: none;
}
.cat-btn {
    padding: 12px 0px 0px 0px;
    Background: #fcd117;
    width: 100%;
    height: 50px;
    text-align: center;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    background-image: url("../images/nav-bar.png");
    background-repeat: no-repeat;
}
.catmenu-box {
    padding: 12px 0px 0px 12px;
    margin: 0px 0px 0px 0px;
    width: 250px;
    height: auto;
    text-align: left;
    border: 0px solid blue;
    display: inline-block;
}
.breadcum-bg {
    padding: 0px 0px 0px 0px;
    margin: 15px 0px 0px 0px;
    width: 100%;
    height: auto;
    text-align: left;
    background-color: #f7f7f7;
    border: 1px solid #f7f7f7;
}
ul.breadcrumb {
    margin: 15px 0px 15px 0px;
    padding: 0px 0px 0px 0px;
    list-style: none;
    background-color: none;
}
ul.breadcrumb li {
    display: inline;
    font-size: 14px;
}
ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}
ul.breadcrumb li a {
    color: #000;
    text-decoration: none;
}
ul.breadcrumb li a:hover {
    color: #13a7df;
    text-decoration: underline;
}
.product-heading {
    margin: 0px 0px 10px 0px !important;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    color: #000;
    text-align: left;
}
.link-pd a {
    padding: 0px 0px 0px 0px !important;
    color: #13a7df;
    text-decoration: underline !important;
    font-size: 14px !important;
    font-weight: 600;
    transition: all 0.4s linear;
    text-align: left !important;
}
.link-pd :hover {
    color: #000 !important;
    background-color: #fff !important;
    text-decoration: none !important;
}
.link-1 a {
    padding: 0px 0px 0px 0px !important;
    color: #000;
    font-size: 14px !important;
    text-align: left !important;
    font-weight: 600;
    text-decoration: none !important;
}
.link-1 :hover {
    color: #000 !important;
    background-color: #fff !important;
    text-decoration: none !important;
}
.price-pd {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    padding-right: 15px;
}
.pricecut-pd {
    font-size: 20px;
    font-weight: 600;
    color: #000099;
    text-decoration: line-through;
    padding-right: 15px;
}
.pricedisc-pd {
    font-size: 20px;
    font-weight: 600;
    color: #e5011b;
    padding-right: 15px;
}
.select-size {
    padding: 10px 20px 10px 20px;
    width: 75%;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    border: 3px solid #dddddd;
}
.colour-box {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    height: 85px;
    border-radius: 2px;
    overflow-y: scroll;
    overflow-x: hidden;
    border: 1px solid #dddddd;
}
.colour-budget {
    width: 25px;
    height: 25px;
    background-color: #f26c4f;
    margin: 0px 10px 10px 0px;
    display: inline-block;
}
.counter {
    width: 100%;
    margin: 0px 0px 0px 0px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #dddddd;
}
.counter input {
    width: 50px;
    border: 0;
    line-height: 0px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    background: #10a0d7;
    color: #fff;
    appearance: none;
    outline: 0;
    border-radius: 3px;
}
.counter span {
    display: block;
    font-size: 45px;
    padding: 0px 15px 0px 15px;
    cursor: pointer;
    color: #000;
    user-select: none;
}
.abc {
    width: 155px;
    margin-bottom: 20px;
    border: 0px solid red;
}
.btn-cart {
    margin: -14px auto;
    padding: 15px 75px 15px 75px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-color: #10a0d7;
    border-radius: 25px;
    text-decoration: none;
    border: 0px solid red;
}
.accordion1 {
    background-color: #fff;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
    border: 0px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}
.active, .accordion1:hover {
    background-color: #fff;
    color: #000;
}
.accordion1:after {
    content: '\002B';
    color: #000;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2212";
}
.panel1 {
    padding: 0px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    height: 150px;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: max-height 0.2s ease-out;
}
.review-list {
    padding: 10px;
    width: 100%;
    height: 472px;
    overflow-y: scroll;
    overflow-x: hidden;
    border: 0px solid red;
}
.input-review {
    padding: 10px;
    margin: 10px 0px 15px 0px;
    width: 100%;
    height: auto;
    font-size: 14px;
    border-radius: 3px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f6f6f6+47,ededed+100;White+3D+%231 */
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 ); /* IE6-9 */
    outline: 0;
    border: 1px solid #ccc;
}
.input-drop {
    height: 50px;
}
.input-message {
    height: 150px;
}
.mobile-nav {
    margin: 20px 0px 10px 0px;
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    border: 0px solid red;
}
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default radio button */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #dadada;
    border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #13a7df;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the indicator (dot/circle) */
.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.filter-bar {
    margin: 0px 0px 0px 0px;
    padding: 10px;
    background-color: #13a7df;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.filter-bar2 {
    background-color: #f4b811;
    color: #000;
    font-size: 16px;
}
.filter-box {
    margin: 0px 0px 20px 0px;
    padding: 10px 10px 0px 10px;
    border: 1px solid #b4aeae;
    color: #000;
    font-size: 12px;
}
.filter-box1 {
    height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.colour-budgets {
    width: 22px;
    height: 22px;
    padding: 0px;
    cursor: pointer;
    background-color: #ec008c;
    margin: 10px 7px 10px 0px;
    display: inline-block;
    float: left;
}
.price-input {
    height: 25px;
    width: 65px;
    background-color: #13a7df;
    margin: 10px 0px 10px 0px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    outline: 0;
    border-radius: 2px;
    border: 0px solid red;
}
.go-input {
    height: 30px;
    width: 35px;
    background-color: #f4b811;
    margin: 10px 0px 10px 0px;
    text-align: center;
    color: #000;
    font-weight: 600;
    outline: 0;
    border-radius: 2px;
    border: 0px solid red;
}
.filter-bg {
    padding: 10px;
    background-color: #f6f6f6;
    margin: 0px 0px 10px 0px;
    font-size: 14px;
    color: #000;
}
.filter-mark {
    padding: 3px 6px 3px 6px;
    background-color: #13a7df;
    color: #fff;
    border-radius: 25px;
}
.input-itempage {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px !important;
    width: 106% !important;
    height: 30px !important;
    font-size: 13px;
    color: #000000;
    border: 1px solid #f6f6f6;
}
.input-itempaging {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px !important;
    width: 50% !important;
    height: 30px !important;
    font-size: 13px;
    color: #000000;
    border: 1px solid #f6f6f6;
}
.brand-box {
    margin: 0px 0px 0px 0px;
    padding: 15px;
    border-radius: 25px;
    border: 1px solid #cccccc;
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(247,247,247,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(247,247,247,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(247,247,247,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f7f7', GradientType=0 ); /* IE6-9 */
}
.bd-link a {
    margin: 5px 0px 5px 0px;
    padding: 0px 0px 0px 0px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    display: inline-block;
    transition: all 0.4s linear;
    text-decoration: none;
}
.bd-link :hover {
    color: #000;
    text-decoration: underline;
}
.upto {
    margin: 5px 0px 5px 0px;
    padding: 0px 0px 0px 0px;
    color: #ff0000;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    display: inline-block;
    transition: all 0.4s linear;
    text-decoration: none;
}
#alphabet {
}
#alphabet ul {
    list-style: none;
    display: inline;
}
#alphabet ul li {
    margin: auto;
    display: inline;
    border: #000000 0px solid;
}
#alphabet ul li a {
    margin: auto auto auto auto;
    padding: 10px;
    font-size: 20px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    text-align: center;
    line-height: 55px;
    transition: all 0.4s linear;
}
#alphabet ul li a:hover {
    text-decoration: none;
    background-color: #0099cc;
    border-radius: 2px;
    text-align: center;
    color: #ffffff;
}
.alphabet-div {
    margin: 5px 0px 25px 0px;
    padding: 0px 10px 0px 10px;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    text-align: left;
    display: inline-block;
    border-bottom: 5px solid #0099cc;
    border-radius: 0px;
    text-decoration: none;
}
.remove-link a {
    padding-top: 5px;
    color: #ff0033;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    display: inline-block;
    text-decoration: underline;
}
.cart-abc {
    width: 155px;
    border: 0px solid red;
}
.counters span {
    font-size: 25px !important;
    padding: 0px 20px 0px 20px !important;
}
.cart-price {
    font-size: 20px;
    font-weight: 600;
}
.cartbox-total {
    margin: 0px 0px 0px 0px;
    padding: 30px 10px 30px 10px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    -webkit-box-shadow: -1px 3px 32px 0px rgba(0,0,0,0.36);
    -moz-box-shadow: -1px 3px 32px 0px rgba(0,0,0,0.36);
    box-shadow: -1px 3px 32px 0px rgba(0,0,0,0.36);
}
.slidingDivcart {
    height: auto;
    background-color: #fff;
    padding: 0px;
    margin-top: 0px;
    border-bottom: 0px solid #3399FF;
}
.show_hidecart {
    display: none;
}
.zipcode {
    padding: 0px;
    border-radius: 15px;
    border: 1px solid #cccccc;
}
.zipcode-input {
    padding: 5px 12px 5px 12px;
    margin: 25px 0px 0px 0px;
    width: 74.3%;
    height: auto;
    font-size: 16px;
    color: #000;
    float: left;
    outline: 0;
    border: 0px solid red;
}
.zipcode-btn {
    width: 114px;
    height: 80px;
    float: left;
    margin: 0px -6px 0px 2px;
    border: 0px solid red;
}
.apply-btn {
    width: 117px;
    height: 80px;
    float: left;
    margin: 0px -6px 0px 2px;
    border: 0px solid red;
}
.btn-checkout {
    margin: 20px 0px 20px 0px;
    padding: 15px 75px 15px 75px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    background-color: #10a0d7;
    border-radius: 25px;
    text-decoration: none;
    border: 0px solid red;
}
.procode-input {
    padding: 5px 12px 5px 12px;
    margin: 25px 0px 0px 0px;
    width: 75.3%;
    height: auto;
    font-size: 16px;
    color: #000;
    float: left;
    outline: 0;
    border: 0px solid red;
}
.accordionlogin {
    background-color: #0099cc;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
    border: 0px;
    border: 1px solid #ccc;
    margin-bottom: 2px;
    margin-top: 0px;
}
.active, .accordionlogin:hover {
    background-color: transparent;
    color: #000;
}
.accordionlogin:after {
    content: '\002B';
    color: #000;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2212";
}
.panellogin {
    padding: 0px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    height: auto;
    transition: max-height 0.2s ease-out;
}
.login-inner {
    margin: 0px 0px 10px 0px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.input-login {
    padding: 10px 10px 10px 10px;
    margin: 0px 0px 20px 0px;
    width: 100%;
    font-size: 14px;
    height: auto;
    background: rgb(254,254,254); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(247,247,247,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(247,247,247,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(254,254,254,1) 0%, rgba(247,247,247,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#f7f7f7', GradientType=0 ); /* IE6-9 */
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: 0;
}
.login-img {
    display: inline-block;
}
.login-bg {
    padding: 100px 20px 100px 20px;
    background: #0099cc;
    border-radius: 100px 0px 100px 0px;
}
.input-forget {
    padding: 10px 10px 10px 10px;
    margin: 0px 0px 20px 0px;
    width: 100%;
    font-size: 14px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f9fcf7+0,f5f9f0+100;L+Green+3D */
    background: rgb(249,252,247); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fcf7', endColorstr='#f5f9f0', GradientType=0 ); /* IE6-9 */
}
.hover {
    cursor: pointer;
    color: #000;
}
.btn-login {
    margin: 20px 0px 20px 0px;
    padding: 10px 45px 10px 45px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: center;
    background-color: #ffcc00;
    border-radius: 25px;
    text-decoration: none;
    border: 0px solid red;
}
.btn-reset {
    margin: 20px 0px 20px 0px;
    padding: 10px 45px 10px 45px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-color: #0099cc;
    border-radius: 25px;
    text-decoration: none;
    border: 0px solid red;
}
.payment-box {
    margin: 20px 0px 20px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 14px;
    color: #000;
    border-radius: 20px 20px 0px 0px;
    border: 1px solid #ccc;
}
.payment-heading {
    margin: 0px 0px 10px 0px;
    padding: 15px 15px 15px 15px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    background: #0099cc;
    border-radius: 20px 20px 0px 0px;
    border: 0px solid #ccc;
}
.yellow {
    background: #ffcc00;
    color: #000;
}
.font11 {
    font-size: 14px;
    display: block;
}
.quantity {
    padding: 10px;
    width: 60px;
    height: 40px;
    background-color: #f8f7f7;
    text-align: center;
    border-radius: 10px;
    outline: 0;
    color: #000;
    border: 1px solid #ccc;
}
.invoice-left {
    text-align: left;
}
.invoice-right {
    text-align: right;
}
#invoice-lleft {
    text-align: center !important;
    font-size: 12px !important;
    width: 400px;
    margin: -1px -1px -1px -1px;
}
#invoice-right {
    text-align: right !important;
    font-size: 14px !important;
}
table {
    width: 100%;
}
table, th, td {
    border: 1px solid #ccc;
    border-collapse: collapse;
}
th, td {
    padding: 10px;
    text-align: center;
}
table#t01 tr:nth-child(even) {
    background-color: #fff;
    font-size: 13px;
}
table#t01 tr:nth-child(odd) {
    background-color: #fff;
    font-size: 13px;
}
table#t01 th {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
table#t02 th {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}
.table-inner {
    width: 500px;
    display: inline-block;
    margin: -1px -1px 0px -1px;
}
.table-img {
    width: 15%;
    float: left;
    border: 0px solid red;
}
.table-text {
    width: 85%;
    float: left;
    line-height: 20px;
    text-align: left;
    font-size: 12px;
    border: 0px solid red;
}
.full-width {
   /* width: 100%;
    overflow: hidden;
    overflow-x: hidden;*/
    overflow-y: hidden;
    /*margin: 0px 0px -70px 0px;*/
}
.full-width-order {
    width: 100%;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}
.box-update {
    width: 600px;
    border: 0px solid red;
    display: inline-block;
    position: relative;
    top: -120px;
}
.order-bg {
    padding: 20px;
    background: #f8eabb;
    border-radius: 10px;
    box-shadow: -3px 2px 13px -7px rgba(0,0,0,0.75);
    -webkit-box-shadow: -3px 2px 13px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: -3px 2px 13px -7px rgba(0,0,0,0.75);
}
.discount {
    border-radius: 30px 1px 30px 1px;
    width: 58px;
    background-color: #13A7DF;
    height: 59px;
    padding: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    position: absolute;
    top: 16px;
    bottom: 0px;
    right: 6px;
}
.contact-box {
    margin: 0px 0px 10px 0px;
    padding: 10px 10px 10px 10px;
    border: 1px solid #ccc;
    height: 200px;
    text-align: center;
}
.contact-text {
    margin: 0px 0px 10px 0px;
    padding: 0px 0px 0px 0px;
    border: 0px solid #ccc;
    text-align: center;
    font-size: 20px;
    color: #000;
    font-weight: 600;
}
.fa-facebook {
    background-color: #3B5998;
    padding: 5px;
    color: white;
}
.fa-twitter {
    background-color: #1DA1F2;
    padding: 5px;
    color: white;
}
.fa-google {
    background-color: #DD4B39;
    padding: 5px;
    color: white;
}
.p-text {
    font-size: 15px;
}
.input-comments {
    padding: 10px 10px 10px 10px;
    margin: 0px 0px 20px 0px;
    width: 100%;
    height: 200px;
    font-size: 14px;
    height: auto;
    background: rgb(254,254,254); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(247,247,247,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(254,254,254,1) 0%, rgba(247,247,247,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(254,254,254,1) 0%, rgba(247,247,247,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#f7f7f7', GradientType=0 ); /* IE6-9 */
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: 0;
}


.list555 li {
	display: block;
	position: relative;
	float: left;
}
.list555 li ul {
	display: none;
	z-index:10;
}
.list555 ul li a {
	font-family: var(--font-sans);
	display: block;
	padding: 14px 13.9px 12px 13.5px !important;
	text-decoration: none;
	white-space: nowrap;
	color: #FFFFFF !important;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 0px solid #6b411a;
}

.list555 ul li span {
	font-family: var(--font-sans);
	display: block;
	padding: 14px 13.9px 12px 13.5px !important;
	text-decoration: none;
	white-space: nowrap;
	color: #FFFFFF !important;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 0px solid #6b411a;
}

.list555 ul li a:hover {
	background: #000065;
}

.list555 ul li span:hover {
	background: #000065;
	cursor:pointer;
}

.list555 li:hover > ul {
	display: block;
	position: absolute;
}
.list555 li:hover li {
	float: none;
	border: 0px solid #FFFFFF;
	z-index: 333;
	color: #ffffff !important;
	text-transform: uppercase;
}
.list555 li:hover a {
	background: #e5011b;
	border-bottom: 1px solid #ec4554 !important;
	color: #FFFFFF !important;
}
.list555 li:hover li a:hover {
	background: #000065;
	border-bottom: 0px solid #000065;
	color: #ffffff !important;
}
.list555 ul ul ul {
	left: 100%;
	top: 0;
}
.list555 ul:before, ul:after {
	content: " ";
	display: none;
}
.list555 ul:after {
	clear: both;
}



.navbar1 {
/*  overflow: hidden;
  background-color: #333;*/
}

.navbar1 a {
  float: left;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 15px 15px 15px 15px;
font-weight: 600;
text-transform: uppercase;
  text-decoration: none;
}

.dropdown1 {
  float: left;
  overflow: hidden;
}

.dropdown1 .dropbtn1 {
  font-size: 14px;  
  border: none;
  outline: none;
  color: #fff;
font-weight: 600;
  padding: 15px 15px 15px 15px;
text-transform: uppercase;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar1 a:hover, .dropdown1:hover .dropbtn1 {
  background-color: #fcd117;
color: #000;
}

.dropdown-content1 {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content1 a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content1 a:hover {
  background-color: #ddd;
}

.dropdown1:hover .dropdown-content1 {
  display: block;
}

/* Fonts & Reset */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/**
 * This reset used to be a bare `* { ... }` - unscoped, so it silently
 * overrode this file's own `body { font-family: ... }` (and every other
 * element's margin/padding/box-sizing) on EVERY page site-wide, not just
 * this product-info panel. Now scoped to just .product-container, which
 * is the only place this component (and its accompanying markup) is
 * actually used - see product-detail.php.
 */
.product-container,
.product-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Container */
.product-container {
    background: #ffffff;
    max-width: 550px;
    width: 100%;
    padding: 30px;
    border-radius: 8px;
}

.product-category {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.product-title {
    font-size: 38px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

/* Meta Section */
.product-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    align-items: center;
    color: #f5a623;
    gap: 2px;
}

.reviews-count {
    color: #666;
    margin-left: 5px;
}

.divider {
    color: #e0e0e0;
}

.icon-fire {
    color: #eb5757;
    margin-right: 3px;
}

.sku span {
    font-weight: 500;
    color: #111;
}

/* Pricing */
.price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.original-price {
    font-size: 18px;
    color: #8890a0;
    text-decoration: line-through;
}

.discount-badge {
    background-color: #eb5757;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

/* Description */
.product-description {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 25px;
	text-align: justify;
}

.section-divider {
    border: 0;
    border-top: 1px solid #ebebeb;
    margin-bottom: 25px;
}

/* Dropdowns Row (Colors & Sizes in one row) */
.options-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.option-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-group label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.size-label-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.size-guide-trigger {
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    color: #111;
}

.custom-dropdown {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.custom-dropdown:focus {
    border-color: #111;
}

/* Quantity & CTA Row */
.quantity-label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.purchase-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.quantity-picker {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 4px;
    background-color: #fff;
    height: 50px;
    min-width: 130px;
}

.qty-btn {
    background: none;
    border: none;
    width: 35px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 14px;
}

.quantity-picker input[type="number"] {
    width: 45px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    outline: none;
    -moz-appearance: textfield;
}

/* Hide arrow keys in quantity input */
.quantity-picker input::-webkit-outer-spin-button,
.quantity-picker input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn {
    flex: 1;
    background-color: #13a7df;
    color: white;
    border: none;
    border-radius: 30px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-to-cart-btn:hover {
    background-color: #fcd117;
}

/* Modal / Popup Styling */
.modal {
    display: none; 
    position: fixed; 
    z-index: 999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #8890a0;
    cursor: pointer;
}

.close-modal:hover {
    color: #111;
}

.modal-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.size-chart-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Responsive Handling */
@media (max-width: 480px) {
    .options-row {
        flex-direction: column;
        gap: 15px;
    }
    .purchase-row {
        flex-direction: column;
        align-items: stretch;
    }
    .quantity-picker {
        justify-content: space-between;
    }
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

.product-gallery{
display:flex;
gap:20px;
align-items:flex-start;
}

.thumb-wrapper{
width:90px;
display:flex;
flex-direction:column;
align-items:center;
}

.arrow{
width:55px;
height:40px;
border:none;
background:#fff;
cursor:pointer;
font-size:20px;
box-shadow:0 0 5px rgba(0,0,0,.15);
margin:5px 0;
}

.thumb-list{
height:560px;
overflow-y:auto;
scroll-behavior:smooth;
}

.thumb-list::-webkit-scrollbar{
display:none;
}

.thumb{
width:80px;
height:100px;
object-fit:cover;
border:2px solid transparent;
cursor:pointer;
margin-bottom:10px;
transition:.3s;
}

.thumb.active{
border-color:#000;
}

.main-image img{
width:650px;
height:750px;
object-fit:cover;
border-radius:8px;
}

.product-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Tabs Header System */
.tab-headers {
    display: flex;
    border-bottom: 1px solid #dcdcdc;
    background-color: #ffffff;
}

.tab-btn {
    background-color: #ffffff;
    border: 1px solid transparent;
    border-right: 1px solid #dcdcdc;
    outline: none;
    cursor: pointer;
    padding: 14px 28px;
    font-size: 15px;
    color: #555;
	font-weight: bold;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    background-color: #f5f5f5;
}

/* Active Tab Style matching the Screenshot Yellow */
.tab-btn.active {
    background-color: #fbc02d; /* Custom Screenshot Yellow */
    color: #000000;
    font-weight: bold;
}

/* Tab Content Visibility */
.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

/* Two Column Layout for Reviews and Inquiry */
.two-column-layout {
    display: flex;
    gap: 40px;
}

.content-list-column {
    flex: 1.2;
}

.form-column {
    flex: 1;
}

/* Sort Dropdown Container */
.sort-wrapper {
    margin-bottom: 20px;
}

.sort-select {
    background: linear-gradient(to bottom, #fcfcfc, #e9e9e9);
    border: 1px solid #b8b8b8;
    padding: 10px 15px;
    width: 250px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

/* List Scrolling Setup */
.scrollable-reviews {
    max-height: 550px;
    overflow-y: auto;
    padding-right: 15px;
}

.border-top-list {
    border-top: 1px solid #dcdcdc;
    margin-top: 15px;
}

/* Review & Inquiry Item Design */
.review-item {
    padding: 15px 0;
    border-bottom: 1px solid #eef0f2;
}

.inquiry-item {
    border-bottom: 1px solid #bcbcbc;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.user-name {
    font-weight: bold;
    color: #000000;
}

.item-date {
    color: #333;
    font-weight: 500;
}

/* Stars */
.stars {
    margin-bottom: 10px;
    font-size: 14px;
}

.stars .gold {
    color: #fbc02d;
}

.stars .grey {
    color: #ccc;
}

.item-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #111;
    margin: 0;
    text-align: justify;
}

/* Form Styling */
.form-column h3 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.form-divider {
    border: 0;
    border-top: 1px solid #dcdcdc;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

.form-group .required {
    color: #c62828;
    margin-left: 2px;
}

/* Input Gradient and Shadow matching Screenshot */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #b8b8b8;
    border-radius: 4px;
    background: linear-gradient(to bottom, #fcfcfc, #f1f1f1);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
    box-sizing: border-box;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

/* Button UI */
.btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.submit-btn {
    background-color: #109cd9; /* Screenshot Blue */
    color: #ffffff;
    border: none;
    padding: 14px 45px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-btn:hover {
    background-color: #0d82b3;
}

/* Responsive view for mobile screens */
@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
    }
    .tab-headers {
        flex-direction: column;
    }
    .tab-btn {
        border-right: none;
        border-bottom: 1px solid #dcdcdc;
    }
    .sort-select {
        width: 100%;
    }
}