* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

.rprice {
    font-size: 20px;
    font-weight: bold;
}

.sprice {
    font-size: 25px;
    font-weight: bold;
}

.sprice small {
    font-size: 14px;
    font-weight: normal;
}

.text-color-theme.product-sort-title {
    min-block-size: 35px;
}

.btn-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-section .item {
    display: flex;
    justify-content: space-evenly;
    gap: 5px;
}

@media screen and (max-width: 500px) {
    .p-md-4 {
        padding: 4px !important;
    }
}

@media screen and (max-width: 400px) {
    .quick-order {
        font-size: 12px;
    }
}

.quickOrderForm .form-control,
.form-select {
    display: block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.increamenter {
    max-width: 100px !important;
}

.increamenter .form-control {
    text-align: center;
    border: 0 !important;
    line-height: 30px !important;
    padding: 0 5px !important;
    -webkit-appearance: textfield !important;
}

.top-section.navbar {
    padding: 0;
}

.top-section .navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}


.top-section .nav-link {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top-section .header-icons .bi {
    font-size: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.top-section .cart-badge,
.top-section .wish-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff4757;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 50%;
}

.top-section .top-logo-section {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.top-section .top-logo-section .logo img {
    width: auto;
    height: 55px;
    border-radius: 5px;
}

.top-section .top-logo-section .com-info p {
    font-size: 25px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 22px;
}

.top-section .top-logo-section .com-info span {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark-mode .top-section .top-logo-section .com-info p,
.dark-mode .top-section .top-logo-section .com-info span {
    color: var(--gomobileuxpro-theme-color);
}

.title::after {
    width: 100px !important;
}

h1 {
    font-size: x-large;
}

h2 {
    font-size: x-large;
}

.category_item .category-card {
    background: var(--gomobileuxpro-theme-bg-2);
    border-radius: 16px;
    padding: 15px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category_item .category-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 18px rgba(var(--gomobileuxpro-theme-rgb), 0.25);
}

.category_item .cat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--gomobileuxpro-theme),
            var(--gomobileuxpro-theme-darken));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(var(--gomobileuxpro-theme-rgb), 0.35);
    transition: all 0.3s ease;
}

.category_item .cat-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.category_item .category-card:hover .cat-icon {
    background: linear-gradient(135deg,
            var(--gomobileuxpro-theme-lighten),
            var(--gomobileuxpro-theme));
    box-shadow: 0 6px 14px rgba(var(--gomobileuxpro-theme-rgb), 0.45);
}

.category_item .category-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 5px;
    text-transform: capitalize;
    color: var(--gomobileuxpro-theme-darken);
    background: linear-gradient(45deg, var(--gomobileuxpro-theme-darken), var(--gomobileuxpro-theme));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.dark-mode .category_item .category-title {
    color: var(--gomobileuxpro-theme-text-secondary);
    background: linear-gradient(45deg, var(--gomobileuxpro-theme-text-secondary), var(--gomobileuxpro-theme-text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-sort-title {
    text-decoration: none;
    font-weight: 600;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px !important;
    min-height: 45px;
}

.dark-mode .product-sort-title {
    color: var(--gomobileuxpro-theme-text-secondary) !important;
}

.product-box .product_img img {
    transition: 0.5s ease;
}

.product-box:hover .product_img img {
    transform: scale(1.1);
}

.product-price span {
    font-size: 20px;
    font-weight: bold;
}

del {
    text-decoration: revert !important;
    font-weight: bold;
}

ul {
    margin: 0;
    padding: 0;
}

.wish-card .card-body {
    display: flex;
    gap: 10px;
}

.wish-card .card-body .picture-box {
    flex-shrink: 0;
}

.wish-card .card-body .content-box {
    flex-shrink: 1;
    width: 100%;
}

.wish-card img {
    width: 100px;
    height: 100px;
}

.custom-input-group {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gomobileuxpro-theme-bg), var(--gomobileuxpro-theme-bg-2));
    border: 1px solid #e3e6ef;
    border-radius: 12px;
    padding: 6px 12px;
    transition: all 0.3s ease-in-out;
}

.custom-input-group:focus-within {
    border-color: #4f8cff;
    box-shadow: 0 4px 12px rgba(79, 140, 255, 0.25);
    background: linear-gradient(-135deg, var(--gomobileuxpro-theme-bg), var(--gomobileuxpro-theme-bg-2));
}

.custom-group-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gomobileuxpro-theme-text);
    font-size: 1.2rem;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.custom-input-group:focus-within .custom-group-text {
    color: var(--gomobileuxpro-theme-text);
}

.custom-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    background: transparent;
    color: var(--gomobileuxpro-theme-text);
    font-weight: 500;
    padding: 8px 0;
}

.custom-input::placeholder {
    color: #aaa;
    font-weight: 400;
}

/* Extra premium feel on hover */
.custom-input-group:hover {
    border-color: #d0d7e6;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}