/* Full Width Override for Single Post */
.single-post-redesigned {
    max-width: none !important;
    width: 90% !important;
    margin: 0 auto !important;
}

.single-post-redesigned .site-content {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-post-redesigned #primary {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-post-redesigned #content {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override any theme width constraints */
body.single .site {
    max-width: none !important;
    width: 90% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-shadow: none !important;
}

body.single .site-content {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Two Column Layout Styles */
.two-column-layout {
    display: flex;
    gap: 30px;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content-column {
    flex: 0 0 70%;
    min-width: 0; /* Prevents flex item from overflowing */
}

.sidebar-column {
    flex: 0 0 30%;
    min-width: 0;
}

/* Product Grid Styles */
.product-grid-container {
    background-color: #f8f9fa;
    padding: 30px 20px;
    margin: 0;
    border-radius: 8px;
    position: sticky;
    top: 20px;
}

.product-grid-title {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.product-image img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 11px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    margin: 0 0 6px 0;
    height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-rating {
    margin: 6px 0;
    display: flex;
    justify-content: center;
    gap: 1px;
}

.star {
    font-size: 12px;
    color: #ddd;
}

.star.filled {
    color: #ffc107;
}

.product-price {
    margin-top: 6px;
}

.price-label {
    font-size: 10px;
    color: #666;
    display: block;
    margin-bottom: 2px;
}

.price-amount {
    font-size: 12px;
    font-weight: 600;
    color: #2c5aa0;
}

.product-card a{
    text-decoration: none !important;
}
/* Responsive Design */
@media (max-width: 1024px) {
    /* Tablet - 95% width */
    .single-post-redesigned {
        width: 95% !important;
    }
    
    body.single .site {
        width: 95% !important;
    }
    
    .two-column-layout {
        gap: 20px;
        padding: 0 15px;
    }
    
    .main-content-column {
        flex: 0 0 65%;
    }
    
    .sidebar-column {
        flex: 0 0 35%;
    }
    
    .product-grid-container {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    /* Mobile - 100% width */
    .single-post-redesigned {
        width: 100% !important;
        margin: 0 !important;
    }
    
    body.single .site {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .two-column-layout {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px !important;
    }
    
    .main-content-column,
    .sidebar-column {
        flex: none;
        width: 100%;
    }
    
    .product-grid-container {
        position: static;
        margin: 30px 0 0 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-image img {
        max-width: 80px;
        max-height: 80px;
    }
    
    .product-name {
        font-size: 13px;
        height: 36px;
    }
    
    .star {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Small Mobile - 100% width */
    .single-post-redesigned {
        width: 100% !important;
        margin: 0 !important;
    }
    
    body.single .site {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-grid-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .product-card {
        padding: 12px;
    }
    
    .product-image {
        height: 100px;
    }
    
    .product-image img {
        max-width: 70px;
        max-height: 70px;
    }
    
    .product-name {
        font-size: 12px;
        height: 32px;
    }
    
    .price-amount {
        font-size: 13px;
    }
}

/* Custom Fields Styling */
.quote-box {
    background-color: #feddb2;
    border: 4px solid #fda839;
    border-radius: 5px;
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
}

.quote-box .quote-heading {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
    border: none;
    padding: 0;
    font-style: normal;
}

.quote-box .quote-heading span.highlight {
    background-color: #ffff00;
    padding: 2px 4px;
}

.quote-box .quote-content {
    margin: 0;
}

.quote-box .quote-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.custom-post-fields {
