/* Product Page Only Styles for Parama Solutions */
/* This file contains only product-specific styles without navbar/contact bar styles */

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #0056b3;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb-current {
    color: #6c757d;
    font-weight: 600;
}

/* Product Page Container */
.product-page-container {
    padding: 20px;
}

/* Container styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #29352f, #18131d);
    color: #ffc107;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23f4d03f" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23f7dc6f" opacity="0.2"/><circle cx="40" cy="70" r="1" fill="%23f4d03f" opacity="0.25"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* Product Page Container - Wide Layout */
.product-page-container {
    padding: 20px;
    background-color: #f5f5f5;
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Content Container */
.content {
    display: flex;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header i {
    font-size: 32px;
    color: #333;
}

/* Content layout */
.content {
    display: flex;
    padding: 50px;
    gap: 50px;
}

/* Left section styles */
.left-section {
    flex: 1.2;
    max-width: 650px;
}

.product-image {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.product-image:hover {
    transform: scale(1.02);
}

.product-description h3 {
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

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

.product-features {
    margin-top: 25px;
}

.product-features h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.product-features li i {
    color: #28a745;
    margin-right: 12px;
    font-size: 14px;
}

/* Size selection styles */
.size-section {
    margin-top: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.size-label {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.size-button {
    border: 2px solid #ddd;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    min-width: 90px;
}

.size-button:hover {
    border-color: #f4e942;
    background-color: #fffef0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.size-button.active {
    border-color: #f4e942;
    background-color: #f4e942;
    color: #333;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(244, 233, 66, 0.3);
}

.size-button.active::after {
    content: '✓';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #333;
}

/* Quantity selector */
.quantity-section {
    margin: 25px 0;
}

.quantity-label {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: bold;
}

.quantity-btn:hover {
    border-color: #ffc107;
    background-color: #ffc107;
    color: white;
    transform: scale(1.1);
}

.quantity-input {
    width: 90px;
    height: 45px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.add-to-cart, .quote-request {
    padding: 18px 35px;
    border: none;
    border-radius: 25px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
}

.add-to-cart {
    background: linear-gradient(135deg, #f4a742, #e89611);
    color: white;
    flex: 1;
    min-width: 220px;
}

.quote-request {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    flex: 1;
    min-width: 220px;
}

.add-to-cart:hover, .quote-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.add-to-cart:active, .quote-request:active {
    transform: translateY(0);
}

/* Right section styles */
.right-section {
    flex: 1;
    max-width: 550px;
}

.specs-section h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

/* Specifications table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.specs-table th {
    background-color: #f8f9fa;
    padding: 18px 15px;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    color: #333;
    font-size: 15px;
}

.specs-table td {
    padding: 15px 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    transition: background-color 0.3s ease;
    font-size: 15px;
}

.specs-table tr:hover td {
    background-color: #f8f9fa;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:last-child {
    border-right: none;
}

/* Additional specifications */
.additional-specs {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #28a745;
}

.additional-specs h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: bold;
    color: #333;
    font-size: 15px;
}

.spec-value {
    color: #555;
    font-size: 15px;
}

/* Contact Section */
.contact-section {
    background-color: #2c2c2c;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.contact-section h3 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: bold;
    color: white;
    font-size: 14px;
}

.contact-number {
    color: #f4e942;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.contact-number:hover {
    color: #fff;
    text-decoration: underline;
}

/* Phone number styling */
.phone-number {
    color: #ffc107;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 15px;
}

.phone-number:hover {
    color: #fff;
    text-decoration: underline;
}

/* Contact action buttons */
.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-btn {
    flex: 1;
    padding: 15px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 140px;
    font-size: 15px;
}

.email-btn {
    background-color: #007bff;
    color: white;
}

.call-btn {
    background-color: #28a745;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Related Products Section */
.related-products {
    margin-top: 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.related-container {
    padding: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.related-products h3 {
    font-size: 26px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 15px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.related-item {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.related-item:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.related-image {
    width: 90px;
    height: 90px;
    background-color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.related-item:hover .related-image {
    background-color: #e6a800;
    transform: scale(1.1);
}

.related-image i {
    font-size: 36px;
    color: white;
}

.related-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.related-item p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
}

.related-link {
    background-color: #2c2c2c;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
}

.related-link:hover {
    background-color: #ffc107;
    color: #333;
    transform: translateY(-2px);
}

/* Loading states */
.add-to-cart.loading {
    pointer-events: none;
    opacity: 0.7;
}

.add-to-cart.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success state */
.add-to-cart.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* Placeholder image for missing images */
.placeholder-image {
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 16px;
    flex-direction: column;
}

/* Responsive design */
@media (max-width: 1024px) {
    .content {
        padding: 30px;
        gap: 30px;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .related-container {
        padding: 30px;
    }
}


@media (max-width: 768px) {
    .product-page-container {
        padding: 10px;
    }
    
    .breadcrumb-container {
        padding: 0 10px;
    }
    
    .content {
        flex-direction: column;
        padding: 20px;
    }
    
    .header {
        font-size: 24px;
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .header i {
        font-size: 28px;
    }
    
    .product-image {
        height: 300px;
    }
    
    .size-options {
        justify-content: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .add-to-cart, .quote-request {
        width: 100%;
        min-width: auto;
    }
    
    .specs-table {
        font-size: 13px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 10px 8px;
    }
    
    .contact-info div {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .contact-btn {
        min-width: auto;
    }
    
    .related-container {
        padding: 20px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .quantity-selector {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header {
        font-size: 20px;
        padding: 12px;
    }
    
    .content {
        padding: 15px;
    }
    
    .size-button {
        padding: 10px 18px;
        font-size: 14px;
        min-width: 70px;
    }
    
    .specs-table {
        font-size: 11px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 8px 6px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    .breadcrumb-separator {
        margin: 0 5px;
    }
        .content {
        padding: 15px;
    }
}
/* Subsidiary Companies Section */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }
}

/* Product logo section under contact box styles */
/* Product logo section under contact box styles */
.prod-logo-section {
    margin-top: 15px;
    text-align: center;
    padding: 15px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.prod-logo-section:hover {
    background: transparent;
    transform: none;
}

.prod-logo-section .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.prod-logo-section .logo-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe) border-box;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
    object-fit: contain;
}

.prod-logo-section .logo-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    filter: brightness(1.05);
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea, #764ba2) border-box;
}

.prod-logo-section .placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 60px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)) padding-box,
                linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe) border-box;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.prod-logo-section .placeholder-image:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.01);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    border: 3px solid transparent;
    background: linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)) padding-box,
                linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea, #764ba2) border-box;
}

.prod-logo-section .company-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.prod-logo-section:hover .company-tagline {
    color: rgba(255, 255, 255, 1);
}

/* Animation classes */
.prod-logo-fade-in {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod-logo-fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Add shining animation keyframes */
@keyframes shine {
    0% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe) border-box;
    }
    25% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(90deg, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea) border-box;
    }
    50% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(135deg, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea, #764ba2) border-box;
    }
    75% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(180deg, #f5576c, #4facfe, #00f2fe, #667eea, #764ba2, #f093fb) border-box;
    }
    100% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(225deg, #4facfe, #00f2fe, #667eea, #764ba2, #f093fb, #f5576c) border-box;
    }
}

/* Auto-adjustable shiny border class */
.prod-logo-section .logo-image.shine-border {
    animation: shine 3s ease-in-out infinite;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .prod-logo-section {
        margin-top: 12px;
        padding: 12px 0;
    }

    .prod-logo-section .logo-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .prod-logo-section .placeholder-image {
        width: 100%;
        height: auto;
        min-height: 50px;
        font-size: 10px;
        padding: 12px;
    }

    .prod-logo-section .company-tagline {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .prod-logo-section {
        padding: 10px 0;
        margin-top: 10px;
    }

    .prod-logo-section .logo-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .prod-logo-section .placeholder-image {
        width: 100%;
        height: auto;
        min-height: 45px;
        font-size: 9px;
        padding: 10px;
    }

    .prod-logo-section .company-tagline {
        font-size: 0.75rem;
        margin-top: 6px;
    }
}

/* Dark theme support (optional) */
@media (prefers-color-scheme: dark) {
    .prod-logo-section {
        background: transparent;
    }
    
    .prod-logo-section:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}