/* ========================================
   PRODUCTS PAGE STYLES
   ======================================== */

/* Page Header - Products */
.page-header-products {
    background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header-products::before {
    content: '🐾';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    right: -50px;
    top: -50px;
    transform: rotate(-15deg);
}

.page-header-products::after {
    content: '🦴';
    position: absolute;
    font-size: 150px;
    opacity: 0.05;
    left: -30px;
    bottom: -30px;
    transform: rotate(15deg);
}

.page-header-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-tag {
    display: inline-block;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

.page-description {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.7;
}

/* Section Headers */
.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-header-center h2 {
        font-size: 2.5rem;
    }
}

.section-header-center p {
    font-size: 1.125rem;
    color: #6B7280;
}

.section-tag {
    display: inline-block;
    background: #FEF3C7;
    color: #D97706;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Product Categories Section */
.product-categories-section {
    padding: 5rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
}

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

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.category-content p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    color: #F97316;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.category-link:hover {
    color: #EA580C;
    gap: 0.5rem;
}

/* Featured Products Section */
.featured-products-section {
    padding: 5rem 0;
    background: #F9FAFB;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
}

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

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #FFF7ED;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-badge.new {
    background: linear-gradient(135deg, #10B981, #059669);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.feature-tag {
    background: #F3F4F6;
    color: #4B5563;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-inquiry {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    text-align: center;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-inquiry:hover {
    background: linear-gradient(135deg, #EA580C, #C2410C);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
    color: white;
}

/* Customization CTA */
.customization-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 50%, #C2410C 100%);
    position: relative;
    overflow: hidden;
}

.customization-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .cta-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-text h2 {
        font-size: 2.5rem;
    }
}

.cta-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-features li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-action {
    display: flex;
    justify-content: center;
}

.btn-cta-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: white;
    color: #F97316;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn-cta-large span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
    margin-top: 0.25rem;
}

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    color: #EA580C;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: white;
}

.features-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid-simple {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    text-align: center;
}

.feature-icon-circle {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #FFF7ED, #FED7AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6B7280;
    font-size: 0.9rem;
}
