/**
 * SectionWP Main Stylesheet
 * Contains CSS Variables, Custom Elements, and Overrides for Tailwind
 *
 * @package Sectionwp
 * @version 2.0
 */

/* ══════════════════════════════════════════════════
   CSS Variables (Design Tokens)
   ══════════════════════════════════════════════════ */
:root {
    --fsize: 18px;
    --main-center: 1140px;
    --ffamily: newsection, Sans-Serif;
    --miniradius: 15px;
    --largeradius: 30px;
    --uicolor: #94CC00;
    --uicolor-light: #e6f9c5;
    --uicolor-text: white;
    --alinks: #000000;
    --textcolor: #0C1223;
    --bghover: #080c100a;
    --diver: #D9D9D9;
    --comments: #e9f2ff;
    --secondarytext: #66676A;
    --shadow-2: #0003;
    --shadow-1: #0000001a;
    --disable-text: #ffffff4d;
    --disable-button: #ffffff33;
    --positive: #35bf56;
    --negative: #FF0753;
    --lightcolor: #DBDBDB;
}

/* ══════════════════════════════════════════════════
   Font Faces
   ══════════════════════════════════════════════════ */
@font-face {
    font-family: SectionWP;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/SectionWP/Montserrat-Arabic-Regular.ttf") format("truetype");
}

@font-face {
    font-family: SectionWP;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/SectionWP/Montserrat-Arabic-Medium.ttf") format("truetype");
}

@font-face {
    font-family: SectionWP;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/SectionWP/Montserrat-Arabic-Bold.ttf") format("truetype");
}

@font-face {
    font-family: newsection;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/HDar-Regular.woff") format("woff");
}

/* ══════════════════════════════════════════════════
   Base Reset & Defaults
   ══════════════════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
}

body, html {
    height: 100%;
}

body {
    font-family: var(--ffamily);
    line-height: 1.3;
    color: var(--textcolor);
    font-size: var(--fsize);
    overflow-y: auto !important;
}

a {
    color: var(--alinks);
    text-decoration: none;
    transition: color 50ms;
}

img {
    max-width: 100%;
    height: auto;
}

/* ══════════════════════════════════════════════════
   Navigation Styles (Desktop)
   ══════════════════════════════════════════════════ */
#site-navigation ul {
    list-style: none;
}

#site-navigation > ul > li {
    position: relative;
    margin: 0 20px;
}

#site-navigation > ul > li > a {
    font-size: 19px;
    padding: 10px 0;
    white-space: nowrap;
    display: block;
    font-weight: 400;
}

#site-navigation > ul > li > a > i {
    font-size: 14px;
    vertical-align: -2px;
    padding-right: 3px;
    font-weight: 700;
}

#site-navigation > ul > li.current-menu-item > a,
#site-navigation > ul > li.current_page_parent > a {
    color: var(--uicolor);
}

/* Dropdown Menus */
#site-navigation > ul > li ul {
    transition: all .4s ease;
    min-width: 230px;
    list-style: none;
    position: absolute;
    padding: 40px 0 18px;
    top: 100%;
    right: 0;
    visibility: hidden;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
}

#site-navigation > ul > li ul::after {
    content: "";
    position: absolute;
    inset: 20px 0 0;
    z-index: -1;
    background: #0c1223;
    border-radius: var(--miniradius);
}

#site-navigation > ul > li:hover > ul,
#site-navigation > ul > li.menu-item-has-children:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#site-navigation > ul > li > ul > li {
    position: relative;
    display: flex;
}

#site-navigation > ul > li > ul > li > a {
    white-space: nowrap;
    padding: 7px 20px;
    font-size: 16px;
    display: block;
    color: #b7b9c1;
    transition: all .3s ease .1s;
}

#site-navigation > ul > li > ul > li > a:hover {
    color: #fff;
    padding-right: 30px;
    transition: all .3s ease;
}

/* Sub-sub menus */
#site-navigation > ul > li > ul > li ul {
    right: 100%;
    top: 0;
    padding-right: 4px;
}

/* ══════════════════════════════════════════════════
   Mobile Navigation
   ══════════════════════════════════════════════════ */
.mobile-nav li a {
    display: block;
    padding: 12px 0;
    color: #b7b9c1;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all .2s ease;
}

.mobile-nav li a:hover,
.mobile-nav li.current-menu-item > a {
    color: var(--uicolor);
}

.mobile-nav li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav li.menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 12px;
    transition: transform .3s;
}

.mobile-nav li.menu-item-has-children.open > a::after {
    transform: rotate(180deg);
}

.mobile-nav ul.sub-menu {
    list-style: none;
    display: none;
    padding-right: 15px;
}

.mobile-nav li.open > ul.sub-menu {
    display: block;
}

/* Mobile menu toggle animation */
#mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
#mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
#mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════════
   Alert Boxes
   ══════════════════════════════════════════════════ */
.alert {
    position: relative;
    padding: 18px 20px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: var(--miniradius);
    font-size: 14px;
}
.alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }
.alert-danger { color: #721c24; background-color: #f8d7da; border-color: #e0bfc2; }
.alert-info { color: #004085; background-color: #cce5ff; border-color: #b8daff; }

/* ══════════════════════════════════════════════════
   Hero / Intro Section
   ══════════════════════════════════════════════════ */
.intro-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 85px 20px 240px;
}

.intro-title h1 {
    font-size: 65px;
    margin-bottom: 40px;
    font-weight: 400;
}

.intro-title p {
    font-size: 36px;
    color: var(--secondarytext);
    font-weight: 300;
    max-width: 550px;
    margin-bottom: 60px;
}

/* ══════════════════════════════════════════════════
   Section Titles
   ══════════════════════════════════════════════════ */
.section-title h2 {
    font-weight: 400;
    font-size: 38px;
    color: var(--uicolor);
}

.section-title p {
    padding-top: 10px;
    color: var(--secondarytext);
    font-size: 18px;
    max-width: 540px;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 40px;
}

.section-title.centered h2 {
    font-size: 50px;
}

.section-title.centered p {
    margin: 0 auto;
    font-size: 23px;
    font-weight: 300;
}

/* ══════════════════════════════════════════════════
   Counter Widgets
   ══════════════════════════════════════════════════ */
.counter-card {
    background: #fff;
    border-radius: var(--miniradius);
    box-shadow: 0 6px 45px var(--shadow-1);
    margin: 15px;
    text-align: center;
    padding: 30px;
}

.counter-card .counter-icon {
    display: block;
    color: var(--uicolor);
    font-size: 50px;
    margin-bottom: 18px;
    height: 52px;
}

.counter-card .counter-value {
    display: block;
    font-size: 40px;
    font-weight: 600;
}

.counter-card .counter-label {
    font-size: 24px;
    color: var(--lightcolor);
    white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   Product Card
   ══════════════════════════════════════════════════ */
.product-card {
    min-width: 330px;
    margin: 15px;
    position: relative;
    padding: 25px;
    z-index: 1;
    border: 1px solid var(--diver);
    background: #fff;
    border-radius: var(--largeradius);
    max-width: 339px;
    overflow: hidden;
}

.product-card > a {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.product-card .product-thumbnail {
    position: relative;
    border-radius: var(--miniradius);
    height: 170px;
    display: flex;
    align-items: center;
    background: #94cc0012;
    justify-content: center;
    overflow: hidden;
}

.product-card .product-thumbnail::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: var(--bg-product);
    background-size: cover;
    background-position: center;
    border-radius: var(--miniradius);
}

.product-card .product-icon {
    width: 68px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    margin-right: 10px;
    height: 68px;
}

.product-card .product-icon img {
    border-radius: 50%;
    box-shadow: 0 0 0 6px #fff;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 9px;
    padding-top: 18px;
    font-weight: 700;
}

.product-card .product-description {
    font-size: 16px;
    color: var(--secondarytext);
    margin-bottom: 20px;
    font-weight: 400;
    overflow: hidden;
    flex: 1;
}

/* Star Ratings */
.stars-avg {
    position: relative;
    color: #e1e1e1;
    font-size: 14px;
}

.stars-avg i {
    padding: 0 1px;
}

.stars-avg .stars-avg-front {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffa700;
    width: var(--percent);
    flex-wrap: inherit;
    overflow: hidden;
    justify-content: end;
}

/* Rating Labels */
.rating-label { font-weight: 400; font-size: 14px; }
.rating-value { font-weight: 600; font-size: 16px; line-height: 100%; }

/* Product Price */
.product-price .price-now {
    font-size: 28px;
    font-weight: 700;
    direction: ltr;
    display: block;
    margin-right: auto;
}

.product-price .price-was {
    font-size: 17px;
    color: #757575;
    padding: 0 6px;
    position: relative;
    margin-left: auto;
    margin-right: 0;
    direction: ltr;
    display: block;
}

.product-price .price-was::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 50%;
    right: 50%;
    height: 2px;
    background: #e38282;
    transform: translate(50%, -50%);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 6px;
    left: -12px;
    font-size: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: var(--uicolor);
    line-height: 15px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 10px 10px 10px 0px;
}

.product-badge::before {
    content: "";
    position: absolute;
    top: 35px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 12px 0;
    border-color: transparent #94cc00 transparent transparent;
    left: 0;
}

/* Action Buttons */
.action-btn {
    padding: 10px;
    line-height: 100%;
    font-size: 30px;
    transition: 150ms;
    cursor: pointer;
}

.action-btn.cart-btn {
    color: var(--uicolor);
    margin-left: 4px;
    border-radius: 20px;
}

.action-btn.cart-btn:hover {
    background: #94cc001f;
    color: var(--textcolor);
}

.action-btn.wishlist-btn {
    border-radius: var(--miniradius);
    color: var(--lightcolor);
}

.action-btn.wishlist-btn:hover,
.action-btn.wishlist-btn.added {
    color: #ff0404;
}

.action-btn.wishlist-btn.added {
    background: #e5e5e5;
}

/* ══════════════════════════════════════════════════
   Featured Product Card
   ══════════════════════════════════════════════════ */
.product-card.featured {
    min-width: 700px;
    padding: 36px;
    max-width: inherit;
}

.product-card.featured > a {
    flex-direction: row;
}

.product-card.featured .product-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: calc(100% - 290px);
    bottom: 0;
    z-index: -1;
    border-radius: 30px 0 0 30px;
    height: auto;
}

.product-card.featured .product-thumbnail::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(to left, #fff, transparent);
}

.product-card.featured .product-info {
    width: 290px;
}

.product-card.featured h3 {
    font-size: 36px;
    padding-top: 0;
    margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════
   Blog Grid
   ══════════════════════════════════════════════════ */
.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--miniradius);
    border: 1px solid var(--diver);
    background: #fff;
    transition: all .3s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 30px var(--shadow-1);
    transform: translateY(-3px);
}

.blog-card .blog-thumbnail {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card .blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-card .blog-content {
    padding: 20px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card .blog-excerpt {
    font-size: 15px;
    color: var(--secondarytext);
    line-height: 1.6;
}

.blog-card .blog-bar {
    display: flex;
    list-style: none;
    border-top: 1px solid var(--diver);
    padding: 12px 20px;
}

.blog-card .blog-bar li {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 15px;
    font-size: 14px;
    color: var(--secondarytext);
}

.blog-card .blog-bar li i {
    color: var(--uicolor);
}

/* ══════════════════════════════════════════════════
   Single Post
   ══════════════════════════════════════════════════ */
.single-post-banner {
    border-radius: var(--largeradius);
    overflow: hidden;
    margin-bottom: 30px;
}

.single-post-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.post-meta-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid var(--diver);
    border-bottom: 1px solid var(--diver);
    margin: 20px 0;
    font-size: 14px;
    color: var(--secondarytext);
}

.post-meta-bar li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.share-buttons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 150ms;
    font-size: 16px;
}

.share-buttons .whatsapp { background: #25D366; }
.share-buttons .messenger { background: #0084FF; }
.share-buttons .facebook { background: #1877F2; }
.share-buttons .telegram { background: #0088cc; }
.share-buttons .twitter { background: #0f1419; }

.share-buttons a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* Post Content */
.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--textcolor);
}

.post-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--textcolor);
}

.post-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--textcolor);
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul, .post-content ol {
    padding-right: 30px;
    margin-bottom: 20px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content img {
    border-radius: var(--miniradius);
    margin: 20px 0;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--miniradius);
    overflow: hidden;
}

.post-content table th,
.post-content table td {
    padding: 12px 16px;
    border: 1px solid var(--diver);
    text-align: right;
}

.post-content table th {
    background: var(--uicolor-light);
    font-weight: 600;
}

/* Table of Contents */
.toc-wrapper {
    border: 1px solid var(--diver);
    border-radius: var(--miniradius);
    padding: 24px;
    margin-bottom: 30px;
    background: #fafffe;
}

.toc-toggle {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toc-toggle i {
    transition: transform .3s ease;
}

.toc-toggle.open i {
    transform: rotate(180deg);
}

.toc-content a {
    display: block;
    padding: 6px 0;
    color: var(--secondarytext);
    font-size: 15px;
    transition: color .2s;
}

.toc-content a:hover {
    color: var(--uicolor);
}

/* ══════════════════════════════════════════════════
   Comments
   ══════════════════════════════════════════════════ */
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--diver);
    border-radius: var(--miniradius);
    font-size: 16px;
    transition: border-color .2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--uicolor);
    box-shadow: 0 0 0 2px rgba(148, 204, 0, 0.15);
}

.comment-form button {
    padding: 15px 40px;
    border: 0;
    border-radius: var(--miniradius);
    background: var(--uicolor);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 150ms;
}

.comment-form button:hover {
    background: #0d1319;
    color: #fff;
}

/* Comment Item */
.comment-item {
    padding: 20px;
    border: 1px solid var(--diver);
    border-radius: var(--miniradius);
    margin-bottom: 15px;
}

/* Star Rating Input */
.rating-input i {
    cursor: pointer;
    color: #e1e1e1;
    font-size: 22px;
    transition: color .15s;
}

.rating-input i.active,
.rating-input i:hover {
    color: #ffa700;
}

/* ══════════════════════════════════════════════════
   Product Page
   ══════════════════════════════════════════════════ */
.product-page-hero {
    padding: 60px 0;
}

.product-page-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-page-hero .product-description {
    font-size: 18px;
    color: var(--secondarytext);
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-page-hero .price-now {
    font-size: 60px;
    font-weight: 700;
    direction: ltr;
}

.product-page-hero .price-was {
    font-size: 30px;
}

/* Product Tabs */
.product-tabs .tab-btn {
    padding: 12px 24px;
    font-size: 16px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--secondarytext);
    border-bottom: 2px solid transparent;
    transition: all .2s;
}

.product-tabs .tab-btn.active {
    color: var(--uicolor);
    border-bottom-color: var(--uicolor);
}

.product-tabs .tab-panel {
    display: none;
    padding: 30px 0;
}

.product-tabs .tab-panel.active {
    display: block;
}

/* Product Quantity Selector */
.qty-selector li {
    padding: 12px 24px;
    border: 1px solid var(--diver);
    border-radius: var(--miniradius);
    cursor: pointer;
    flex: 1;
    text-align: center;
    font-weight: 500;
    transition: all .2s;
}

.qty-selector li.selected,
.qty-selector li:hover {
    border-color: var(--uicolor);
    background: var(--uicolor-light);
    color: var(--textcolor);
}

/* Add to Cart (Large) */
.add-to-cart-lg {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--uicolor);
    border: 0;
    border-radius: var(--miniradius);
    font-size: 18px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 150ms;
}

.add-to-cart-lg:hover {
    background: #0d1319;
    color: #fff;
}

/* Product Detail Stats */
.product-stats li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--secondarytext);
}

.product-stats li i {
    font-size: 18px;
    color: var(--uicolor);
}

/* Product Sidebar */
.product-sidebar-widget {
    border: 1px solid var(--diver);
    border-radius: var(--miniradius);
    padding: 25px;
    margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════
   FAQ Accordion
   ══════════════════════════════════════════════════ */
.faq-item {
    border: 1px solid var(--diver);
    border-radius: var(--miniradius);
    padding: 20px;
    margin-bottom: 10px;
}

.faq-item h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
}

.faq-item h4 i {
    transition: transform .3s ease;
    font-size: 14px;
}

.faq-item.open h4 {
    color: var(--textcolor);
}

.faq-item.open h4 i {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    display: none;
    padding-top: 15px;
    color: var(--secondarytext);
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ══════════════════════════════════════════════════
   Boxed Banner (CTA)
   ══════════════════════════════════════════════════ */
.boxed-banner {
    background: linear-gradient(to left, #86b900, #567600);
    border-radius: 80px;
    padding: 63px 119px;
    position: relative;
    overflow: hidden;
}

.boxed-banner h2 {
    font-size: 67px;
    color: var(--textcolor);
    font-weight: 400;
    margin-bottom: 36px;
}

.boxed-banner p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   Newsletter
   ══════════════════════════════════════════════════ */
.newsletter-form {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--miniradius);
    font-size: 16px;
    color: var(--secondarytext);
}

.newsletter-form input:focus {
    border-color: #a9a9a9;
    box-shadow: #a9a9a9 0 0 0 1px;
}

.newsletter-form button {
    padding: 19px 68px;
    border: 0;
    border-radius: var(--miniradius);
    background: var(--uicolor);
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    transition: all 150ms;
}

.newsletter-form button:hover {
    background: #0d1319;
}

/* ══════════════════════════════════════════════════
   Contact Floating Widget
   ══════════════════════════════════════════════════ */
.contact-floating {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.contact-floating .help-btn {
    width: auto;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--uicolor);
    color: #000;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px var(--shadow-2);
    transition: all .3s ease;
}

.contact-floating .help-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-2);
}

.contact-floating .contact-options {
    position: absolute;
    bottom: 60px;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 8px;
}

.contact-floating.open .contact-options {
    display: flex;
}

.contact-floating .contact-option a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--shadow-1);
    white-space: nowrap;
    font-size: 14px;
    color: var(--textcolor);
    transition: all .2s ease;
}

.contact-floating .contact-option a:hover {
    transform: translateX(-5px);
}

/* ══════════════════════════════════════════════════
   Select Box / Offers Bar
   ══════════════════════════════════════════════════ */
.offers-bar {
    background: #0c1223;
    color: #fff;
    padding: 12px 0;
}

.offers-bar .offer-card {
    background: rgba(255,255,255,0.08);
    border-radius: var(--miniradius);
    padding: 20px;
    text-align: center;
}

.offers-bar .offer-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.offers-bar .coupon-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--uicolor);
    color: #000;
    border-radius: var(--miniradius);
    cursor: pointer;
    font-weight: 600;
    transition: all 150ms;
}

/* ══════════════════════════════════════════════════
   Search Page Title
   ══════════════════════════════════════════════════ */
.search-header {
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
}

.search-header h1 {
    font-size: 42px;
    font-weight: 400;
}

.search-header .search-form {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.search-header .search-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--diver);
    border-radius: var(--miniradius);
    font-size: 16px;
}

.search-header .search-form button {
    padding: 15px 30px;
    background: var(--uicolor);
    border: 0;
    border-radius: var(--miniradius);
    cursor: pointer;
    transition: 150ms;
}

.search-header .search-form button:hover {
    background: #0d1319;
    color: #fff;
}

/* ══════════════════════════════════════════════════
   404 Page
   ══════════════════════════════════════════════════ */
.error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    text-align: center;
}

.error-404 h1 {
    font-size: 180px;
    font-weight: 700;
    color: var(--uicolor);
    line-height: 1;
}

/* ══════════════════════════════════════════════════
   WooCommerce Overrides
   ══════════════════════════════════════════════════ */
body .woocommerce a.button {
    font-weight: 400;
    padding: 15px 30px;
    border-radius: var(--miniradius);
    background: var(--uicolor);
    color: #000;
}

body .woocommerce a.button:hover {
    background: #0d1319;
    color: #fff;
}

.woocommerce-notices-wrapper:empty {
    display: none;
}

/* ══════════════════════════════════════════════════
   Pagination
   ══════════════════════════════════════════════════ */
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: var(--miniradius);
    border: 1px solid var(--diver);
    font-size: 16px;
    transition: all .2s;
    margin: 0 3px;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--uicolor);
    border-color: var(--uicolor);
    color: #000;
}

.pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3px;
}

/* ══════════════════════════════════════════════════
   Widget Styles
   ══════════════════════════════════════════════════ */
.widget {
    margin-bottom: 150px;
    position: relative;
}

.widget-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Footer Widgets */
.footer-widget {
    flex: 1;
    min-width: 200px;
}

.footer-widget .widget-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li a {
    display: block;
    padding: 6px 0;
    color: var(--secondarytext);
    font-size: 15px;
    transition: color .2s;
}

.footer-widget ul li a:hover {
    color: var(--uicolor);
}

/* ══════════════════════════════════════════════════
   Popup
   ══════════════════════════════════════════════════ */
.custom-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
}

.custom-popup.active {
    display: flex;
}

.custom-popup .popup-container {
    background: #fff;
    border-radius: var(--largeradius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

/* ══════════════════════════════════════════════════
   Hover & Transition Utilities
   ══════════════════════════════════════════════════ */
.hoverable {
    cursor: pointer;
    transition: all 150ms ease;
}

.hoverable:hover {
    background: var(--bghover);
}

.activable:active {
    transform: scale(0.96);
}

.unline:hover {
    text-decoration: underline;
}

/* Lazy Loading Images */
img.lazy {
    opacity: 0;
    transition: opacity .3s ease;
}

img.lazy.loaded {
    opacity: 1;
}
