/* Product Specifications Styling */
.product-specifications {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin: 30px 0;
}

.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.specs-table tr {
    transition: all 0.3s ease;
}

.specs-table tr:hover {
    background: #f8f9fa;
}

.specs-table td {
    padding: 12px 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    border-bottom: 1px solid #eee;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #666;
    width: 40%;
}

.specs-table td:last-child {
    color: #333;
    font-weight: 500;
}

/* Product Details Section */
.product-details-section {
    padding: 60px 0;
}

.product-gallery {
    margin-bottom: 30px;
}

.product-large-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.product-large-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-large-image img:hover {
    transform: scale(1.02);
}

.product-details {
    padding: 20px 0;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-type {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 30px;
}

.product-description h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* Enhanced Features and Suitability Sections */
.product-features,
.product-suitability {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-features:hover,
.product-suitability:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-features h3,
.product-suitability h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b6b;
    display: inline-block;
}

.product-suitability p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.ttm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ttm-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ttm-list li:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.ttm-list li i {
    color: #ff6b6b;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 18px;
}

/* Enhanced CTA Button */
.product-cta {
    margin-top: 40px;
    text-align: center;
}

.ttm-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.ttm-btn-color-skincolor {
    background: #ff6b6b;
    color: #fff;
    border: 2px solid #ff6b6b;
}

.ttm-btn-color-skincolor:hover {
    background: #ff5252;
    border-color: #ff5252;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Enhanced Feeding Guidelines Section */
.section-title {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.section-title .title-header {
    margin-bottom: 20px;
}

.section-title .title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b6b;
    display: inline-block;
}

.section-title .title-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.section-title .title-desc p {
    margin-bottom: 20px;
    font-style: italic;
}

.section-title .ttm-list li {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.section-title .ttm-list li:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.section-title .ttm-list li i {
    color: #ff6b6b;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .product-features,
    .product-suitability,
    .section-title {
        padding: 20px;
    }

    .product-features h3,
    .product-suitability h3,
    .section-title .title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .product-features,
    .product-suitability,
    .section-title {
        padding: 15px;
    }

    .ttm-list li {
        padding: 8px 12px;
        font-size: 14px;
    }

    .ttm-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Additional Information Section */
.section-title {
    margin-bottom: 30px;
}

.section-title .title-header {
    margin-bottom: 15px;
}

.section-title .title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.section-title .title-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.section-title .title-desc p {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .product-details-section {
        padding: 40px 0;
    }

    .product-title {
        font-size: 24px;
    }

    .product-gallery {
        margin-bottom: 40px;
    }

    .product-details {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .product-specifications {
        padding: 20px;
    }

    .specs-table td {
        padding: 10px;
        font-size: 14px;
    }

    .product-title {
        font-size: 22px;
    }

    .product-type {
        font-size: 15px;
    }

    .product-description h3,
    .product-features h3,
    .product-suitability h3 {
        font-size: 18px;
    }

    .ttm-list li {
        font-size: 14px;
    }
}

/* Product Header */
.product-header {
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.product-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1D2A4D, #2a3b6d);
}

.product-header .product-title {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.product-header .product-type {
    font-size: 22px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.product-header .product-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    position: relative;
}

/* Product Specifications */
.product-specifications {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-specifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1D2A4D, #2a3b6d);
}

.product-specifications h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1D2A4D;
    position: relative;
}

.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.specs-table tr {
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.specs-table tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.specs-table td {
    padding: 16px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    border-bottom: 1px solid #eee;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #666;
    width: 40%;
    border-radius: 8px 0 0 8px;
}

.specs-table td:last-child {
    color: #2c3e50;
    font-weight: 500;
    border-radius: 0 8px 8px 0;
}

/* Feature Items */
.feature-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1D2A4D, #2a3b6d);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 36px;
    color: #1D2A4D;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Product Suitability and Feeding Guidelines */
.product-suitability,
.feeding-guidelines {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-suitability::before,
.feeding-guidelines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1D2A4D, #2a3b6d);
}

.product-suitability h3,
.feeding-guidelines h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1D2A4D;
    position: relative;
}

.product-suitability p,
.feeding-guidelines p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.ttm-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.ttm-list li:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.ttm-list li i {
    color: #1D2A4D;
    margin-right: 15px;
    margin-top: 4px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.ttm-list li:hover i {
    transform: scale(1.1);
}

/* CTA Section */
.product-cta {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1D2A4D, #2a3b6d);
}

.ttm-btn {
    display: inline-block;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.ttm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.ttm-btn:hover::before {
    left: 100%;
}

.ttm-btn-color-skincolor {
    background: linear-gradient(45deg, #1D2A4D, #2a3b6d);
    color: #fff;
    border: none;
}

.ttm-btn-color-skincolor:hover {
    background: linear-gradient(45deg, #16213d, #1D2A4D);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 42, 77, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .product-header,
    .product-specifications,
    .product-suitability,
    .feeding-guidelines,
    .product-cta {
        padding: 25px;
    }

    .product-header .product-title {
        font-size: 32px;
    }

    .product-header .product-type {
        font-size: 18px;
    }

    .feature-item {
        padding: 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .product-header,
    .product-specifications,
    .product-suitability,
    .feeding-guidelines,
    .product-cta {
        padding: 20px;
    }

    .product-header .product-title {
        font-size: 28px;
    }

    .product-header .product-type {
        font-size: 16px;
    }

    .product-header .product-description {
        font-size: 14px;
    }

    .specs-table td {
        padding: 12px 15px;
        font-size: 14px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item h4 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .ttm-list li {
        padding: 12px 15px;
        font-size: 14px;
    }

    .ttm-btn {
        padding: 14px 35px;
        font-size: 14px;
    }
}

/* Section Title */
.section-title .title {
    border-bottom: 2px solid #1D2A4D;
}

/* Product Features */
.product-features h3,
.product-suitability h3 {
    border-bottom: 2px solid #1D2A4D;
}

/* Enhanced Hover Effects */
.specs-table tr:hover {
    border-color: #1D2A4D;
}

.feature-item:hover {
    border-color: #1D2A4D;
}

.ttm-list li:hover {
    border-color: #1D2A4D;
}

/* Button Shine Effect */
.ttm-btn::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Card Shadows */
.product-header,
.product-specifications,
.feature-item,
.product-suitability,
.feeding-guidelines,
.product-cta {
    box-shadow: 
        0 4px 20px rgba(29, 42, 77, 0.1),
        0 1px 3px rgba(29, 42, 77, 0.05);
}

/* Hover State Shadows */
.product-header:hover,
.product-specifications:hover,
.feature-item:hover,
.product-suitability:hover,
.feeding-guidelines:hover,
.product-cta:hover {
    box-shadow: 
        0 8px 25px rgba(29, 42, 77, 0.15),
        0 2px 5px rgba(29, 42, 77, 0.1);
}

/* Icon Colors */
.feature-item i,
.ttm-list li i {
    color: #1D2A4D;
}

/* Text Accent Colors */
.specs-table td:first-child {
    color: #1D2A4D;
}

/* Border Accents */
.specs-table tr,
.feature-item,
.ttm-list li {
    border: 1px solid rgba(29, 42, 77, 0.1);
}

/* Hover State Borders */
.specs-table tr:hover,
.feature-item:hover,
.ttm-list li:hover {
    border-color: rgba(29, 42, 77, 0.3);
}

/* Gradient Backgrounds */
.product-header,
.product-specifications,
.feature-item,
.product-suitability,
.feeding-guidelines,
.product-cta {
    background: linear-gradient(145deg, #ffffff, rgba(29, 42, 77, 0.02));
}

/* Active State Colors */
.ttm-btn:active {
    background: linear-gradient(45deg, #16213d, #1D2A4D);
    transform: translateY(1px);
}

/* Focus State */
.ttm-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 42, 77, 0.3);
}

/* Section Headers */
.section-title .title,
.product-features h3,
.product-suitability h3,
.feeding-guidelines h3 {
    color: #1D2A4D;
    border-bottom: 2px solid #1D2A4D;
}

/* List Item Icons */
.ttm-list li i {
    color: #1D2A4D;
    transition: all 0.3s ease;
}

.ttm-list li:hover i {
    transform: scale(1.1);
    color: #16213d;
}

/* Card Transitions */
.product-header,
.product-specifications,
.feature-item,
.product-suitability,
.feeding-guidelines,
.product-cta {
    transition: all 0.3s ease;
}

/* Hover State Transforms */
.product-header:hover,
.product-specifications:hover,
.feature-item:hover,
.product-suitability:hover,
.feeding-guidelines:hover,
.product-cta:hover {
    transform: translateY(-2px);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .product-header,
    .product-specifications,
    .feature-item,
    .product-suitability,
    .feeding-guidelines,
    .product-cta {
        box-shadow: 
            0 2px 10px rgba(29, 42, 77, 0.08),
            0 1px 2px rgba(29, 42, 77, 0.05);
    }
}



/* Rest of the product page styles remain with #1D2A4D */
.product-header::before,
.product-specifications::before,
.feature-item::before,
.product-suitability::before,
.feeding-guidelines::before,
.product-cta::before {
    background: linear-gradient(90deg, #1D2A4D, #2a3b6d);
}

.product-specifications h3,
.product-suitability h3,
.feeding-guidelines h3,
.section-title .title,
.product-features h3 {
    border-bottom: 2px solid #1D2A4D;
    color: #1D2A4D;
}

.feature-item i,
.ttm-list li i {
    color: #1D2A4D;
}

.specs-table td:first-child {
    color: #1D2A4D;
}

.specs-table tr,
.feature-item,
.ttm-list li {
    border: 1px solid rgba(29, 42, 77, 0.1);
}

.specs-table tr:hover,
.feature-item:hover,
.ttm-list li:hover {
    border-color: rgba(29, 42, 77, 0.3);
}

.product-header,
.product-specifications,
.feature-item,
.product-suitability,
.feeding-guidelines,
.product-cta {
    background: linear-gradient(145deg, #ffffff, rgba(29, 42, 77, 0.02));
}

.ttm-btn-color-skincolor {
    background: linear-gradient(45deg, #1D2A4D, #2a3b6d);
}

.ttm-btn-color-skincolor:hover {
    background: linear-gradient(45deg, #16213d, #1D2A4D);
    box-shadow: 0 6px 20px rgba(29, 42, 77, 0.4);
}

.ttm-btn:active {
    background: linear-gradient(45deg, #16213d, #1D2A4D);
}

.ttm-btn:focus {
    box-shadow: 0 0 0 3px rgba(29, 42, 77, 0.3);
}

.ttm-list li:hover i {
    color: #16213d;
} 