.page-main {
    margin-top: 20px;
    margin: unset !important;
    max-width: 100% !important;
    padding: 30px;
    background: #EAEAEA;
}
.custom-banner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.coming-soon-title {
    font-size: 25px !important;
    text-transform: none !important;
}

.most-wanted-slider-container {
    background: #fff;
    padding: 20px 20px;
    margin: 20px;
    border-radius: 10px;
}

.egy-search-hero{
    background: #034ea2;
    color: #fff;
    padding: 64px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    border-radius: 10px;
}

#egy-search-input {
    border: none;
}

.egy-search-hero__inner{
    max-width: 1200px;
    width: 100%;
}

.egy-search-hero__title{
    font-weight: 700;
    font-size: 50px;
    margin: 0 0 16px;
    line-height: 1;
    letter-spacing: -1px;
}

/* subtitle */
.egy-search-hero__subtitle{
    font-size: 20px;
    margin: 0 0 32px;
    opacity: .95;
    font-weight: 500;
}

/* search form */
.egy-search-hero__form{
    display:flex;
    justify-content:center;
    margin-bottom: 36px;
}

.egy-search-hero__inputwrap{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius: 36px;
    padding: 12px 18px;
    width: 100%;
    max-width: 920px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* icon */
.egy-search-hero__icon{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
}

/* input */
.egy-search-hero__input{
    border: none;
    outline: none;
    font-size: 20px;
    width:100%;
    background: transparent;
    color: #333;
    font-weight: 500;
    padding: 6px 0;
}

/* hint text */
.egy-search-hero__hint{
    font-size: 18px;
    margin: 8px 0 0;
    opacity: .95;
}

/* responsive tweaks */
@media (max-width: 900px){
    .egy-search-hero__title{
        font-size: 44px;
    }
    .egy-search-hero__subtitle{
        font-size: 16px;
    }
    .egy-search-hero__input{
        font-size: 16px;
    }
}

@media (max-width: 480px){
    .egy-search-hero{
        padding: 40px 12px;
    }
    .egy-search-hero__title{
        font-size: 32px;
    }
}


.custom-categories {
    text-align: center;
    margin: 20px 0;
}
.custom-categories h2 {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-align: center;
    text-transform: none;
    margin: 40px;
}
.custom-categories ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.custom-categories ul li a {
    background: #1979c3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
}
.custom-categories ul li a:hover {
    background: #145a92;
}

.loading {
    text-align: center;
    font-size: 16px;
    color: #666;
}
.error {
    text-align: center;
    color: red;
    font-size: 16px;
}

.load-more-btn {
    margin: 20px auto;
    padding: 10px 20px;
    background: #1979c3;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}
.load-more-btn:hover {
    background: #145a92;
    color: #fff;
}

.custompage-banner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.custompage-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Product Grid Wrapper ===== */
.products-grid.sell-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
    justify-content: center;
}

/* ===== Product Ticket ===== */
.sell-products .product-ticket {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sell-products .product-ticket:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

/* ===== Product Image ===== */
.sell-products .product-image-wrapper-grid {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.sell-products .product-image-wrapper-grid img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.sell-products .product-ticket:hover .product-image-wrapper-grid img {
    transform: scale(1.05);
}

/* ===== Product Info ===== */
.sell-products .product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sell-products .product-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
    min-height: 44px;
}

.sell-products .product-name a {
    color: inherit;
    text-decoration: none;
}

.sell-products .product-name a:hover {
    color: #d90000;
}

/* ===== Price ===== */
.sell-products .old-price {
    color: #666;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: block;
}

/* ===== Sell Button ===== */
 .add-to-cart-btn {
    background: #1979c3;
    color: #fff !important;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 8px;
    display: inline-block;
}

.add-to-cart-btn:hover {
    background: linear-gradient(90deg, #034ea2, #1979c3);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(217,0,0,0.3);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .sell-products .product-image-wrapper-grid img {
        height: 180px;
    }
    .sell-products .product-info {
        padding: 12px;
    }
    .sell-products .product-name {
        font-size: 15px;
    }
    .sell-products .add-to-cart-btn {
        font-size: 13px;
        padding: 7px 18px;
    }
}

.sell-products-banner{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.faq-section {
    text-align: center;
    padding: 20px 20px;
    margin: 20px;
    border-radius: 10px;
}

.faq-container {
    margin: 0 auto;
    text-align: left;
}

.faq-title {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    border-bottom: 1px solid #e3e3e3;
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-toggle {
    font-size: 26px;
    color: #145A92;
    transition: transform 0.2s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin: 10px;
}

.faq-answer p {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(180deg);
}
