/* =================CART PAGE STARTS================= */

/* Cart Section */
.cart-section {
    padding: 40px 5% 60px;
    background: #f8f9fa;
}

.cart-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

/* Cart Items Wrapper */
.cart-items-wrapper {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
}

.cart-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
}

.cart-item-count {
    font-family: 'Google Sans', sans-serif;
    font-size: 13px;
    color: #999;
}

/* Loading */
.cart-loading {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.cart-loading i {
    font-size: 28px;
    color: #FF9900;
    display: block;
    margin-bottom: 10px;
}

.cart-loading p {
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
}

/* Empty Cart */
.cart-empty {
    text-align: center;
    padding: 50px 20px;
}

.cart-empty i {
    font-size: 52px;
    color: #ddd;
    display: block;
    margin-bottom: 12px;
}

.cart-empty h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 6px;
}

.cart-empty p {
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 24px;
    background: #1A1A1A;
    color: #FFFFFF;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-empty-btn:hover {
    background: #FF9900;
    color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.2);
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.cart-item-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.cart-item-name:hover {
    color: #FF9900;
}

.cart-item-sku {
    font-family: 'Google Sans', sans-serif;
    font-size: 11px;
    color: #bbb;
}

.cart-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FF9900;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-item-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    color: #1A1A1A;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-qty-btn:hover:not(:disabled) {
    background: #FF9900;
    border-color: #FF9900;
    color: #1A1A1A;
}

.cart-item-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cart-item-qty-input {
    width: 40px;
    height: 28px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    background: #FFFFFF;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px;
}

.cart-item-remove:hover {
    color: #dc3545;
}

.cart-item-subtotal {
    text-align: right;
    min-width: 80px;
}

.cart-item-subtotal span {
    font-family: 'Google Sans', sans-serif;
    font-size: 11px;
    color: #aaa;
    display: block;
}

.cart-item-subtotal strong {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
}

/* Cart Summary */
.cart-summary-wrapper {
    position: sticky;
    top: 90px;
    align-self: start;
}

.cart-summary {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 24px 26px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.cart-summary h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1A1A1A;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 14px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #666;
}

.summary-row span:last-child {
    font-weight: 500;
    color: #1A1A1A;
}

.summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 10px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    background: linear-gradient(135deg, #FF9900, #e68a00);
    color: #1A1A1A;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 153, 0, 0.3);
    background: linear-gradient(135deg, #e68a00, #cc7a00);
    color: #FFFFFF;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Google Sans', sans-serif;
    font-size: 13px;
    color: #999;
    text-decoration: none;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: #FF9900;
}

/* Toast Notification */
.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid #48bb78;
}

.cart-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast i {
    font-size: 16px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cart-summary-wrapper {
        position: static;
    }

    .cart-items-wrapper {
        padding: 20px 22px;
    }
}

@media (max-width: 768px) {
    .cart-section {
        padding: 30px 4% 50px;
    }

    .cart-items-wrapper {
        padding: 16px 18px;
        border-radius: 12px;
    }

    .cart-header h2 {
        font-size: 18px;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .cart-item-name {
        font-size: 14px;
    }

    .cart-item-price {
        font-size: 14px;
    }

    .cart-item-actions {
        flex-wrap: wrap;
        gap: 8px;
    }

    .cart-item-qty-input {
        width: 36px;
        height: 26px;
        font-size: 12px;
    }

    .cart-item-qty-btn {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .cart-item-subtotal {
        min-width: auto;
        width: 100%;
        text-align: left;
        padding-left: 72px;
    }

    .cart-item-subtotal strong {
        font-size: 15px;
    }

    .cart-summary {
        padding: 20px 22px;
    }

    .cart-summary h3 {
        font-size: 16px;
    }

    .summary-total {
        font-size: 17px;
    }

    .checkout-btn {
        font-size: 14px;
        padding: 11px;
    }

    .cart-empty {
        padding: 35px 15px;
    }

    .cart-empty i {
        font-size: 42px;
    }

    .cart-empty h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cart-section {
        padding: 20px 3% 40px;
    }

    .cart-items-wrapper {
        padding: 12px 14px;
        border-radius: 10px;
    }

    .cart-header {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .cart-header h2 {
        font-size: 16px;
    }

    .cart-item-count {
        font-size: 12px;
    }

    .cart-item {
        padding: 10px 0;
        gap: 10px;
    }

    .cart-item-image {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .cart-item-name {
        font-size: 13px;
    }

    .cart-item-sku {
        font-size: 10px;
    }

    .cart-item-price {
        font-size: 13px;
    }

    .cart-item-actions {
        gap: 6px;
    }

    .cart-item-qty-input {
        width: 32px;
        height: 24px;
        font-size: 11px;
    }

    .cart-item-qty-btn {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .cart-item-remove {
        font-size: 12px;
    }

    .cart-item-subtotal {
        padding-left: 60px;
    }

    .cart-item-subtotal strong {
        font-size: 14px;
    }

    .cart-summary {
        padding: 16px 18px;
    }

    .cart-summary h3 {
        font-size: 15px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .summary-row {
        font-size: 13px;
        padding: 4px 0;
    }

    .summary-total {
        font-size: 16px;
        padding: 6px 0;
    }

    .checkout-btn {
        font-size: 13px;
        padding: 10px;
    }

    .continue-shopping {
        font-size: 12px;
    }

    .cart-empty {
        padding: 25px 10px;
    }

    .cart-empty i {
        font-size: 36px;
    }

    .cart-empty h3 {
        font-size: 16px;
    }

    .cart-empty p {
        font-size: 13px;
    }

    .cart-empty-btn {
        font-size: 12px;
        padding: 8px 18px;
    }

    .cart-toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 8px;
    }
}



/* ==============SHOP PAGE STARTS============= */

/* Products Section */

.products-section {
    padding: 60px 5%;
    background: #f8f9fa;
}
/* Mobile: Products Section */
@media (max-width: 768px) {
    .products-section {
        padding: 40px 4%;
    }
}
@media (max-width: 480px) {
    .products-section {
        padding: 30px 3%;
    }
}

.products-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Products Header */

.products-header {
    text-align: center;
    margin-bottom: 35px;
}
/* Mobile: Products Header */
@media (max-width: 768px) {
    .products-header {
        margin-bottom: 25px;
    }
}

.products-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #FF9900;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    background: rgba(255, 153, 0, 0.08);
    padding: 4px 18px;
    border-radius: 50px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 153, 0, 0.08);
}

.products-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
}
.products-title .products-highlight {
    color: #FF9900;
    position: relative;
}
.products-title .products-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 10px;
    border-radius: 50%;
    border-bottom: 4px solid #FF9900;
    opacity: 0.3;
    
}

.products-description {
    font-family: 'Google Sans', sans-serif;
    font-size: 15px;
    color: #2a2a3a;
    font-weight: 500;
}
/* Mobile: Products Title & Description */
@media (max-width: 768px) {
    .products-title {
        font-size: 26px;
    }
    .products-description {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .products-title {
        font-size: 22px;
    }
    .products-badge {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

/* Filters */

.products-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    background: #FFFFFF;
    padding: 18px 22px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
/* Mobile: Filters */
@media (max-width: 768px) {
    .products-filters {
        padding: 14px 16px;
        gap: 10px;
    }
}

.products-filter-group {
    flex: 1;
    min-width: 180px;
}

/* Custom Select Wrapper */
.custom-select-wrapper {
    position: relative;
    flex: 1;
    min-width: 180px;
}

.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: #fafafa;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    transition: all 0.3s ease;
}

.custom-select-trigger:hover {
    border-color: #ccc;
}

.custom-select-trigger.active {
    border-color: #FF9900;
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.06);
    background: #FFFFFF;
}

.custom-select-trigger i {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s ease;
}

.custom-select-trigger.active i {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.custom-select-options.open {
    display: block;
}

.custom-select-option {
    padding: 10px 16px;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    transition: all 0.2s ease;
}

.custom-select-option:hover {
    background: #f5f5f5;
}

.custom-select-option.active {
    background: rgba(255, 153, 0, 0.08);
    color: #FF9900;
    font-weight: 500;
}

.products-search-input {
    width: 100%;
    padding: 10px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    transition: all 0.3s ease;
    background: #fafafa;
    outline: none;
}
.products-search-input:focus {
    border-color: #FF9900;
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.06);
    background: #FFFFFF;
}
.products-search-input::placeholder {
    color: #aaa;
}

.products-select {
    width: 100%;
    padding: 10px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.products-select:focus {
    border-color: #FF9900;
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.06);
    background-color: #FFFFFF;
}

.products-filter-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.products-filter-btn {
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    background: linear-gradient(135deg, #24222c, #1e1e30);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.products-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.2);
    background: linear-gradient(135deg, #e68a00, #cc7a00);
    color: #FFFFFF;
}

.products-filter-reset {
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    background: transparent;
    color: #888;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.products-filter-reset:hover {
    border-color: #FF9900;
    color: #FF9900;
    background: rgba(255, 153, 0, 0.04);
    transform: translateY(-2px);
}

/* Mobile: Filter Elements */
@media (max-width: 768px) {
    .products-filter-group {
        min-width: 140px;
        flex: 1 1 100%;
    }
    .custom-select-wrapper {
        min-width: 140px;
        flex: 1 1 100%;
    }
    .products-filter-actions {
        flex: 1 1 100%;
    }
    .products-filter-btn,
    .products-filter-reset {
        flex: 1;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .products-search-input,
    .products-select,
    .custom-select-trigger {
        font-size: 13px;
        padding: 8px 14px;
    }
    .products-filter-btn,
    .products-filter-reset {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Results Info */

.products-results-info {
    text-align: center;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #888;
    margin-bottom: 18px;
}
/* Mobile: Results Info */
@media (max-width: 768px) {
    .products-results-info {
        font-size: 13px;
        margin-bottom: 14px;
    }
}

/* Products Grid */

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

.products-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-family: 'Google Sans', sans-serif;
    color: #888;
}
.products-loading i {
    font-size: 32px;
    color: #FF9900;
    display: block;
    margin-bottom: 10px;
}

/* Product Card - Redesigned */

.product-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    border: 1px solid #d9d9da;
    cursor: pointer;
    position: relative;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border-color: #e0e0e0;
}

.product-card.is-featured {
    border-color: rgba(255, 153, 0, 0.2);
}
.product-card.is-special {
    border-color: rgba(139, 92, 246, 0.2);
}

.product-card.is-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF9900, #e68a00);
    z-index: 2;
}
.product-card.is-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #6D28D9);
    z-index: 2;
}

/* Product Image */
.product-card-image {
    position: relative;
    height: 290px;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 16px;
}
.product-card:hover .product-card-image img {
    transform: scale(1.04);
}
.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: #ddd;
    font-size: 40px;
}

/* Badges - Bottom Left Corner */
.product-card-badges {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 5px;
    z-index: 2;
}
.product-card-badge {
    font-family: 'Google Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}
.product-card-badge.featured {
    background: #FF9900;
    color: #1A1A1A;
}
.product-card-badge.special {
    background: #8B5CF6;
    color: #FFFFFF;
}
.product-card-badge.sale {
    background: #dc3545;
    color: #FFFFFF;
}

/* Product Body - Different Layout */
.product-card-body {
    padding: 14px 16px 18px;
    background: #FFFFFF;
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.product-card-sku {
    font-family: 'Google Sans', sans-serif;
    font-size: 11px;
    color: #bbb;
}
.product-card-sale-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #FFFFFF;
    background: #dc3545;
    padding: 1px 10px;
    border-radius: 4px;
}

.product-card-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.product-card:hover .product-card-name {
    color: #FF9900;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}
.product-card-price .current {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #242c53;
}
.product-card-price .original {
    font-family: 'Google Sans', sans-serif;
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
}

/* Add to Cart - Full Width Button */
.add-to-cart-btn {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 10px 0;
    background: #1A1A1A;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #FF9900, #e68a00);
    color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.15);
}

/* Mobile: Product Card */
@media (max-width: 768px) {
    .product-card-image {
        height: 220px;
    }
    .product-card-name {
        font-size: 13px;
    }
    .product-card-price .current {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .product-card-image {
        height: 190px;
    }
    .product-card-image img {
        padding: 12px;
    }
    .product-card-body {
        padding: 10px 12px 14px;
    }
    .product-card-name {
        font-size: 12px;
    }
    .product-card-sku {
        font-size: 10px;
    }
    .product-card-price .current {
        font-size: 17px;
    }
    .product-card-price .original {
        font-size: 12px;
    }
    .add-to-cart-btn {
        font-size: 13px;
        padding: 8px 0;
    }
    .add-to-cart-btn i {
        display: none;
    }
    .product-card-badge {
        font-size: 10px;
        padding: 2px 10px;
    }
}

/* Pagination */

.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.products-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: #FFFFFF;
    color: #1A1A1A;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products-page-btn:hover:not(:disabled):not(.active) {
    border-color: #FF9900;
    color: #FF9900;
    transform: translateY(-2px);
}
.products-page-btn.active {
    background: linear-gradient(135deg, #FF9900, #e68a00);
    color: #1A1A1A;
    border-color: #FF9900;
}
.products-page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.products-page-dots {
    color: #aaa;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    padding: 0 4px;
}
/* Mobile: Pagination */
@media (max-width: 768px) {
    .products-pagination {
        gap: 4px;
        margin-top: 25px;
    }
    .products-page-btn {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 10px;
    }
}
@media (max-width: 480px) {
    .products-page-btn {
        min-width: 30px;
        height: 30px;
        font-size: 12px;
        padding: 0 8px;
    }
}



