/* Product Listing Page Styles */

/* Hero Section */
.products-hero {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.products-hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.intro-paragraph {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Product Listing Section */
.product-listing {
    padding: 60px 20px;
    background-color: #ffffff;
}

/* Commented out as not used in product_list.blade.php
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}*/

/* Product Card Styles - Commented out as not used in product_list.blade.php
.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 136, 112, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 136, 112, 0.1);
    border-color: rgba(26, 136, 112, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f9f9f9, #f0f7f5);
    padding: 25px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(26, 136, 112, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(26, 136, 112, 0.1));
}

.product-info {
    padding: 30px;
    position: relative;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #1a8870, transparent);
    opacity: 0.5;
    transition: width 0.4s ease, opacity 0.4s ease;
}

.product-card:hover .product-info::before {
    width: 60px;
    opacity: 0.8;
}

.product-info h3 {
    font-size: 22px;
    color: #222222;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: #1a8870;
}

.product-info p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-price {
    font-size: 24px;
    color: #1a8870;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.product-price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a8870;
    transition: width 0.3s ease;
    opacity: 0.5;
}

.product-card:hover .product-price {
    color: #106655;
    transform: translateY(-2px);
}

.product-card:hover .product-price::after {
    width: 100%;
}
*/

.btn-product {
    background: linear-gradient(135deg, #1a8870, #106655);
    color: white;
    border: none;
    width: 100%;
    margin: 15px 0 0 0;
    box-shadow: 0 4px 10px rgba(26, 136, 112, 0.15);
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #106655, #0a4e40);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 136, 112, 0.25);
    color: #FFFFFF;
}

.btn-product:hover::before {
    transform: translateX(100%);
}

/* Animation Styles - Commented out as not used in product_list.blade.php
.product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-card:nth-child(1) {
    transition-delay: 0.1s;
}

.product-card:nth-child(2) {
    transition-delay: 0.2s;
}

.product-card:nth-child(3) {
    transition-delay: 0.3s;
}

.product-card:nth-child(4) {
    transition-delay: 0.4s;
}
*/

/* Responsive Adjustments - Commented out as not used in product_list.blade.php
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
*/

/* Brand Message Styles */
.brand-message-container {
    max-width: 1200px;
    margin: 40px auto 0;
}

.brand-message {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

@media (min-width: 768px) {
    .brand-message {
        flex-direction: row;
        align-items: center;
    }
}

.brand-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 136, 112, 0.03) 0%, transparent 100%);
    z-index: 0;
}

.brand-message-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a8870, #106655);
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 0 15px rgba(26, 136, 112, 0.2);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .brand-message-icon {
        margin: 0 40px 0 0;
    }
}

.brand-message-icon i {
    font-size: 36px;
    color: #ffffff;
}

.brand-message-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.brand-message-content h3 {
    font-size: 24px;
    color: #222222;
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-align: center;
}

@media (min-width: 768px) {
    .brand-message-content h3 {
        text-align: left;
    }
}

.brand-message-content p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: center;
}

@media (min-width: 768px) {
    .brand-message-content p {
        text-align: left;
    }
}

.brand-message-actions {
    margin-top: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .brand-message-actions {
        text-align: left;
    }
}

.brand-message-actions .btn-product {
    display: inline-block;
    width: auto;
    min-width: 200px;
}
