:root {
    --bg-header: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-card: #ffffff;
    --bg-card2: #ffffff;
    --bg-cardbox: #ffffff;
    --bg-soft: #f2f2f2;
    --bg-pdouter: #fef5eb;
    --bg-pdcard: #ffffff;
    --bg-rating: #17b417;
    --bg-footer: #ebebeb;

    --mnvbg: #fce9d8;

    --text-hdr: #fff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #ffffff;
    --pdtitletxt: #374151;
    --text-success: #008900;
    --text-navlink: #f07539;
    --text-mnvlnk: #000;

    --border-light: #e5e7eb;
    --border-medium: #bebebe;
    --pdcard-border: transparent;

    --accent: #f97316;
    --accent-soft: #fb923c;
    --accent-dark: #ea580c;

    --circle-1: #f3924f;
    --circle-2: #ebc9a4;
    --circle-3: #fdba74;

    --shadow-soft: rgba(0,0,0,0.08);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-strong: rgba(0,0,0,0.30);
    --bkg360-btnshdw: rgba(255,255,255,0.85);

    --filter: unset;
}

body.dark {
    --bg-header: #000;
    --bg-primary: #0f172a;
    --bg-secondary: #0d1828;
    --bg-card: #1e293b;
    --bg-card2: #0e1120;
    --bg-cardbox: #1c222a;
    --bg-pdcard: #22283c;
    --bg-soft: #2d3748;
    --bg-pdouter: #46321b;
    --bg-rating: #17b417;
    --bg-footer: #040404;

    --mnvbg: #231209;

    --text-hdr: #f1f5f9;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-light: #ffffff;
    --pdtitletxt: #e0e5ed;
    --text-success: #008900;
    --text-navlink: #f07539;
    --text-mnvlnk: #f1f5f9;

    --border-light: #334155;
    --border-medium: #475569;
    --pdcard-border: #283240;

    --accent: #8e4408;
    --accent-soft: #fdba74;
    --accent-dark: #f97316;

    --circle-1: #5a2d0e;
    --circle-2: #42382d;
    --circle-3: #2b1d14;

    --shadow-soft: rgba(255,255,255,0.05);
    --shadow-medium: rgba(255,255,255,0.10);
    --shadow-strong: rgba(255,255,255,0.30);
    --bkg360-btnshdw: rgba(255,255,255,0);

    --filter: invert(1);
}
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;background:#fff;color:#1f2937;line-height:1.6;}
h1,
h2,
h3,
h4,
h5,
h6{font-family:'Poppins', sans-serif;font-weight:700;}

#lmdmbtn{display:none;}

/*Button*/
.btn{padding:10px 20px;border-radius:8px;font-weight:600;text-decoration:none;transition:all 0.2s;border:none;cursor:pointer;}
.btn-primary{background:linear-gradient(135deg, #dc2626, #ea580c);color:white;}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 4px 12px rgba(220, 38, 38, 0.3);}

/* Hero Section */
.hero{padding:180px 20px 60px;background:linear-gradient(135deg, #fef2f2 0%, #fff 50%, #fed7aa 100%);}

/*Container*/
.container{max-width:1200px;margin:0 auto;}

.hero h1 {
    font-size: 48px;
    text-align: center;
    color: #1f2937;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Search Box */
.search-box {
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
}

.search-box ._srchbtn {
    position: absolute;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s;
}

.search-box input:focus {
    border-color: #dc2626;
}

.search-icon {
    width:20px;
    height:20px;
    color: #9ca3af;
}

/* Category Filters */
.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: white;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1400px;
    margin: 80px auto 0 auto;
    padding: 0 20px;
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb a {
    color: #dc2626;
    text-decoration: none;
}

/* Main Content */
.main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 30px 20px;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1f2937;
}

.faq-list {
    background: white;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question-text {
    display: flex;
    align-items: start;
    gap: 12px;
    flex: 1;
}

.faq-number {
    width: 24px;
    height: 24px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

.faq-icon {
    color: #9ca3af;
    transition: transform 0.2s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1500px;
}

.faq-answer-content {
    padding: 20px 20px 20px 56px;
    color: #6b7280;
    line-height: 1.7;
}

.faq-category {
    display: inline-block;
    padding: 4px 12px;
    background: #f3f4f6;
    color: #4b5563;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
}

.page-header{width:100%;margin-bottom:20px;}
.page-header h1{font-size:1.6rem;line-height:1.4;}
.page-header ._shd{font-size:15px;opacity:0.75;}

/* Categories Grid */
.categories-section {
    padding: 60px 20px;
    background: #f9fafb;
}

.categories-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.categories-section ._sbhd {
    text-align: center;
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 40px;
}

.categories-section > p {
    text-align: center;
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    /* cursor: pointer; */
    transition: all 0.3s;
}

.category-card a{text-decoration: none;}

.category-card:hover {
    border-color: #dc2626;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.category-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1f2937;
}

.category-content p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.category-tag {
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 12px;
    font-size: 11px;
    color: #6b7280;
}

.category-link {
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.category-link a{
    color: #dc2626;
    text-decoration: none;
    transform: translate(0, 0);
    transition: transform 0.3s ease;
}

.category-link a:hover{
    transform: translate(5px, 0);
    transition: transform 0.3s ease;
}

/* Question Form */
.question-section {
    padding: 60px 20px;
    background: white;
}

.question-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fef2f2, #fed7aa);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid #fca5a5;
}

@media (max-width: 768px) {
    .question-form {
        padding: 40px 20px;
    }
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.question-form h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.question-form > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.form-group input,.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.form-group select{
    background-color: #fff;
}
.form-group input:focus,.form-group select:focus,
.form-group textarea:focus {
    border-color: #dc2626;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group .errmsg{font-size:12px;color:#dc2626;}
.form-group ._mxclmt{display:block;font-size:12px;text-align:right;opacity:0.5;margin:-5px 5px 0 0;}
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.form-note {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    margin-top: 15px;
}

/* Thankyou Message */
._smpbnrw{width:100%;display:flex;flex-flow:column;justify-content:center;align-items:center;margin:40px 0 20px 0;}
._ckwrp{width:72px;height:72px;position:relative;margin:auto 0 30px 0;}
/*green circle*/
._ckbg{width:100%;height:100%;background:#22c55e;border-radius:50%;position:absolute;inset:0;transform:scale(0);animation:circlePop .45s cubic-bezier(.22,1.2,.36,1) forwards;}
/*ripple ring*/
._ckshdw{position:absolute;inset:0;border-radius:50%;border:4px solid #22c55e;opacity:.6;transform:scale(.6);animation:ripple 1.4s ease-out infinite;animation-delay:.5s;}
/* tick */
._ckwrp:after{content:"";position:absolute;left:22px;top:38px;width:18px;height:10px;border-left:4px solid #fff;border-bottom:4px solid #fff;transform:rotate(-45deg) scale(0);transform-origin:left top;animation:tickDraw .3s ease .55s forwards;}
/*Text Message*/
._smpbnrw ._thnxmsg{display:block;font-size:1.2rem;font-weight:bold;color:#09760f;}
._smpbnrw ._thnxsubmsg{display:block;font-size:1rem;color:#000;opacity:0.6;}
/*animations*/
@keyframes circlePop{
    0%{transform:scale(0);}
    60%{transform:scale(1.15);}
    100%{transform:scale(1);}
}
@keyframes tickDraw{
    0%{transform:rotate(-45deg) scale(0);}
    100%{transform:rotate(-45deg) scale(1);}
}
@keyframes ripple{
    0%{transform:scale(.6);opacity:.6;}
    100%{transform:scale(1.8);opacity:0;}
}
@media (min-width: 1024px) {
    ._smpbnrw{margin:60px 0;}
    ._ckwrp{margin:auto 0 40px 0;}
}
@media (min-width: 1024px) {
    ._smpbnrw ._thnxmsg{font-size:2rem;}
    ._smpbnrw ._thnxsubmsg{font-size:1.2rem;}
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    display: flex;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social-link:hover {
    background: #dc2626;
}
.social-link._fb:hover {
    background: #0c64f6;
}
.social-link._x:hover {
    background: #000;
}
.social-link._insta:hover {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .nav { display: none; }
    .categories-grid { grid-template-columns: 1fr; }
}

.hidden { display: none; }
/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    /* cursor: pointer; */
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    border-color: #ddd;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.product-image {
    height: 180px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.progress-circle {
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
    transform: scale(.5);
}

.progress-circle svg {
    width: 100px;
    height: 100px;
    transform: scale(1.1);
}

.product-content {
    padding: 20px 10px 0 10px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 44px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.stars {
    color: #f59e0b;
    font-size: 14px;
}

.rating-value {
    font-size: 13px;
    color: #6b7280;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    font-size:14px;
    margin: 0 -10px;
    padding: 10px;
    background-color: #fafafa;
}

.faq-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.faq-count svg {
    width: 16px;
    height: 16px;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: #dc2626;
}


@media(min-width:1025px){
    .products-grid{grid-template-columns:repeat(4, 1fr);gap:24px;}
    ._lstngpg .products-grid{grid-template-columns:repeat(5, 1fr);}
    .product-image{height:240px;padding:20px;}
}