@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
}

/* Header */
.pagerm-header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 60px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pagerm-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pagerm-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagerm-header-logo img {
    max-height: 30px;
}

.pagerm-header-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 25px;
}



.pagerm-header-contact .pagerm-phone-number {
    font-size: 14px;
    color: #2b2150;
    font-weight: 600;
    text-decoration: none;
}


.breatcome-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 154px 0;
    position: relative;
    background-color: #2b2150;

    @media (max-width: 768px) {
        padding: 100px 0;
    }
}

.breatcome-content {
    position: relative;
    top: 52px;
}

.breatcome-title h1 {
    color: white;
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 17px;
}

.bratcome-text {
    position: absolute;
    right: 0;
    bottom: -119px;
    background: white;
    padding: 15px 19px;
}

.bratcome-text ul {
    list-style: none;
}

.bratcome-text ul li {
    display: inline-block;
    margin-right: 15px;
    color: #2b2150;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.bratcome-text ul li a {
    display: inline-block;
    color: #2b2150;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: .5s;
}

.bratcome-text ul li a::before {
    position: absolute;
    content: "/";
    left: 64px;
}

button.icons {
    border: 0;
    font-size: 18px;
    color: #fff;
    padding: 1px 15px;
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    width: 60px;
    background: #F60;
    border-radius: 0 3px 3px 0;
}

@media (max-width:768px) {

    .bratcome-text {
        display: none;
    }

    .breatcome-title h1 {
        font-size: 42px;
        margin-top: 10%;
    }
}

@media (max-width:480px) {

    .breatcome-title h1 {
        font-size: 32px !important;
    }
}


/* Products Area */
.products-area {
    padding: 80px 0;
}

.products-container {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sidebar */
.sidebar {
    flex: 0 0 280px;
    background: #eff1f3;
    padding: 31px;
    height: fit-content;
    width: 400px;
    float: left;
    margin-right: 42px;
}

.search-box {
    margin-bottom: 30px;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #2b2150;
    font-size: 16px;
}

.categories-title {
    font-size: 18px;
    font-weight: 600;
    color: #2b2150;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1c310;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-link:hover,
.category-link.active {
    color: #2b2150;
    font-weight: 600;
}

.category-link i {
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.category-count {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

/* Products Content */
.products-content {
    width: 100%;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.products-title {
    font-size: 28px;
    font-weight: 600;
    color: #2b2150;
}

.products-count {
    color: #777;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    position: relative;
}

.product-image img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f1c310;
    color: #2b2150;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
}

.product-badge.featured {
    background: #2b2150;
    color: white;
}

.product-content {
    padding: 25px;
}

.product-category {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #2b2150;
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-footer {
    text-align: right;
}

.product-btn {
    background: #2b2150;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-btn:hover {
    background: #f1c310;
    color: #2b2150;
}

/* Responsive */
@media (max-width: 992px) {
    .products-container {
        flex-direction: column;
    }

    .sidebar {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .pagerm-header-area {
        padding: 15px 20px;
    }

    .breatcome-area {
        padding: 80px 0;
    }

    .breatcome-title h1 {
        font-size: 36px;
    }
}

.pagination {
    display: flex;
    gap: 8px;
    padding: 15px 20px;
    border-radius: 12px;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #ddd;
    background: #fff;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

