:root {
--primary-color: #FF580D;
--secondary-color: #2a2b2a;
--light-color: #ffffff;
--accent-color: #FFD700;
--background-color: #f8f8f8;
--text-color: #333333;
}

/* Main Container */
#cr-listing {
max-width: 1200px;
margin: 0 auto;
background-color: var(--light-color);
color: var(--text-color);
font-size: 14px;
line-height: 1.5;
}

/* Responsive Columns */
.container {
width: 100%;
padding: 0 15px;
margin: 0 auto;
}

.section {
padding: 15px 0;
}

#header .container {
    max-width: 100%;
    padding: 0 10px;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
}

.column.is-narrow {
    flex: 0 0 auto;
    width: auto;
    max-width: 33%;
}

#header .column {
    flex: 0 1 33%;
    min-width: 0; /* Override the min-width to prevent overflow */
    width: 33%;
}

.column {
flex: 1;
padding: 0 10px;
min-width: 200px;
}

.nav-bttn_wrap.right {
    justify-content: flex-end;
    width: auto;
    padding-right: 10px;
}

.nav-bttn_wrap li {
    margin: 0 5px; /* Reduce margin to prevent overflow */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #header .column {
        flex: 1 1 100%;
        width: 100%;
    }
}

/* Top Navigation */
#topbar-mobile {
background-color: var(--primary-color);
padding: 10px 0;
display: none;
}

@media (max-width: 768px) {
#topbar-mobile {
    display: block;
}

.is-hidden-touch {
    display: none;
}
}

.mobilebttn {
background-color: var(--light-color);
padding: 8px 15px;
text-align: center;
border-radius: 5px;
transition: all 0.3s ease;
}

.mobilebttn:hover {
background-color: var(--accent-color);
transform: translateY(-2px);
}

.mobilebttn p {
color: var(--secondary-color);
font-weight: bold;
}

/* Header */
#header {
padding: 15px 0;
border-bottom: 1px solid #e0e0e0;
background-color: var(--secondary-color);
}

.logowrap {
text-align: center;
padding: 10px 0;
}

.logoimg {
max-height: 120px;
transition: transform 0.3s ease;
}

.logoimg:hover {
transform: scale(1.05);
}

/* Nav Menu */
#navbar {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}

.nav-bttn_wrap {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}

.nav-bttn_wrap.right {
justify-content: flex-end;
width: 94%;
}

.nav-bttn_wrap li {
margin: 0 10px;
}

.nav-bttn_wrap li a {
color: #FFFFFF;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
padding: 5px 0;
position: relative;
}

.nav-bttn_wrap li a:after {
content: '';
position: absolute;
width: 0;
height: 2px;
background: var(--primary-color);
bottom: 0;
left: 0;
transition: width 0.3s ease;
}

.nav-bttn_wrap li a:hover {
color: var(--primary-color);
}

.nav-bttn_wrap li a:hover:after {
width: 100%;
}

.desc_bttn a:after,
.nav-bttn_wrap li a.desc_bttn:after,
.desc_bttn:after {
display: none !important;
content: none !important;
height: 0 !important;
width: 0 !important;
}

.nav-bttn_wrap li .desc_bttn:hover {
background-color: var(--accent-color);
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.left {
justify-content: flex-start;
}

.right {
justify-content: flex-end;
}

.saveseller p {
color: #FFFFFF;
}

.desc_bttn {
background-color: var(--primary-color);
padding: 8px 15px;
text-align: center;
border-radius: 5px;
transition: all 0.3s ease;
}

.desc_bttn:hover {
background-color: var(--accent-color);
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.desc_bttn p {
color: var(--light-color);
font-weight: bold;
margin: 0;
}

/* Category Navigation */
#nav {
background-color: var(--primary-color);
padding: 10px 0;
}

#nav .nav-bttn_wrap {
justify-content: center;
}

#nav .nav-bttn_wrap li a {
color: var(--light-color);
padding: 5px 10px;
}

#nav .nav-bttn_wrap li a:hover {
color: var(--accent-color);
}

#nav .nav-bttn_wrap li a:after {
background: var(--light-color);
}

/* USP Section */
#usp {
background-color: var(--background-color);
padding: 20px 0;
}

.uspicon {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 10px;
transition: all 0.3s ease;
}

.uspicon:hover {
transform: translateY(-5px);
}

.column .uspicon a {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}

.uspicon img {
max-width: 50px;
margin-right: 0;
margin-bottom: 10px;
}

.uspicon .text_wrap {
flex: 0 1 auto;
text-align: center;
}

.uspicon .text_wrap p {
margin: 0;
color: var(--secondary-color);
}

/* Main Content */
#bodywrapper {
padding: 20px 0;
}

#topbanner img {
width: 100%;
border-radius: 8px;
margin-bottom: 20px;
}

/* Product Description */
#maininfo {
padding: 20px 0;
}

.desc-img-wrap {
padding: 15px;
background-color: var(--light-color);
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.desc-img img {
width: 100%;
border-radius: 5px;
}

#description-box {
padding: 20px;
background-color: var(--light-color);
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.title {
color: var(--secondary-color);
font-size: 24px;
margin-bottom: 15px;
}

.feedback {
display: flex;
align-items: center;
flex-wrap: wrap;
margin-bottom: 15px;
}

.feedback p {
margin: 0;
margin-right: 10px;
font-weight: bold;
}

.stars {
color: var(--primary-color);
font-size: 16px;
margin-right: 10px;
}

.feedback a {
color: var(--primary-color);
text-decoration: none;
}

.shortdesc {
margin-bottom: 20px;
}

.bttns_wrap {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

/* Main Product Description */
#productdesc {
padding: 20px 0;
}

.desc-title {
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 2px solid var(--primary-color);
}

.desc-title p {
color: var(--secondary-color);
font-size: 18px;
}

/* Category Grid */
#catgrid {
padding: 30px 0;
background-color: var(--background-color);
}

.cat-box {
position: relative;
margin-bottom: 20px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.cat-box:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.cat-box img {
width: 100%;
vertical-align: middle;
}

.caption {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 15px;
background: rgba(0,0,0,0.6);
color: white;
display: flex;
align-items: center;
}

.caption img {
width: 30px;
margin-right: 10px;
}

.caption .text_wrap p {
margin: 0;
font-weight: bold;
color: var(--light-color);
}

/* Extra Info Panels */
#extra-information {
padding: 30px 0;
}

.panel-information {
margin-bottom: 20px;
}

.panel-information input {
display: none;
}

.panel-heading {
background-color: var(--primary-color);
color: var(--light-color);
padding: 15px;
display: flex;
justify-content: space-between;
cursor: pointer;
border-radius: 5px;
}

.panel-heading h2 {
font-size: 16px;
margin: 0;
}

.panel-body {
padding: 15px;
background-color: var(--light-color);
border: 1px solid #e0e0e0;
border-top: none;
display: none;
border-radius: 0 0 5px 5px;
}

input:checked + .panel-heading + .panel-body {
display: block;
}

/* Footer */
#footerbanner {
background-color: var(--primary-color);
padding: 30px 0;
text-align: center;
color: var(--light-color);
}

.text_wrap-over {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}

.text_wrap-over .logoimg {
max-height: 60px;
}

.text_wrap-over p {
font-size: 16px;
margin: 10px 0;
}

#footer {
background: radial-gradient(
ellipse 170% 80% at 100% 100%,
#ff580d 25%,
black 78%
);
padding: 30px 0;
color: var(--light-color);
}

.foot-box {
margin-bottom: 20px;
}

.foot-box_wrap {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.foot-box_wrap .img_wrap {
flex: 0 0 50px;
margin-right: 15px;
text-align: center;
}

.foot-box_wrap .img_wrap img {
max-width: 100%;
}

.foot-box_wrap .text_wrap {
flex: 0 1 auto;
text-align: center;
}

.foot-box_wrap .text_wrap p {
margin: 0;
color: var(--light-color);
text-align: center;
}

#info-dropdowns {
padding: 20px 0;
background-color: var(--light-color);
}

.dropdown-panels {
margin-bottom: 20px;
}

.dropdown-panel {
margin-bottom: 15px;
}

.dropdown-toggle {
display: none;
}

.dropdown-header {
background-color: var(--primary-color);
color: var(--light-color);
padding: 15px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}

.dropdown-header:hover {
background-color: #e64d0c;
}

.dropdown-header h2 {
font-size: 16px;
margin: 0;
}

.toggle-icon {
font-size: 20px;
font-weight: bold;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
}

.dropdown-toggle:not(:checked) ~ .dropdown-header .minus,
.dropdown-toggle:checked ~ .dropdown-header .plus {
display: none;
}

.dropdown-content {
padding: 15px;
background-color: var(--light-color);
border: 1px solid #e0e0e0;
border-top: none;
display: none;
border-radius: 0 0 5px 5px;
}

.dropdown-toggle:checked ~ .dropdown-content {
display: block;
}

.break-line {
height: 1px;
background-color: rgba(255,255,255,0.2);
margin: 20px 0;
}

.footer-bttns {
display: flex;
justify-content: center;
padding: 20px 0;
}

.footer-bttns_wrap {
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
}

.footer-bttn img {
height: 40px;
transition: transform 0.3s ease;
}

.footer-bttn img:hover {
transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
.columns {
    flex-direction: column;
}

.column {
    width: 100%;
    margin-bottom: 15px;
}

.is-hidden-touch {
    display: none;
}

.is-hidden-mobile {
    display: none;
}

.desc_bttns {
    width: 100%;
}
}

a {
text-decoration: none;
}
