.main-image {
    max-height: 400px;
    object-fit: contain;
}

.star-rating {
    display: flex;
    gap: 5px;
    cursor: pointer;
    font-size: 28px;
    color: #ccc;
}

.star-rating .star.selected,
.star-rating .star.hovered {
    color: #ffc107;
    /* gold */
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: fadeIn .25s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    transition: 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ddd;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Select2 */
/* Make Select2 match Bootstrap Input */
.select2-container .select2-selection--single {
    height: 48px !important;
    padding: 8px 12px;
    border: 1px solid #ced4da !important;
    border-radius: 6px !important;
    display: flex;
    align-items: center;
}

/* Placeholder text */
.select2-container .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
    font-size: 14px;
}

/* Selected text */
.select2-container .select2-selection__rendered {
    color: #212529 !important;
    line-height: 36px !important;
    font-size: 14px;
}

/* Remove blue outline */
.select2-container--default .select2-selection--single:focus {
    outline: none !important;
}

/* Dropdown arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 10px !important;
}

/* Move clear (x) button to the right */
.select2-container--default .select2-selection--single .select2-selection__clear {
    right: 35px !important;
    /* position inside input */
    left: auto !important;
    /* remove default left positioning */
    top: 50% !important;
    transform: translateY(-50%);
    position: absolute !important;
    font-size: 18px !important;
    color: #999;
    cursor: pointer;
}

/* Dropdown menu */
.select2-container .select2-dropdown {
    border-radius: 6px !important;
    border: 1px solid #ced4da !important;
}

/* Highlight item on hover */
.select2-results__option--highlighted {
    background-color: #0d6efd !important;
    color: white !important;
}

/* Dropdown item style */
.select2-results__option {
    padding: 8px 12px;
    font-size: 14px;
}

/* Clear button inside select */
.select2-selection__clear {
    top: 50% !important;
    transform: translateY(-50%);
}

/* Select2 Ends */


.cart-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: fadeSlide 0.4s ease-out;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-social a {
    color: #333;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #000;
    transform: translateY(-2px);
}

.filter-bar {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.filterRow,
.sortWrapper {
    display: inline-block !important;
    white-space: normal;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

/* Cart Page */

.cart-item-mobile {
    width: 100%;
    overflow: hidden;
}

.cart-item-mobile img {
    max-width: 70px;
    height: auto;
}

.cart-item-mobile button {
    border: none;
    background: transparent;
}

@media (max-width: 768px) {

    body,
    html {
        overflow-x: hidden !important;
    }

    :root {
        --primary-dark: #1a1a1a;
        --light-bg: #f5f7fa;
        --border: #e0e0e0;
        --text-gray: #666;
        --accent-gold: #d4af37;
        --danger-red: #e74c3c;
    }

    .cart-item-mobile {
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border: none;
        margin-bottom: 1rem;
        animation: slideInUp 0.4s ease-out;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .cart-item-header {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        position: relative;
    }

    .btn-remove-item {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(231, 76, 60, 0.1);
        color: var(--danger-red);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
        font-size: 0.9rem;
    }

    .btn-remove-item:active {
        background: rgba(231, 76, 60, 0.2);
        transform: scale(0.92);
    }

    .cart-item-img {
        width: 70px;
        height: 70px;
        border-radius: 10px;
        object-fit: cover;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
    }

    .cart-item-info {
        flex: 1;
        min-width: 0;
    }

    .cart-item-name {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-dark);
        word-break: break-word;
        line-height: 1.4;
    }

    .cart-item-details {
        padding: 1.25rem;
        background: #ffffff;
    }

    .detail-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--light-bg);
    }

    .detail-row:last-child {
        border-bottom: none;
    }

    .detail-label {
        font-size: 0.9rem;
        color: var(--text-gray);
        font-weight: 500;
    }

    .detail-value {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--primary-dark);
    }

    .qty-control-mobile {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--light-bg);
        border-radius: 10px;
        padding: 0.5rem;
    }

    .qty-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: #ffffff;
        border: 1px solid var(--border) !important;
        color: var(--primary-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 0.85rem;
    }

    .qty-btn:active {
        background: var(--accent-gold);
        color: var(--primary-dark);
        border-color: var(--accent-gold) !important;
        transform: scale(0.9);
    }

    .qty-value {
        min-width: 30px;
        text-align: center;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--primary-dark);
    }

    .detail-total {
        padding-top: 1rem;
        padding-bottom: 0;
        border-top: 2px solid var(--light-bg);
        border-bottom: none;
    }

    .detail-total .detail-value {
        font-size: 1.1rem;
        color: var(--accent-gold);
    }
}

/* Cart Page End */

/* Category Page */
@media (max-width: 768px) {
    .col-12.d-flex.justify-content-end.align-items-center.flex-wrap.gap-11 {
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        width: 100%;
    }

    .sortWrapper {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .sortWrapper select {
        width: 120px;
        font-size: 14px;
        padding: 5px 8px;
    }

    .filterRow {
        text-align: right;
    }

    .price-range-subtitle {
        font-size: 14px;
        display: block;
        margin-bottom: 4px;
    }

    .price-range {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 140px;
    }

    .price-range input[type="range"] {
        width: 100%;
    }
}

/* Category Page End */

/* Header Cart Icon */

.cart-icon-wrapper {
    position: relative;
}

.phCartBubble {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #000;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@media (max-width: 768px) {

    .cart-icon-wrapper {
        position: relative !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .cart-icon-wrapper .phCartBubble {
        top: -6px !important;
        right: -6px !important;
        width: 16px !important;
        height: 16px !important;
        font-size: 10px !important;
    }
}

/* Header Cart Icon Ends */
/* =========================
   Order Cards (My Orders)
========================= */

.order-card {
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.order-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.status-badge {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 999px;
}

/* =========================
   Order Details Page
========================= */

.order-detail-card {
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.order-detail-card .card-header {
    border-bottom: 1px solid #f1f1f1;
    padding: 16px 20px;
}

.order-detail-card .card-body {
    padding: 20px;
}

/* =========================
   Order Items Table
========================= */

.order-items-table th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #777;
}

.order-items-table td {
    padding: 16px 20px;
}

/* =========================
   Status Badge
========================= */

.order-status {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 999px;
}

/* =========================
   Order Summary
========================= */

.summary-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.summary-list .total-row {
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 12px;
    font-size: 16px;
}

/* =========================
   Address
========================= */

.address-text {
    line-height: 1.7;
    font-size: 14px;
    color: #444;
}

/* =========================
   Mobile Order Items
========================= */

.order-item-mobile {
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.order-item-mobile img {
    flex-shrink: 0;
}

/* Reduce shadows on smaller screens */
@media (max-width: 991px) {
    .order-detail-card {
        box-shadow: none;
    }
}

/* =========================
   Print-only Logo
========================= */

/* Hidden on screen */
.print-logo {
    display: none;
}

/* =========================
   PRINT STYLES
========================= */

@media print {

    .print-logo {
        display: block !important;
    }

    header,
    footer,
    .footerAreaWrap,
    nav,
    .btn,
    .breadcrumb,
    .whatsapp-float {
        display: none !important;
    }

    body {
        background: #fff;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .order-detail-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }

    .order-status {
        border: 1px solid #000 !important;
        background: none !important;
        color: #000 !important;
    }
}

.sidebarMenu .btn {
    border-radius: 6px;
}

/* =====================================================
 WISHLIST
===================================================== */

.wishlist-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-btn i {
    font-size: 15px;
}

.wishlist-btn:hover {
    transform: scale(1.05);
}

.wishlist-btn.active {
    background: #dc3545;
    color: #fff;
}

/* Position on product card */
.pcActionsList {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

@media (max-width: 768px) {
    .pcActionsList {
        top: auto;
        bottom: 10px;
        right: 10px;
        flex-direction: row;
    }
}

/* =====================================================
   SNACKBAR (FEEDBACK)
===================================================== */

#snackbar {
    visibility: hidden;
    min-width: 240px;
    max-width: 90%;
    background-color: #323232;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 16px 20px;
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 99999;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

#snackbar.success {
    background-color: #198754;
}

#snackbar.error {
    background-color: #dc3545;
}

#snackbar.show {
    visibility: visible;
    animation: slideUp 0.3s ease, fadeout 0.3s ease 2.7s;
}

@keyframes slideUp {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

/* =====================================================
   WISHLIST PAGE
===================================================== */

.wishlist-page {
    width: 100%;
    min-height: 60vh;
}

.wishlist-page h2 {
    font-weight: 600;
    font-size: clamp(22px, 5vw, 28px);
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

/* Card */
.wishlist-page .card {
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    background: #fff;
}

.wishlist-page .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

/* Image */
.wishlist-page .card-img-top {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #fafafa;
    width: 100%;
    transition: transform 0.3s ease;
}

.wishlist-page .card:hover .card-img-top {
    transform: scale(1.05);
}

/* Body */
.wishlist-page .card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Title */
.wishlist-page h6 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: #2d2d2d;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price */
.wishlist-page strong {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin: 4px 0;
}

/* =====================================================
   ACTION BUTTONS (DESKTOP)
===================================================== */

.wishlist-page .action-row {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.wishlist-page .move-to-cart {
    flex: 1;
    background: #1a1a1a;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.wishlist-page .move-to-cart:hover {
    background: #000;
    transform: translateY(-1px);
}

.wishlist-page .move-to-cart:active {
    transform: translateY(0);
}

/* Remove Button (Desktop: Hover Only) */
.wishlist-page .wishlist-remove {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #dc3545;
    background: transparent;
    color: #dc3545;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.wishlist-page .wishlist-remove i {
    font-size: 16px;
}

.wishlist-page .wishlist-remove:hover {
    background: #dc3545;
    color: #fff;
    transform: scale(1.05);
}

.wishlist-page .wishlist-remove:active {
    transform: scale(0.95);
}

/* =====================================================
   EMPTY STATE
===================================================== */

.wishlist-page .empty-state {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    border: 2px dashed #ddd;
}

.wishlist-page .empty-state-icon {
    font-size: 64px;
    color: #dc3545;
    margin-bottom: 20px;
    opacity: 0.8;
}

.wishlist-page .empty-state h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.wishlist-page .empty-state p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.wishlist-page .empty-state .btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.wishlist-page .empty-state .btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* =====================================================
   TABLET (768px - 991px)
===================================================== */
@media (max-width: 991px) {
    .wishlist-page .card-body {
        padding: 14px;
    }

    .wishlist-page h6 {
        font-size: 16px;
    }

    .wishlist-page strong {
        font-size: 16px;
    }

    .wishlist-page .move-to-cart {
        font-size: 12px;
        padding: 10px 12px;
    }
}

/* =====================================================
   MOBILE OPTIMIZATION (MAX 575px)
===================================================== */
@media (max-width: 575px) {
    .wishlist-page {
        padding: 1.5rem 0.75rem !important;
    }

    .wishlist-page h2 {
        text-align: center;
        margin-bottom: 1.25rem;
        font-size: 22px;
    }

    /* Cards in 2 columns */
    .wishlist-page .row {
        margin: 0 -8px;
    }

    .wishlist-page .row>div {
        padding: 0 8px;
        margin-bottom: 16px;
    }

    .wishlist-page .card-body {
        padding: 12px;
        gap: 6px;
    }

    .wishlist-page h6 {
        font-size: 15px;
        -webkit-line-clamp: 2;
    }

    .wishlist-page strong {
        font-size: 15px;
        margin: 2px 0;
    }

    /* =====================================================
       MOBILE: STACKED BUTTON LAYOUT (TOUCH-OPTIMIZED)
    ===================================================== */

    .wishlist-page .action-row {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    /* Move to Cart Button - Full Width, Prominent */
    .wishlist-page .move-to-cart {
        width: 100%;
        flex: none;
        font-size: 14px;
        font-weight: 600;
        padding: 13px 16px;
        min-height: 48px;
        border-radius: 12px;
        gap: 8px;
        letter-spacing: 0.2px;
    }

    .wishlist-page .move-to-cart i {
        font-size: 16px;
    }

    /* Remove Button - Full Width, Secondary Style */
    .wishlist-page .wishlist-remove {
        width: 100%;
        height: auto;
        min-height: 44px;
        padding: 11px 16px;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: scale(1) !important;
        border-radius: 12px;
        background: transparent;
        border: 2px solid #e0e0e0;
        color: #666;
        font-size: 13px;
        font-weight: 500;
        gap: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .wishlist-page .wishlist-remove i {
        font-size: 15px;
    }

    /* Active state for mobile remove button */
    .wishlist-page .wishlist-remove:active {
        background: #fef2f2;
        border-color: #dc3545;
        color: #dc3545;
        transform: scale(0.98) !important;
    }

    /* Empty state mobile */
    .wishlist-page .empty-state {
        padding: 60px 20px;
        border-radius: 16px;
    }

    .wishlist-page .empty-state-icon {
        font-size: 48px;
    }

    .wishlist-page .empty-state h3 {
        font-size: 20px;
    }

    .wishlist-page .empty-state p {
        font-size: 14px;
    }

    .wishlist-page .empty-state .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* =====================================================
   VERY SMALL MOBILE (MAX 374px)
===================================================== */
@media (max-width: 374px) {
    .wishlist-page .card-body {
        padding: 10px;
    }

    .wishlist-page h6 {
        font-size: 11px;
        min-height: 30px;
    }

    .wishlist-page strong {
        font-size: 14px;
    }

    .wishlist-page .move-to-cart {
        font-size: 13px;
        padding: 11px 12px;
        min-height: 44px;
    }

    .wishlist-page .wishlist-remove {
        font-size: 12px;
        padding: 10px 12px;
        min-height: 40px;
    }
}

/* =====================================================
   LOADING STATE
===================================================== */
.wishlist-page .card.loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.wishlist-page .card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1a1a1a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* =====================================================
   BUTTON DISABLED STATE
===================================================== */
.wishlist-page .move-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #999;
}

.wishlist-page .wishlist-remove:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Wishlist button */
.wishlist-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

.wishlist-toggle i {
    font-size: 16px;
    color: #333;
}

/* ACTIVE = WISHLISTED */
.wishlist-toggle.active {
    background: #dc3545;
}

.wishlist-toggle.active i {
    color: #fff;
}

/* Hover (desktop) */
@media (hover:hover) {
    .wishlist-toggle:hover {
        transform: scale(1.05);
    }
}

.wishlist-text-btn {
    width: auto;
    height: auto;
    border-radius: 30px;
    padding: 8px 14px;
}

.wishlist-text-btn i {
    font-size: 14px;
    color: #333;
}

.wishlist-text-btn.active {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.wishlist-text-btn.active i {
    color: #fff;
}

/* Modal backdrop blur */
.modal-backdrop.show {
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.55);
}

/* Modal content */
#authModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

/* Tabs */
#authModal .nav-tabs {
    border-bottom: none;
    justify-content: center;
}

#authModal .nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 10px 22px;
    transition: all 0.2s ease;
}

#authModal .nav-tabs .nav-link.active {
    color: #000;
    background: transparent;
    border-bottom: 2px solid #000;
}

/* Inputs */
#authModal .form-control {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

#authModal .form-control:focus {
    border-color: #000;
    box-shadow: none;
}

/* Buttons */
#authModal .btn-dark {
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

#authModal .btn-dark:hover {
    background-color: #111;
}

/* Error text */
#authModal .text-danger {
    font-size: 13px;
}

/* Tab animation */
#authModal .tab-pane {
    animation: fadeSlide 0.25s ease-in-out;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close button */
#authModal .auth-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#authModal .auth-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Home page product view */
.pcHeading {
    min-height: 48px;
    line-height: 1.2;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pcTitle {
    min-height: 20px;
    font-size: 13px;
}

.productColumn {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.productColumn .imgHolder {
    flex-shrink: 0;
}

.productColumn h4 {
    margin-top: auto;
}