/* Protection Page Specific Styles */

/* Protection Header */
.protection-page {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.protection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.protection-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.protection-header p {
    color: #666;
    font-size: 1.1rem;
}
.logoo{
    font-size: 2rem;
    color: white;
    font-weight: bold;
    margin-right: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  
/* Product Grid Layout */
.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 0.95rem;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-card .price {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-numbers span {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-numbers span.current {
    background-color: #007bff;
    color: white;
}

.page-numbers span:not(.current):hover {
    background-color: #f0f0f0;
}

.prev-page,
.next-page {
    padding: 0.5rem 1.25rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.prev-page:hover,
.next-page:hover {
    background-color: #e9ecef;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .protection-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .protection-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .protection-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .product-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .protection-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .pagination {
        flex-direction: column;
        gap: 1rem;
    }

    .protection-page {
        padding: 1rem;
    }
}

.add-to-cart {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.add-to-cart:active {
    transform: translateY(0);
    box-shadow: none;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.product-card h3 {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.product-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
    margin: 10px 0;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.protection-header {
    text-align: center;
    padding: 30px 0;
    background-color: #f8f9fa;
    margin-bottom: 20px;
}

.protection-header h1 {
    font-size: 32px;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .protection-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        padding: 15px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .product-card .price {
        font-size: 16px;
    }

    .add-to-cart {
        padding: 8px 16px;
        font-size: 13px;
    }
} 