.tag-item:hover {
    background: var(--climate-primary);
    color: white;
    transform: translateY(-1px);
}

/* Blog Sidebar */
.blog-sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.widget-header {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    padding: 20px 25px;
}

.widget-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-content {
    padding: 25px;
}

/* Related Articles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-article {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f3f4;
}

.related-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-article-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
}

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

.related-article-image:hover img {
    transform: scale(1.1);
}

.related-article-content {
    flex: 1;
}

.related-article-title {
    font-size: 1rem;
    margin-bottom: 8px;
}
.article-title {
    font-size: 2rem!important;
}

.related-article-title a {
    color: var(--climate-dark);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-article-title a:hover {
    color: var(--climate-primary);
}

.related-article-meta {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.related-article-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Newsletter Widget */
.newsletter-widget {
    text-align: center;
}

.newsletter-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--climate-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

/* Popular Categories */
.popular-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fbff;
    border-radius: 8px;
    text-decoration: none;
    color: var(--climate-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item:hover {
    background: var(--climate-light);
    border-color: var(--climate-primary);
    color: var(--climate-dark);
    text-decoration: none;
    transform: translateX(5px);
}

.category-name {
    font-weight: 500;
}

.category-count {
    background: var(--climate-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

/* Blog Navigation */
.blog-navigation {
    padding: 40px 0;
    background: white;
    border-top: 1px solid #e9ecef;
}

.blog-nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.blog-nav-prev,
.blog-nav-next {
    display: flex;
}

.blog-nav-prev {
    justify-content: flex-start;
}

.blog-nav-next {
    justify-content: flex-end;
}

.blog-nav-wrapper .nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 25px;
    background: #f8fbff;
    border-radius: 12px;
    text-decoration: none;
    color: var(--climate-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width: 250px;
}

.blog-nav-wrapper .nav-link:hover {
    background: white;
    border-color: var(--climate-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.15);
    color: var(--climate-dark);
    text-decoration: none;
}

.nav-direction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--climate-primary);
    font-weight: 600;
}

.nav-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.nav-home-btn {
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.nav-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }

    .article-header {
        padding: 30px;
    }

    .article-footer {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .blog-breadcrumb {
        padding: 100px 0 40px 0;
    }

    .blog-breadcrumb-title {
        font-size: 2rem;
    }

    .article-title {
        font-size: 2.2rem;
    }

    .article-excerpt {
        font-size: 1.1rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .share-buttons {
        justify-content: center;
    }

    .blog-nav-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .blog-nav-prev,
    .blog-nav-next {
        justify-content: center;
    }

    .blog-nav-wrapper .nav-link {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .article-header {
        padding: 20px;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-footer {
        padding: 20px;
    }

    .widget-content {
        padding: 20px;
    }

    .related-article {
        flex-direction: column;
        gap: 10px;
    }

    .related-article-image {
        width: 100%;
        height: 200px;
    }

    .tags-list {
        justify-content: center;
    }
}
.in-stock {
    background: rgba(39, 174, 96, 0.1);
    color: var(--climate-success);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.out-of-stock {
    background: rgba(231, 76, 60, 0.1);
    color: var(--climate-danger);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Delivery Info */
.delivery-info {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(39, 174, 96, 0.1);
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--climate-dark);
}

.delivery-item:last-child {
    margin-bottom: 0;
}

.delivery-item i {
    color: var(--climate-success);
    width: 16px;
    text-align: center;
}

/* Add to Cart Section */
.add-to-cart-section {
    margin-bottom: 25px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--climate-dark);
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
    border: 1px solid #dee2e6;
}

.quantity-btn {
    background: none;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    color: var(--climate-primary);
    font-weight: bold;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--climate-primary);
    color: white;
}

.quantity-input {
    border: none;
    background: none;
    text-align: center;
    width: 60px;
    padding: 12px 8px;
    font-weight: 600;
    color: var(--climate-dark);
}

.quantity-input:focus {
    outline: none;
}

/* Action Buttons */
.action-buttons {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
}

.btn-add-to-cart,
.btn-notify {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-add-to-cart:hover,
.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    color: white;
}

.btn-wishlist,
.btn-compare {
    background: white;
    color: var(--climate-primary);
    border: 2px solid var(--climate-primary);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.btn-wishlist:hover,
.btn-compare:hover {
    background: var(--climate-primary);
    color: white;
    transform: translateY(-2px);
}

/* Product Features */
.product-features {
    padding: 20px;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.features-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--climate-dark);
    margin-bottom: 12px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: white;
    color: var(--climate-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(44, 90, 160, 0.2);
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: var(--climate-primary);
    color: white;
    transform: translateY(-1px);
}

/* Product Tabs Section */
.product-tabs-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.product-tabs {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-tabs .nav-tabs {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    border: none;
    padding: 0;
    margin: 0;
}

.product-tabs .nav-item {
    margin: 0;
}

.product-tabs .nav-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 20px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.product-tabs .nav-link:hover,
.product-tabs .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: transparent;
}

.product-tabs .nav-link.active {
    background: white;
    color: var(--climate-primary);
}

.tab-content-wrapper {
    padding: 30px;
}

.tab-content-wrapper h4 {
    color: var(--climate-dark);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.description-content,
.compatibility-content {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.description-content h1,
.description-content h2,
.description-content h3,
.description-content h4,
.description-content h5,
.description-content h6 {
    color: var(--climate-primary);
    margin-top: 25px;
    margin-bottom: 15px;
}

.description-content p {
    margin-bottom: 15px;
}

.description-content ul,
.description-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.description-content li {
    margin-bottom: 5px;
}

/* Specifications Table */
.specifications-table {
    overflow-x: auto;
}

.specifications-table .table {
    margin: 0;
    background: white;
}

.specifications-table .table td {
    border-color: #e9ecef;
    padding: 15px;
    vertical-align: middle;
}

.spec-name {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--climate-dark);
    width: 40%;
}

.spec-value {
    color: #555;
    font-weight: 500;
}

.no-specs,
.no-reviews {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 40px 20px;
}

/* Reviews Section */
.reviews-summary {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.rating-overview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.avg-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--climate-primary);
    display: block;
    line-height: 1;
}

.avg-rating .stars {
    margin: 10px 0;
    justify-content: center;
}

.total-reviews {
    color: #6c757d;
    font-size: 0.9rem;
}

.login-btn {
    transition: all 0.2s ease;
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3) !important;
    min-height: 48px !important;
    height: 48px !important;
}

.login-btn:hover {
    background-color: #0056b3 !important;

    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn-wishlist,
    .btn-compare {
        width: 100%;
        height: auto;
        padding: 12px 20px;
    }
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
}

.login-btn:active,
.login-btn:focus,
.login-btn.active {
    background-color: #004085 !important;
    border-color: #004085 !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4) !important;
    transform: none !important;
    min-height: 48px !important;
    height: 48px !important;
}

.login-btn:focus-visible {
    outline: 2px solid #0d6efd !important;
    outline-offset: 2px !important;
}

/* Ensure button doesn't change size on any state */
.login-btn,
.login-btn:hover,
.login-btn:active,
.login-btn:focus {
    padding: 0.75rem 1rem !important;
    line-height: 1.2 !important;
}

    .product-details-section {
        padding: 20px 0;
    }

    .main-image-container {
        padding: 20px;
        margin-bottom: 15px;
    }

    .main-product-image {
        height: 300px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .product-tabs .nav-link {
        padding: 15px 12px;
        font-size: 0.85rem;
    }

    .tab-content-wrapper {
        padding: 20px;
    }

    .attributes-list {
        grid-template-columns: 1fr;
    }

    .quantity-controls {
        width: 100%;
    }
/* Shopping Cart Sidebar Styles */
    .quantity-input {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .product-breadcrumb {
        padding: 15px 0;
    }

    .product-breadcrumb .breadcrumb {
        font-size: 0.8rem;
    }

    .thumbnail-images .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .features-list {
        flex-direction: column;
    }

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

    .product-tabs .nav-link {
        padding: 12px 8px;
        font-size: 0.8rem;
    }

    .product-tabs .nav-link i {
        display: none;
    }
}
.shopping-cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.shopping-cart-sidebar.show {
    right: 0;
}

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cart-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.cart-close-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cart-close-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cart-close-icon {
    width: 20px;
    height: 20px;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.cart-empty-state {
    text-align: center;
    padding: 40px 24px;
    color: #6c757d;
}

.cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.cart-item {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 16px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.cart-item-name a {
    color: inherit;
    text-decoration: none;
}

.cart-item-name a:hover {
    color: #667eea;
}

.cart-item-variant {
    font-size: 0.85rem;
    color: #6c757d;
}

.cart-item-pricing {
    margin-bottom: 12px;
}

.cart-current-price {
    font-weight: 600;
    color: #28a745;
    margin-right: 8px;
}

.cart-old-price {
    font-size: 0.85rem;
    color: #6c757d;
    text-decoration: line-through;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
}

.quantity-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 600;
    color: #667eea;
    transition: background-color 0.2s ease;
}

.quantity-btn:hover {
    background-color: #e9ecef;
}

.quantity-input {
    border: none;
    background: none;
    text-align: center;
    width: 50px;
    padding: 8px 4px;
    font-weight: 500;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.remove-item-btn:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.cart-summary {
    padding: 20px 24px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cart-total-label {
    font-weight: 500;
    color: #333;
}

.cart-total-amount {
    font-weight: 700;
    color: #28a745;
    font-size: 1.2rem;
}

.cart-refresh-btn {
    width: 100%;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
}

.cart-refresh-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.cart-actions {
    display: flex;
    gap: 12px;
}

.cart-action-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.checkout-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.cart-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

/* Cart Icon Styles */
.cart-icon {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-badge {
    font-size: 0.75rem;
    min-width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Climate Webshop Styles */
:root {
    --climate-primary: #2c5aa0;
    --climate-secondary: #1e3a5f;
    --climate-accent: #3498db;
    --climate-light: #e8f4fd;
    --climate-success: #27ae60;
    --climate-warning: #f39c12;
    --climate-danger: #e74c3c;
    --climate-dark: #2c3e50;
    --climate-gray: #95a5a6;
}

/* General Shop Layout */
.shop__section {
    background-color: #f8fbff;
    min-height: 70vh;
}

.section--padding {
    padding: 60px 0;
}

/* Breadcrumb Styles */
.breadcrumb__section {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    padding: 40px 0;
    position: relative;
}

.breadcrumb__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 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.breadcrumb__content--title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb__content--menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb__content--menu__items {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.breadcrumb__content--menu__items:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__content--menu__items a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb__content--menu__items a:hover {
    color: white;
}

/* Sidebar Styles */
.shop__sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
    padding: 0;
    overflow: hidden;
}

.filter__widget {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0 !important;
}

.filter__widget:last-child {
    border-bottom: none;
}

.filter__widget--title {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    padding: 20px 24px;
    margin: 0;
}

.filter__widget--title__text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.filter__widget--content {
    padding: 24px;
}

/* Brand Cards */
.brands__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.brand__card {
    background: #f8fbff;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand__card:hover {
    border-color: var(--climate-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
}

.brand__card--link {
    display: block;
    padding: 15px;
    text-decoration: none;
    text-align: center;
}

.brand__thumbnail--img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}

.brand__content--title {
    font-size: 0.9rem;
    color: var(--climate-dark);
    margin: 0;
    font-weight: 500;
}

/* Filter Options */
.price__ranges,
.features__list,
.attributes__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price__range--item,
.feature__item,
.attribute__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price__checkbox,
.feature__checkbox,
.attribute__checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--climate-primary);
}

.price__label,
.feature__label,
.attribute__label {
    font-size: 0.95rem;
    color: var(--climate-dark);
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Color indicator for color attributes */
.color__indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Collapsible Attributes */
.attribute__item--hidden {
    display: none;
}

.attribute__toggle {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f3f4;
}

.attribute__toggle--btn {
    background: none;
    border: none;
    color: var(--climate-accent);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.attribute__toggle--btn:hover {
    color: var(--climate-primary);
}

.attribute__toggle--btn i {
    transition: transform 0.3s ease;
}

.attribute__toggle--btn.expanded .toggle__text--more i {
    transform: rotate(180deg);
}

.toggle__text--more,
.toggle__text--less {
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Category Header */
.category__header {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(44, 90, 160, 0.08);
}

.category__title {
    color: var(--climate-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.product__count {
    color: var(--climate-gray);
    font-size: 1rem;
    font-weight: 400;
}

/* Shop Toolbar */
.shop__toolbar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort__select {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    background: white;
    color: var(--climate-dark);
    font-size: 0.9rem;
    min-width: 200px;
}

.sort__select:focus {
    outline: none;
    border-color: var(--climate-accent);
}

.view__toggle {
    display: flex;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 4px;
}

.view__btn {
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--climate-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.view__btn.active,
.view__btn:hover {
    background: var(--climate-primary);
    color: white;
}

/* Product Card Styles */
.climate__product {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.climate__product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.15);
}

.product__card--thumbnail {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
    padding: 20px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__card--thumbnail__img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.climate__product:hover .product__card--thumbnail__img {
    transform: scale(1.05);
}

.product__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product__badge {
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product__badge--sale {
    background: var(--climate-danger);
    color: white;
}

.product__badge--energy {
    background: var(--climate-success);
    color: white;
}

.product__badge--inverter {
    background: var(--climate-accent);
    color: white;
}

.product__quick--actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.climate__product:hover .product__quick--actions {
    opacity: 1;
    transform: translateX(0);
}

.quick__view--btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--climate-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.quick__view--btn:hover {
    background: var(--climate-primary);
    color: white;
    transform: scale(1.1);
}

.product__card--content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product__brand {
    margin-bottom: 8px;
}

.brand__name {
    font-size: 0.8rem;
    color: var(--climate-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product__card--title {
    margin-bottom: 12px;
    flex: 1;
}

.product__card--title a {
    color: var(--climate-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product__card--title a:hover {
    color: var(--climate-primary);
}

.product__features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.feature__tag {
    background: var(--climate-light);
    color: var(--climate-primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating__stars {
    display: flex;
    gap: 2px;
}

.rating__stars i {
    color: #ddd;
    font-size: 0.9rem;
}

.rating__stars i.active {
    color: #ffc107;
}

.rating__count {
    font-size: 0.8rem;
    color: var(--climate-gray);
}

.product__card--price {
    margin-bottom: 12px;
}

.current__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--climate-primary);
}

.old__price {
    font-size: 1rem;
    color: var(--climate-gray);
    text-decoration: line-through;
    margin-left: 8px;
}

.savings__info {
    margin-top: 4px;
}

.savings__amount {
    font-size: 0.8rem;
    color: var(--climate-success);
    font-weight: 600;
}

.delivery__info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 8px 12px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--climate-success);
}

.product__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.climate__btn {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.climate__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
    color: white;
    text-decoration: none;
}

.climate__btn--outline {
    background: transparent;
    border: 2px solid var(--climate-primary);
    color: var(--climate-primary);
    padding: 10px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex: none;
}

.climate__btn--outline:hover {
    background: var(--climate-primary);
    color: white;
}

/* No Products State */
.no__products {
    background: white;
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
}

.no__products--title {
    color: var(--climate-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.no__products--text {
    color: var(--climate-gray);
    font-size: 1rem;
}

/* Climate Banner */
.climate__banner {
    position: relative;
    overflow: hidden;
}

.climate__banner::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 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path></svg>') no-repeat top;
    background-size: cover;
}

.climate__title {
    font-size: 2rem;
    font-weight: 700;
}

.climate__text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.climate__cta {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.climate__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===============================================
   PRODUCT SHOW PAGE STYLES
   =============================================== */

/* Product Breadcrumb */
.product-breadcrumb {
    background: linear-gradient(135deg, #127fb8 0%, #7ab0e8 100%);
    padding: 160px 0 30px 0; /* Increased top padding even more for better spacing */
    border-bottom: 1px solid #dee2e6;
    position: relative;
    z-index: 100; /* Ensure it's above other elements but below header */
    margin-top: 0;
}

.product-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

.product-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.product-breadcrumb .breadcrumb-item a:hover {
    color: white;
}

.product-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Product Details Section */
.product-details-section {
    padding: 40px 0;
    background: #fff;
}

/* Product Image Gallery */
.product-image-gallery {
    position: sticky;
    top: 20px;
}

.main-image-container {
    position: relative;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.1);
}

.main-product-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.main-image-container:hover .main-product-image {
    transform: scale(1.05);
}

.product-sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    animation: pulse-sale 2s infinite;
}

@keyframes pulse-sale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thumbnail-images {
    margin-top: 15px;
}

.thumbnail-image {
    height: 80px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-image:hover,
.thumbnail-image.active {
    border-color: var(--climate-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

/* Product Information */
.product-info {
    padding-left: 30px;
}

.product-brand {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.brand-name {
    background: linear-gradient(135deg, var(--climate-accent) 0%, var(--climate-primary) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--climate-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0;
}

.product-sku {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.sku-label {
    color: #6c757d;
    font-weight: 500;
}

.sku-value {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--climate-dark);
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f4;
}

.product-rating .stars {
    display: flex;
    gap: 3px;
}

.product-rating .stars i {
    font-size: 1.1rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.product-rating .stars i.filled {
    color: #ffc107;
}

.rating-count {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Product Pricing */
.product-pricing {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
    border-radius: 12px;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--climate-primary);
    line-height: 1;
}

.original-price {
    font-size: 1.3rem;
    color: #6c757d;
    text-decoration: line-through;
}

.savings {
    background: var(--climate-success);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
    animation: pulse-savings 3s infinite;
}

@keyframes pulse-savings {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Product Attributes */
.product-attributes {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.attributes-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--climate-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.attributes-title::before {
    content: "✓";
    background: var(--climate-success);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.attributes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.attribute-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

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

.attr-name {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
}

.attr-value {
    color: var(--climate-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Stock Status */
.stock-status {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stock-status.in-stock {
    background: rgba(39, 174, 96, 0.1);
    color: var(--climate-success);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.stock-status.out-of-stock {
    background: rgba(231, 76, 60, 0.1);
    color: var(--climate-danger);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Related Products Section */
.related-products-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
}

.related-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--climate-primary) 50%, transparent 100%);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--climate-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-title .text-primary {
    color: var(--climate-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.related-product-card {
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.related-product-card:hover {
    border-color: var(--climate-primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.2);
}

.related-product-card .product__card--thumbnail {
    position: relative;
    min-height: 200px;
}

.related-product-card .product__card--thumbnail__img {
    height: 180px;
    width: 100%;
    object-fit: contain;
}

.related-product-card .product__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.related-product-card .product__quick--actions {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.related-product-card:hover .product__quick--actions {
    opacity: 1;
    transform: translateX(0);
}

.related-product-card .product__card--content {
    padding: 20px;
    background: white;
}

.related-product-card .product__brand {
    margin-bottom: 10px;
}

.related-product-card .brand__name {
    font-size: 0.8rem;
    color: var(--climate-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-product-card .product__card--title {
    margin-bottom: 12px;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.related-product-card .product__card--title a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--climate-dark);
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.related-product-card .product__card--title a:hover {
    color: var(--climate-primary);
}

.related-product-card .product__rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-product-card .rating__stars {
    display: flex;
    gap: 2px;
}

.related-product-card .rating__stars i {
    font-size: 0.85rem;
    color: #ddd;
}

.related-product-card .rating__stars i.active {
    color: #ffc107;
}

.related-product-card .rating__count {
    font-size: 0.75rem;
    color: #6c757d;
}

.related-product-card .product__card--price {
    margin-bottom: 15px;
}

.related-product-card .current__price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--climate-primary);
}

.related-product-card .old__price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 8px;
}

.related-product-card .savings__info {
    margin-top: 5px;
}

.related-product-card .savings__amount {
    font-size: 0.75rem;
    color: var(--climate-success);
    font-weight: 600;
}

.related-product-card .delivery__info {
    margin-bottom: 15px;
    padding: 8px 12px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--climate-success);
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-product-card .product__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.related-product-card .climate__btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.related-product-card .climate__btn--outline {
    width: 40px;
    height: 40px;
    padding: 8px;
    flex: none;
}

.climate__btn--outline-large {
    background: white;
    border: 2px solid var(--climate-primary);
    color: var(--climate-primary);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.climate__btn--outline-large:hover {
    background: var(--climate-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
    text-decoration: none;
}

/* Responsive for Related Products */
@media (max-width: 768px) {
    .related-products-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .related-product-card .product__card--title {
        min-height: auto;
    }

    .related-product-card .product__actions {
        flex-direction: column;
    }

    .related-product-card .climate__btn--outline {
        width: 100%;
        height: auto;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .related-product-card .product__card--thumbnail {
        min-height: 160px;
    }

    .related-product-card .product__card--thumbnail__img {
        height: 140px;
    }
}

/* ===============================================
   BLOG SHOW PAGE STYLES
   =============================================== */

/* Blog Breadcrumb */
.blog-breadcrumb {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    padding: 120px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.blog-breadcrumb::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 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.blog-breadcrumb-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.blog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    padding: 0 8px;
}

.blog-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.blog-breadcrumb .breadcrumb-item a:hover {
    color: white;
}

.blog-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Article Section */
.blog-article-section {
    padding: 60px 0;
    background: #f8fbff;
}

.blog-article {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

/* Article Header */
.article-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item i {
    color: var(--climate-primary);
    width: 16px;
    text-align: center;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--climate-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    font-style: italic;
    border-left: 4px solid var(--climate-primary);
    padding-left: 20px;
    margin: 0;
}

/* Featured Image */
.article-featured-image {
    position: relative;
    overflow: hidden;
    margin: 0;
}

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

.article-featured-image:hover img {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px 40px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-featured-image:hover .image-overlay {
    opacity: 1;
}

.image-caption {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Article Content */
.article-content {
    padding-top: 0px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    padding: 20px 20px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: var(--climate-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.article-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--climate-light);
    padding-bottom: 10px;
}

.article-content h3 {
    font-size: 1.6rem;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content blockquote {
    background: var(--climate-light);
    border-left: 4px solid var(--climate-primary);
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Article Footer */
.article-footer {
    padding: 40px;
    background: #f8fbff;
    border-top: 1px solid #e9ecef;
}

.article-share {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.share-title,
.tags-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--climate-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.copy-link {
    background: #6c757d;
    color: white;
}

.share-btn.copied {
    background: var(--climate-success);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: white;
    color: var(--climate-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ===== REFERENCES PAGE STYLES ===== */

/* Hero Section */
.references-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
    overflow: hidden;
}

.references-hero::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-badge {
    position: relative;
    z-index: 2;
}

.badge-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255,255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 73, 130, 0.3);
}

/* Reference Cards */
.reference-item {
    margin-bottom: 30px;
}

.reference-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.reference-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.reference-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(35, 73, 130, 0.9) 0%, rgba(30, 58, 95, 0.9) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-card:hover .reference-overlay {
    opacity: 1;
}

.reference-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.reference-card:hover .reference-overlay-content {
    transform: translateY(0);
}

.view-details-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-details-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.reference-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reference-content {
    padding: 30px;
}

.reference-meta {
    margin-bottom: 15px;
}

.reference-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
}

.reference-location i {
    font-size: 12px;
}

.reference-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.reference-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.reference-footer {
    margin-top: auto;
}

.reference-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reference-tag {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5a82c9 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Load More Button */
.load-more-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(35, 73, 130, 0.4);
    background: linear-gradient(135deg, #1e3a5f 0%, var(--primary-color) 100%);
}

/* Call to Action Section */
.references-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
    overflow: hidden;
}

.references-cta::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="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.5;
}

.cta-title {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

.cta-button {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }

    .reference-content {
        padding: 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .filter-btn {
        width: 100%;
    }

    .reference-image-wrapper {
        height: 220px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reference-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Variables for Climate Theme */
:root {
    --climate-primary: #234982;
    --climate-secondary: #678fd5;
    --climate-accent: #F4F7FB;
    --climate-text: #2c3e50;
    --climate-text-light: #7f8c8d;
    --climate-shadow: rgba(35, 73, 130, 0.1);
    --climate-shadow-hover: rgba(35, 73, 130, 0.2);
}

/* ===============================================
   USER PROFILE PAGES STYLES
   =============================================== */

/* My Account Section */
.my__account--section {
    background: #f8fbff;
    min-height: 70vh;
}

.my__account--section__inner {
    gap: 30px;
    align-items: flex-start;
}

/* Profile Sidebar */
.account__left--sidebar {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
    overflow: hidden;
    min-width: 280px;
    position: sticky;
    top: 20px;
}

.profile__sidebar--header {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    padding: 24px;
    text-align: center;
    color: white;
}

.profile__avatar {
    margin-bottom: 15px;
}

.profile__avatar i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.profile__name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.profile__email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.profile__navigation {
    padding: 0;
}

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

.account__menu--list {
    border-bottom: 1px solid #f1f3f4;
}

.account__menu--list:last-child {
    border-bottom: none;
}

.account__menu--list.active {
    background: rgba(44, 90, 160, 0.05);
    border-right: 4px solid var(--climate-primary);
}

.account__menu--link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    color: var(--climate-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.account__menu--link:hover {
    background: rgba(44, 90, 160, 0.05);
    color: var(--climate-primary);
    text-decoration: none;
}

.account__menu--list.active .account__menu--link {
    color: var(--climate-primary);
    font-weight: 600;
}

.account__menu--link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.account__menu--logout {
    padding: 18px 24px;
}

/* Account Wrapper */
.account__wrapper {
    flex: 1;
    min-width: 0;
}

.account__content {
    background: transparent;
}

/* Profile Overview Cards */
.profile__overview,
.orders__overview,
.settings__overview {
    margin-bottom: 30px;
}

.profile__overview .card,
.orders__overview .card,
.settings__overview .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
    overflow: hidden;
}

.profile__overview .card-body,
.orders__overview .card-body,
.settings__overview .card-body {
    padding: 30px;
}

.profile__avatar--large i,
.orders__icon i,
.settings__icon i {
    color: var(--climate-primary);
}

.profile__welcome,
.orders__title,
.settings__title {
    color: var(--climate-text);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Profile Stats */
.profile__stats {
    margin-bottom: 30px;
}

.stat__card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.15);
}

.stat__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat__info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--climate-primary);
    margin: 0;
    line-height: 1;
}

.stat__info p {
    font-size: 0.9rem;
    color: var(--climate-text-light);
    margin: 5px 0 0 0;
}

/* Orders Table */
.orders__table .card,
.recent__orders .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
}

.orders__table .card-header,
.recent__orders .card-header {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    color: white;
    border-bottom: none;
    padding: 20px 30px;
}

.orders__table .card-title,
.recent__orders .card-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.orders__count .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.orders__table .card-body,
.recent__orders .card-body {
    padding: 0;
}

.orders__table--main {
    margin: 0;
}

.orders__table--main th {
    background: #f8fbff;
    color: var(--climate-text);
    font-weight: 600;
    padding: 20px 24px;
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders__table--main td {
    padding: 20px 24px;
    border-color: #f1f3f4;
    vertical-align: middle;
}

.orders__row:hover {
    background: rgba(44, 90, 160, 0.02);
}

.order__number strong {
    color: var(--climate-primary);
    font-weight: 700;
}

.order__date .date__main {
    font-weight: 600;
    color: var(--climate-text);
}

.order__status.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.badge-warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.badge-secondary {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
}

.order__price strong {
    color: var(--climate-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Custom Buttons */
.order__invoice--btn,
.order__details--btn,
.cart-refresh-btn,
.cart-action-btn,
.settings__save--btn {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.order__invoice--btn:hover,
.order__details--btn:hover,
.cart-refresh-btn:hover,
.cart-action-btn:hover,
.settings__save--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
    color: white;
    text-decoration: none;
}

.order__invoice--btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.order__invoice--btn:hover {
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.order__details--btn {
    background: transparent;
    border: 2px solid var(--climate-primary);
    color: var(--climate-primary);
}

.order__details--btn:hover {
    background: var(--climate-primary);
    color: white;
}

.settings__save--btn {
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 10px;
}

.invoice__pending {
    color: var(--climate-text-light);
    font-style: italic;
}

/* Empty State */
.empty__state {
    padding: 60px 40px;
    text-align: center;
}

.empty__state i {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.empty__state h4 {
    color: var(--climate-text-light);
    font-weight: 600;
    margin-bottom: 15px;
}

.empty__state p {
    color: var(--climate-text-light);
    margin-bottom: 25px;
}

.empty__state .browse-btn {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.empty__state .browse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
    color: white;
    text-decoration: none;
}

/* Settings Form */
.settings__section {
    margin-bottom: 30px;
}

.settings__section .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
}

.settings__section .card-header {
    background: white;
    border-bottom: 1px solid #f1f3f4;
    padding: 25px 30px;
}

.settings__section--icon {
    width: 50px;
    height: 50px;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings__section--icon i {
    font-size: 1.5rem;
    color: var(--climate-primary);
}

.settings__section .card-title {
    color: var(--climate-text);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

.settings__section .card-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    color: var(--climate-text);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 0.9rem;
}

.form-control {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--climate-text);
}

.form-control:focus {
    border-color: var(--climate-primary);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
    outline: none;
}

.company__toggle {
    display: flex;
    align-items: center;
}

.form-check-input {
    width: 2.5rem;
    height: 1.25rem;
    background-color: #e9ecef;
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--climate-primary);
    border-color: var(--climate-primary);
}

.form-check-label {
    color: var(--climate-text);
    font-weight: 600;
    margin-left: 10px;
}

/* Settings Actions */
.settings__actions .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.settings__actions .card-body {
    padding: 40px;
}

/* Loading State */
.settings__loading .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
}

.loading__spinner i {
    color: var(--climate-primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pagination */
.orders__pagination {
    padding: 20px 30px;
    background: #f8fbff;
    border-top: 1px solid #f1f3f4;
}

/* Profile Page Links */
.profile-link {
    background: linear-gradient(135deg, var(--climate-primary) 0%, var(--climate-secondary) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.profile-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
    color: white;
    text-decoration: none;
}

/* Success Alert */
.alert-success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    color: #27ae60;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

