/* Helen Tracking Plugin Styles */

/* CSS Variables */
:root {
    --fs-color-primary: #007cba;
    --fs-color-success: #28a745;
    --fs-color-light-bg: #f8f9fa;
    --fs-color-text: #333;
    --fs-color-text-secondary: #6c757d;
}

/* General Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tracking Search Form */
.helen-tracking-search-wrapper {
    margin: 20px 0;
}

.search-input-wrapper {
    display: flex;
    
}

.tracking-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.tracking-search-input:focus {
    outline: none;
    border-color: #007cba;
}

.tracking-search-button {
    padding: 12px 24px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.search-input-wrapper input {
    height: 40px;
    margin: 0;
}

.tracking-search-button {
    border-radius: 0;
    margin: 0;
    min-height: unset;
    line-height: 1;
    border-radius: 0 5px 5px 0;
}
.tracking-search-button:hover {
    background: #005a87;
}

/* Tracking Results */
.tracking-result {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.tracking-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.tracking-header h2 {
    margin: 0 0 20px;
    font-size: 28px;
}

.tracking-status {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.status-pending { background: rgba(243, 156, 18, 0.9); }
.status-in-transit { background: rgba(52, 152, 219, 0.9); }
.status-delivered { background: rgba(39, 174, 96, 0.9); }
.status-failed { background: rgba(231, 76, 60, 0.9); }

.tracking-content {
    padding: 30px;
}

.tracking-content h3 {
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}

.overview-grid, .services-grid, .package-grid, .label-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.overview-item, .service-item, .package-item, .label-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.overview-item label, .service-item label, .package-item label, .label-item label {
    display: block;
    font-weight: bold;
    color: #7f8c8d;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.overview-item span, .service-item span, .package-item span, .label-item span {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
}

/* Tracking History */
.history-timeline {
    position: relative;
    padding-left: 40px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3498db, #2980b9);
    border-radius: 2px;
}

.history-item {
    position: relative;
    margin-bottom: 25px;
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.history-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #3498db;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #3498db;
}

.history-time {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.history-content h4 {
    color: #2c3e50;
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.history-content p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.5;
}

/* Not Found Styles */
.tracking-not-found h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 24px;
}

.tracking-not-found p {
    color: #7f8c8d;
    
}

.tracking-not-found .button {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.tracking-not-found .button:hover {
    background: #2980b9;
}

/* Products Page */
.helen-products-page {
    padding: 20px 0;
}

/* Updated Products Filters Styles */
.products-filters-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.products-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e1e5e9;
}

.filter-button-container .filter-toggle-btn {
    display: flex;
    align-items: center;
    background: var(--fs-color-primary);
    border: 1px solid var(--fs-color-primary);
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    margin-bottom: 0;
}



.filter-icon {
    margin-right: 8px;
}

.sort-container {
    display: flex;
    align-items: center;
}

.sort-container label {
    margin-right: 10px;
    font-size: 14px;
    color: #666;
    width: 100%;
    margin-bottom: 0;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    min-width: 200px;
    margin-bottom: 0;
}

.products-filters-panel {
    padding: 20px;
    border-top: 1px solid #e1e5e9;
    background: #f9f9f9;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-group {
    flex: 1 1 200px;
    margin-bottom: 15px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    margin-bottom: 0;
    height: 40px;
    min-height: unset;
}

.price-inputs {
    display: flex;
    align-items: center;
}

.price-inputs input {
    flex: 1;
}

.price-separator {
    margin: 0 10px;
    color: #666;
    font-weight: 500;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-basis: 100%;
}

.filter-submit {
    padding: 10px 20px;
    background:var(--fs-color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    line-height: 1;
    margin:0;
}

.filter-submit:hover {
    background: #005a87;
}

.filter-reset {
    padding: 10px 20px;
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
    display: inline-block;
    line-height: 1;
}

.filter-reset:hover {
    background: #e5e5e5;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.results-count {
    color: #7f8c8d;
    font-size: 14px;
}

.layout-toggle {
    display: flex;
    gap: 5px;
}

.layout-btn {
    padding: 8px 16px;
    background: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.layout-btn:hover,
.layout-btn.active {
    background: #3498db;
    color: white;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.product-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.no-image {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 14px;
}

.product-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.product-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: #3498db;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
   
}

.product-actions {
    margin-top: auto;
}

.view-product-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 15px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.view-product-btn:hover {
    background: #2980b9;
}

/* Single Product */
.single-product-wrapper {
    padding: 30px 0;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.gallery-main img,
.main-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
}

.product-header {
    margin-bottom: 25px;
}

.product-title {
    font-size: 32px;
   
    margin-bottom: 0;
   
}

.product-price {
    font-size: 24px;
    font-weight: 700;
   
}
.product-item .product-title {
    font-size: 18px;
}
.product-item .product-price {
    font-size: 16px;
}
.product-description {
    line-height: 1.6;
    margin-bottom: 25px;
    color: #5a6c7d;
}

.product-categories,
.product-tags {
    margin-bottom: 15px;
    font-size: 14px;
}

.product-categories a,
.product-tags a {
    color: #3498db;
    text-decoration: none;
}

.product-categories a:hover,
.product-tags a:hover {
    text-decoration: underline;
}

/* Specifications */
.product-specifications {
    margin-bottom: 40px;
}

.product-specifications h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.specs-table tr:nth-child(even) {
    background: #f8f9fa;
}

.spec-name,
.spec-value {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.spec-name {
    font-weight: 600;
    color: #495057;
    width: 30%;
}

.spec-value {
    color: #6c757d;
}

/* Related Products */
.related-products {
    margin-top: 50px;
}

.related-products h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 24px;
}

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

.related-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s;
}

.related-item:hover {
    transform: translateY(-2px);
}

.related-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 15px;
}

.related-content h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.related-content h4 a {
    color: #2c3e50;
    text-decoration: none;
}

.related-content h4 a:hover {
    color: #3498db;
}

.related-price {
    font-weight: 700;
    color: #e74c3c;
}

/* Archive Products */
.archive-product-wrapper {
    padding: 30px 0;
}

.archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.archive-title {
    color: #2c3e50;
    font-size: 36px;
    margin-bottom: 15px;
}

.archive-description {
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .search-input-wrapper {
        flex-direction: column;
    }
    
    .overview-grid,
    .services-grid,
    .package-grid,
    .label-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-content {
        padding: 15px;
    }
    
    .tracking-header {
        padding: 20px;
    }
    
    .tracking-header h2 {
        font-size: 22px;
    }
    
    .filter-row {
        flex-direction: column;
    }
    
    .filter-actions {
        margin-top: 15px;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 16px;
        
    }
    
    .product-content {
        padding: 10px;
    }
    
    .view-product-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .product-main {
        flex-direction: column;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 22px;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Responsive styles for the new filter UI */
    .products-filters-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .filter-button-container .filter-toggle-btn {
        width: 100%;
        justify-content: center;
    }
    
    .sort-container {
        width: 100%;
    }
    
    .sort-container label {
        flex: 0 0 80px;
    }
    
    .sort-select {
        flex: 1;
        min-width: unset;
    }
    
    .price-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-separator {
        display: none;
    }
    
    .filter-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-submit, 
    .filter-reset {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .tracking-content,
    .tracking-header {
        padding: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-content {
        padding: 10px;
    }
}

/* Tracking Result Page Styles - New Design */
.tracking-result-container {
   
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    color: #333;
}
.helen-tracking-check-page {
    margin-top: -40px;
}
/* Status Header Section */
.tracking-status-header {
    background-color: #f8f8f8;
    padding:60px 0;
}
.tracking-status-header > .container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.tracking-status-header .status-section,
.tracking-status-header .date-section,
.tracking-status-header .tracking-id-section {
    flex: 1;
    padding: 0 15px;
    position: relative;
    border-right: 1px solid #e0e0e0;
}

.tracking-status-header .tracking-id-section {
    border-right: none;
}

.tracking-status-header .section-title {
    color: var(--fs-color-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
}

.tracking-status-header .status-value,
.tracking-status-header .date-value,
.tracking-status-header .tracking-id-value {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.tracking-status-header .timezone {
    font-size: 13px;
    color: #777;
    margin-top: 3px;
}

.tracking-status-header .status-icon,
.tracking-status-header .date-icon,
.tracking-status-header .id-icon {
    color: var(--fs-color-primary);
    font-size: 18px;
    margin-right: 8px;
}

/* Shipment Information Section */
.shipment-info-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    position: relative;
}

.shipment-info-title {
    width: 100%;
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.info-section {
    width: 100%;
    margin-bottom: 30px;
    background: #fff;
   
    border-radius: 5px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border-radius: 10px;
}
.info-header {
    position: relative;
}
.info-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--fs-color-primary);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.info-title {
  
    padding: 20px;
    padding-left: 70px;
    margin: 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.info-table {
    padding: 15px;
}

.info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 35%;
    font-weight: 600;
    color: #333;
    padding-right: 15px;
}

.info-value {
    width: 65%;
    color: #333;
}

/* Tracking History Container */
.tracking-history-container.full-width {
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid var(--fs-color-light-bg);
    padding-top: 30px;
}

.tracking-history-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--fs-color-primary);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fs-color-light-bg);
}

/* Add some extra styling for mobile */
@media (max-width: 768px) {
    .tracking-history-container.full-width {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .col-time {
        margin-bottom: 30px;
    }
    
    .shipment-content-container {
        gap: 15px;
    }
}

/* Shipment Progress Sidebar */
.shipment-progress {
    width: 100%;
    
}

.progress-timeline {
    position: relative;
    padding: 20px 0;
}

.progress-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 11px;
    width: 4px;
    background: var(--fs-color-primary);
}

.progress-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.progress-step:last-child {
    margin-bottom: 0;
}

.progress-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--fs-color-primary);
    border-radius: 50%;
}

.progress-dot:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--fs-color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.progress-step.active .progress-dot:before {
    opacity: 1;
}

.progress-content {
    padding: 0 0 0 10px;
}

.step-title {
    font-weight: 600;
    color: var(--fs-color-primary);
    margin-bottom: 5px;
}

.step-location {
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.step-time {
    color: #666;
    font-size: 13px;
    margin-bottom: 2px;
}

.step-date {
    color: #666;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tracking-status-header {
        flex-direction: column;
    }
    
    .tracking-status-header .status-section,
    .tracking-status-header .date-section,
    .tracking-status-header .tracking-id-section {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 0;
    }
    
    .tracking-status-header .tracking-id-section {
        border-bottom: none;
    }
    
    .tracking-history-container,
    .shipment-progress {
        width: 100%;
        padding: 0;
    }
    
    .shipment-progress {
        margin-top: 30px;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
    }
    
    .info-label,
    .info-value {
        width: 100%;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
}

/* Tracking Not Found Styles */
.tracking-not-found {
    text-align: center;
   
    margin: 0 auto;
    padding:60px 0;
}

.not-found-icon {
    color: var(--fs-color-primary);
    font-size: 64px;
   
}

.tracking-not-found h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.tracking-not-found p {
    color: #666;
    margin-bottom: 20px;
}

.tracking-not-found .button {
    display: inline-block;
    background: var(--fs-color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.tracking-not-found .button:hover {
    background: #084a50;
}

/* Tracking Search Form Styles */
.tracking-search-page {
    text-align: center;
    padding: 50px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.tracking-search-page h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.tracking-search-page p {
    color: #666;
    margin-bottom: 30px;
}

.helen-tracking-search-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.tracking-search-input {
    flex: 1;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-right: none;
    font-size: 16px;
    outline: none;
}

.tracking-search-button {
    background: var(--fs-color-primary);
    color: white;
    border: none;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.tracking-search-button:hover {
    background: #084a50;
}
.tracking-result-wrapper {
    padding: 60px 0;
}
/* Two-column layout for shipment info */
.shipment-info-container .full-width {
    width: 100%;
    margin-bottom: 50px;
}

.shipment-content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.shipment-content-container .left-column {
    flex:1;
}

.shipment-content-container .right-column {
  width: 30%;
}

/* Full width tracking history */
.tracking-history-container.full-width {
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid #e1e5e9;
    padding-top: 30px;
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
    .shipment-content-container {
        flex-direction: column;
    }
    
    .shipment-content-container .left-column,
    .shipment-content-container .right-column {
        width: 100%;
    }
}

/* Tracking History Timeline */
.tracking-history-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--fs-color-light-bg);
    width: 100%;
}

.tracking-history-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--fs-color-primary);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fs-color-light-bg);
}

.timeline-container {
    position: relative;
}

.timeline-line {
	margin-top: -20px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 124px;
    width: 2px;
    background: var(--fs-color-primary);
    opacity: 0.4;
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-date {
    font-weight: 600;
    color: var(--fs-color-text-secondary);
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.timeline-dot {
	box-shadow: 0 0 0 2px var(--fs-color-primary);
    background: var(--fs-color-primary) !important;
    border-radius: 100%;
}

.timeline-item {
    display: flex;
    align-items: baseline;
	justify-content: flex-start;
}


.timeline-title {
    font-weight: 600;
    color: var(--fs-color-text);
    margin-bottom: 5px;
}

.timeline-location {
    color: var(--fs-color-text-secondary);
}

.timeline-empty {
    padding: 15px;
    background: var(--fs-color-light-bg);
    border-radius: 5px;
    color: var(--fs-color-text-secondary);
}

/* Highlight key events in the timeline */
.timeline-item.event-label-created .timeline-dot,
.timeline-item.event-we-have-parcel .timeline-dot,
.timeline-item.event-export-scan .timeline-dot {
    width: 24px;
    height: 24px;
    box-shadow: 0 0 0 2px var(--fs-color-primary);
    left: -31px;
}

.timeline-item.event-delivered .timeline-dot {
    width: 24px;
    height: 24px;
    border: 3px solid white;
    background-color: var(--fs-color-success);
    box-shadow: 0 0 0 2px var(--fs-color-success);
    left: -31px;
}

.timeline-item.event-label-created .timeline-title,
.timeline-item.event-we-have-parcel .timeline-title,
.timeline-item.event-export-scan .timeline-title,
.timeline-item.event-delivered .timeline-title {
    font-weight: 700;
}

/* Remove the vertical timeline styles that are no longer needed */
.vertical-timeline,
.vertical-timeline--animate,
.vertical-timeline--one-column,
.vertical-timeline-element,
.vertical-timeline-element-icon,
.vertical-timeline-element-content,
.badge-dot-xl {
    /* Reset any styles from these classes that might affect the layout */
}

/* Processing Steps Styles - Keep this section */
.col-time {
    position: relative;
   
}

.col-time .p-4 {
    position: relative;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--fs-color-primary);
    background-color: var(--fs-color-light-bg);
    border-radius: 0.25rem;
}

.col-time .p-4::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--fs-color-primary);
    border: 3px solid white;
    z-index: 1;
}

.col-time h6 {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--fs-color-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.inglewood-ca-us-s1T,
.inglewood-ca-us-nRF {
    font-weight: 500;
    color: var(--fs-color-text);
    margin-bottom: 0.25rem;
}

.to-nhn-BH3 {
    color: var(--fs-color-text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.monday-27-06-2022-03-42-5tD,
.auto-group-ej8h-iph {
    color: var(--fs-color-text-secondary);
    font-size: 0.85rem;
}

.delivered-box {
    background-color: #ebf9f1;
    border-color: var(--fs-color-success);
}

.delivered-box h6 {
    color: var(--fs-color-success);
}

.auto-group-6drt-Jky {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vertical-timeline--one-column .vertical-timeline-element-content {
        margin-left: 50px;
    }
    
    .vertical-timeline-element-icon {
        width: 30px;
        height: 30px;
    }
    
    .vertical-timeline::before {
        left: 13px;
    }
    
    .badge-dot-xl {
        width: 14px;
        height: 14px;
    }
}

/* Highlight key events in the timeline */
.vertical-timeline-element.event-label-created .badge-dot-xl,
.vertical-timeline-element.event-we-have-parcel .badge-dot-xl,
.vertical-timeline-element.event-export-scan .badge-dot-xl,
.vertical-timeline-element.event-delivered .badge-dot-xl {
    width: 22px;
    height: 22px;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--fs-color-primary);
}

.vertical-timeline-element.event-delivered .badge-dot-xl {
    background-color: var(--fs-color-success);
    box-shadow: 0 0 0 2px var(--fs-color-success);
}

.vertical-timeline-element.event-delivered .vertical-timeline-element-content {
    border-left: 3px solid var(--fs-color-success);
}

.vertical-timeline-element.event-label-created .vertical-timeline-element-content,
.vertical-timeline-element.event-we-have-parcel .vertical-timeline-element-content,
.vertical-timeline-element.event-export-scan .vertical-timeline-element-content {
    border-left: 3px solid var(--fs-color-primary);
}

.vertical-timeline-element.event-label-created .timeline-title,
.vertical-timeline-element.event-we-have-parcel .timeline-title,
.vertical-timeline-element.event-export-scan .timeline-title,
.vertical-timeline-element.event-delivered .timeline-title {
    font-weight: 700;
}

.vertical-timeline-element.event-delivered .timeline-title {
    color: var(--fs-color-success);
}

/* Ensure responsive consistency */
@media (max-width: 768px) {
    .vertical-timeline-element.event-label-created .badge-dot-xl,
    .vertical-timeline-element.event-we-have-parcel .badge-dot-xl,
    .vertical-timeline-element.event-export-scan .badge-dot-xl,
    .vertical-timeline-element.event-delivered .badge-dot-xl {
        width: 18px;
        height: 18px;
    }
} 