.shipping-container { max-width: 1100px; margin: 0 auto; padding: 20px; font-family: 'Lato', sans-serif !important; }

  /* Header */
  .shipping-header {
    background: #3C166D;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
	display: flex;
    gap: 0px;
    align-items: center;
  }
.shipping-header-content p {
	position: relative;
}
.shipping-header-content p::before {
	left: 90px;
    bottom: 50%;
    top: 50%;
}
.shipping-header-content p::after {
	right: 90px;
    bottom: 50%;
    top: 50%;
}
.shipping-header-content p::before,
.shipping-header-content p::after {
    content: "";
    flex: 1;
    height: 4px;
    background: #fff;
    border-radius: 3px;
	position: absolute;
	width: 80px;
    height: 3px;
}
  .shipping-header h1 {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative; z-index: 1;
	  margin: 0;
  }
  .shipping-header p {
    font-size: 2.5rem;
    opacity: 0.95;
    margin-top: 8px;
    position: relative;
	z-index: 1;
	  font-style: italic;
  }

  /* Info Banner */
  .info-banner {
    background: #E3F2FD;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 50px 0;
    display: flex;
    align-items: center;
    gap: 50px;
  }
.shipping-notice .shipping-monday {
	color: #E91E63;
}
.shipping-notice .shipping-monday .card-icon svg {
	fill: #fff;
    background: #E91E63;
    border-radius: 50%;
    padding: 10px;
}
.shipping-notice .shipping-tuesday {
	color: #2196F3;
}

.shipping-notice .shipping-tuesday .card-icon svg {
	fill: #fff;
    background: #2196F3;
    border-radius: 50%;
    padding: 10px;
}
.shipping-notice .shipping-wednesday {
	color: #4CAF50;
}
.shipping-notice .shipping-wednesday .card-icon svg {
	fill: #fff;
    background: #4CAF50;
    border-radius: 50%;
    padding: 10px;
}
  .snowflake-icon {
    min-width: 50px; height: 50px;
    background: #E8F4FD;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .snowflake-icon svg { width: 28px; height: 28px; fill: #2196F3; }
  .info-banner p { font-size: 2rem; color: #7B3FA0; }
  .info-banner strong { color: #1565C0; }

  /* Shipping Schedule Cards */

.shipping-notice {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
  .schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  .schedule-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .schedule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  }
  .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
  }
  .card-icon {
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .card-icon svg { width: 24px; height: 24px; }

  .monday .card-header { color: #E91E63; }
  .monday .card-icon { background: #FCE4EC; }
  .monday .card-icon svg { fill: #E91E63; }
  .monday { border-top: 4px solid #E91E63; }

  .tuesday .card-header { color: #2196F3; }
  .tuesday .card-icon { background: #E3F2FD; }
  .tuesday .card-icon svg { fill: #2196F3; }
  .tuesday { border-top: 4px solid #2196F3; }

  .wednesday .card-header { color: #4CAF50; }
  .wednesday .card-icon { background: #E8F5E9; }
  .wednesday .card-icon svg { fill: #4CAF50; }
  .wednesday { border-top: 4px solid #4CAF50; }

  .card-header h3 { font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

  .time-block {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .time-block .clock {
    min-width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .monday .time-block { background: #FCE4EC; }
  .monday .time-block .clock svg { fill: #E91E63; }
  .tuesday .time-block { background: #E3F2FD; }
  .tuesday .time-block .clock svg { fill: #2196F3; }
  .wednesday .time-block { background: #E8F5E9; }
  .wednesday .time-block .clock svg { fill: #4CAF50; }
  .time-block .clock svg { width: 40px; height: 40px; }
  .time-block p { font-size: 1.1rem; color: #555; font-weight: 500; }

  .arrow-down {
    text-align: center;
    margin: 10px 0;
  }
  .arrow-down svg { width: 24px; height: 24px; }
  .monday .arrow-down svg { fill: #E91E63; }
  .tuesday .arrow-down svg { fill: #2196F3; }
  .wednesday .arrow-down svg { fill: #4CAF50; }

  .ship-result {
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .monday .ship-result { background: #FCE4EC; color: #E91E63; }
  .tuesday .ship-result { background: #E3F2FD; color: #1565C0; }
  .wednesday .ship-result { background: #E8F5E9; color: #2E7D32; }
  .ship-result svg { width: 32px; height: 32px; }
  .ship-result .ship-text { text-align: left; }
  .ship-result .ship-label { font-size: 1.2rem; font-weight: 600; text-transform: uppercase; opacity: 0.8; }
  .ship-result .ship-day { font-size: 1.6rem; font-weight: 800; }

  /* Shipping Rates */
  .rates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .rate-card {
    background-color: rgb(246, 242, 250);
    border-radius: 12px;
    padding: 70px;
    border: 2px solid #511D8C;
    text-align: center;
  }
  .rate-icon {
    width: 150px; height: 150px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
  }
  .rate-icon svg { width: 32px; height: 32px; fill: #fff; }
  .rate-card h3 {
    color: #511D8C;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
  }
.rate-icon img {
	width: 100%;
}
  .rate-card .rate-sub {
    color: #511D8C;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
  }
  .rate-divider {
    width: 100%;
    height: 3px;
    background: #511D8C;
    margin: 0 auto 15px;
    border-radius: 2px;
  }
  .rate-card p { color: #666; font-size: 1.2rem; }

  /* Transit Map Section */
  .transit-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 60px;
  }
  .transit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .transit-header .pin-icon {
    width: 45px; height: 45px;
    background: #511D8C;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .transit-header .pin-icon svg { width: 22px; height: 22px; fill: #fff; }
  .transit-header h2 { color: #511D8C; font-size: 1.3rem; font-weight: 800; }
  .transit-header p { color: #666; font-size: 0.9rem; margin-top: 2px; }

  .transit-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: start;
  }
  .legend { margin: 10px 0 0 50px; }
  .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
  }
  .legend-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .dot-1 { background: #E91E63; }
  .dot-2 { background: #00BCD4; }
  .dot-3 { background: #FF9800; }
  .dot-4 { background: #4CAF50; }
  .dot-5 { background: #8BC34A; }
  .dot-6 { background: #FFEB3B; }
  .dot-7 { background: #3F51B5; }

  .map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
.map-container img {
	object-fit: cover;
	width: 100%;
}
  /* State colors on map */
  .state { stroke: #fff; stroke-width: 1; transition: opacity 0.2s; }
  .state:hover { opacity: 0.8; cursor: pointer; }
  .s-1 { fill: #E91E63; }  /* TX, OK, AR, LA */
  .s-2 { fill: #00BCD4; }  /* AZ, NM, CO, KS, NE, MO, IA, IL, IN, KY, TN, MS, AL, GA, SC, NC, WV, DE, MD, NJ, CT, RI, MA, NH, VT */
  .s-3 { fill: #FF9800; }  /* CA, NV, UT, WY, MT, ND, SD, MN, WI, MI, OH, PA, NY, VA, FL */
  .s-4 { fill: #4CAF50; }  /* WA, OR, ME */
  .s-5 { fill: #8BC34A; }  /* (none in original, using for any 5-day) */
  .s-6 { fill: #FFEB3B; }  /* (none in original) */
  .s-7 { fill: #3F51B5; }  /* (none in original) */

  /* Delivery Table */
  .delivery-table-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e0e0e0;
	  margin-bottom: 60px;
  }
  .delivery-table-section h2 {
    text-align: center;
    color: #7B3FA0;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
  }
  .day-badges {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    margin-bottom: 0px;
    flex-wrap: wrap;
  }
  .day-badge {
    padding: 8px 16px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
	   width: 80px;
  }
  .badge-1 { background: #E91E63; }
  .badge-2 { background: #00BCD4; }
  .badge-3 { background: #FF9800; }
  .badge-4 { background: #4CAF50; }
  .badge-5 { background: #7B3FA0; }
  .badge-6 { background: #FFEB3B; color: #333; }
  .badge-7 { background: #3F51B5; }

 .shipping-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
  }
  .shipping-container th,.shipping-container td {
    padding: 14px 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
  }
 .shipping-container th {
    background: #6f6f6f;
    color: #fff;
    font-weight: 700;
  }
 .shipping-container td:first-child {
    background: #f9f9f9;
    font-weight: 700;
    color: #555;
  }
/*   .deliver-mon { color: #4CAF50; font-weight: 700; }
  .deliver-tue { color: #00BCD4; font-weight: 700; }
  .deliver-wed { color: #E91E63; font-weight: 700; }
  .deliver-thu { color: #FF9800; font-weight: 700; }
  .deliver-fri { color: #8BC34A; font-weight: 700; }
  .deliver-sat { color: #FFEB3B; font-weight: 700; }
  .deliver-sun { color: #3F51B5; font-weight: 700; } */
  .note-icon { font-size: 0.75rem; vertical-align: super; }

  /* Responsive */
  @media (max-width: 900px) {
    .schedule-grid { grid-template-columns: 1fr; }
    .rates-grid { grid-template-columns: 1fr; }
    .transit-content { grid-template-columns: 1fr; }
    .shipping-header h1 { font-size: 2rem; }
    .day-badges { gap: 4px; }
    .day-badge { padding: 6px 10px; font-size: 0.75rem; }
  }
  @media (max-width: 600px) {
    .shipping-container { padding: 10px; }
    .shipping-header { padding: 25px 15px; }
    .shipping-header h1 { font-size: 1.6rem; }
    .info-banner { flex-direction: column; text-align: center; }
  .shipping-container table { font-size: 0.5rem; }
   .shipping-container th,.shipping-container td { padding: 5px !important; }
  }
.shipping-notice-section {
    padding: 60px 20px;
    background: #fff;
}

.shipping-notice-section .notice-wrapper {
    max-width: 1800px;
    margin: 0 auto;
    border: 2px solid #f5a000;
    border-radius: 30px;
    padding: 50px 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.notice-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5a000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-content {
    flex: 1;
}

.notice-content h2 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    color: #16186b;
    margin-bottom: 25px;
    text-transform: uppercase;
	margin-top: 0;
}

.top-text,
.bottom-text {
    font-size: 20px;
    line-height: 1.6;
    color: #111;
    margin: 0;
}

.green-text {
    color: #1e9f42;
    font-weight: 700;
}

.divider {
    height: 2px;
    background: #f5a000;
    margin: 20px 0;
}
.pickup img {
	width: 100%;
}

/* Tablet */
@media (max-width: 1200px) {

    .notice-content h2 {
        font-size: 44px;
    }

    .top-text,
    .bottom-text {
        font-size: 24px;
    }

    
}

/* Mobile */
@media (max-width: 768px) {

    .shipping-notice-section .notice-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .notice-icon {
        margin: 0 auto;
    }

    .notice-content h2 {
        font-size: 30px;
    }

    .top-text,
    .bottom-text {
        font-size: 18px;
    }

    
}


.late-shipping-banner{
    background:#24004f;
    padding:40px;
    border-radius:20px 20px 0 0;
    color:#fff;
	margin: 60px 0;
}

.banner-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.banner-box img{
    max-width:100%;
}

.banner-text{
    text-align:center;
    flex:80%;
}

.banner-text h2{
    font-size:50px;
    line-height:1;
    margin:0;
    font-weight:900;
}

.banner-text h2 span{
    color:#ffc400;
}

.banner-tag{
    background:#4d2ce0;
    padding:18px;
    border-radius:10px;
    margin-top:20px;
    font-size:20px;
    font-weight:600;
}

.banner-badge img{
    max-width:260px;
}

.shipping-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    padding:25px 0;
    background:#fff;
	margin-bottom: 60px;
}

.step-card{
    border:1px solid #dfe7ff;
    border-radius:20px;
    padding:25px;
    background:#fff;
}

.step-number{
    width:40px;
    height:40px;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:800;
	flex-shrink: 0;
}

.purple{color:#3b168b;}
.blue{color:#1c5fd9;}
.green{color:#15843b;}
.orange{color:#ff6500;}
.red{color:#ff2f3b;}
.teal{color:#0f7287;}

.step-number.purple{background:#3b168b; color: #fff;}
.step-number.blue{background:#1c5fd9; color: #fff;}
.step-number.green{background:#15843b; color: #fff;}
.step-number.orange{background:#ff6500; color: #fff;}
.step-number.red{background:#ff2f3b; color: #fff;}
.step-number.teal{background:#0f7287; color: #fff;}

.step-card h3{
    font-size:20px;
    margin:15px 0;
    text-transform:uppercase;
	margin-top: 0;
}

.step-body{
    display:flex;
    align-items:center;
    gap:20px;
}

.step-body img{
    width:150px;
}
.step-card-number {
	display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-body p{
    font-size:16px;
    line-height:1.5;
}


        .shipping-days-container {
            max-width: 1200px;
            width: 100%;
        }

        /* Header Section */
        .header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 10px;
        }

        .truck-icon {
            width: 70px;
            height: 70px;
            background: #0066ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .truck-icon svg {
            width: 36px;
            height: 36px;
            fill: white;
        }

        .header-text h1 {
            font-size: 42px;
            font-weight: 800;
            color: #0a1f44;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        .header-subtitle {
            color: #4a5568;
            font-size: 16px;
            line-height: 1.6;
            margin-top: 12px;
            max-width: 500px;
        }

        .header-subtitle .highlight {
            color: #0066ff;
            font-weight: 600;
        }

        /* Top Info Bar */
        .top-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
            gap: 40px;
			background: #EFF4FB;
			border-radius: 12px;
    padding: 15px;
        }

        .illustration-area {
            display: flex;
            align-items: center;
            gap: 30px;
            flex: 1;
        }

        .calendar-illustration {
            position: relative;
           
        }

        .calendar-body {
            width: 180px;
            height: 140px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: absolute;
            top: 20px;
            left: 0;
            border: 2px solid #e2e8f0;
        }

        .calendar-header {
            width: 180px;
            height: 35px;
            background: #0066ff;
            border-radius: 12px 12px 0 0;
            position: absolute;
            top: 20px;
            left: 0;
        }

        .calendar-rings {
            position: absolute;
            top: 0;
            left: 30px;
            display: flex;
            gap: 25px;
        }

        .ring {
            width: 8px;
            height: 25px;
            background: #4a5568;
            border-radius: 4px;
        }

        .calendar-grid {
            position: absolute;
            top: 65px;
            left: 15px;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            width: 150px;
        }

        .grid-cell {
            width: 16px;
            height: 16px;
            background: #e2e8f0;
            border-radius: 2px;
        }

        .grid-cell.checked {
            background: #0066ff;
            position: relative;
        }

        .grid-cell.checked::after {
            content: '✓';
            color: white;
            font-size: 10px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .package-box {
            width: 100px;
            height: 90px;
            background: #d4a574;
            border-radius: 8px;
            position: absolute;
            bottom: 0;
            right: 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 2px solid #b8956a;
        }

        .package-tape {
            width: 100%;
            height: 20px;
            background: #0066ff;
            position: absolute;
            top: 15px;
            opacity: 0.8;
        }

        .package-arrow {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            border: 2px solid #8b6914;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .package-arrow::after {
            content: '↑';
            color: #8b6914;
            font-size: 12px;
            font-weight: bold;
        }

        .shield-icon {
            position: absolute;
            bottom: -5px;
            right: -10px;
            width: 40px;
            height: 45px;
            background: #0066ff;
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }

        .shield-icon::after {
            content: '✓';
            color: white;
            font-size: 18px;
            font-weight: bold;
        }

        .leaf {
            position: absolute;
            width: 30px;
            height: 50px;
            background: #48bb78;
            border-radius: 0 50% 0 50%;
            bottom: 20px;
            left: -15px;
            transform: rotate(-20deg);
            opacity: 0.7;
        }

        .leaf-2 {
            position: absolute;
            width: 25px;
            height: 40px;
            background: #289224;
            border-radius: 0 50% 0 50%;
            bottom: 10px;
            left: 5px;
            transform: rotate(-10deg);
            opacity: 0.6;
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon.snow {
            background: #e6f2ff;
            color: #0066ff;
        }

        .feature-icon.box {
            background: #e6f7ed;
            color: #289224;
        }

        .feature-icon.shield {
            background: #fff8e6;
            color: #d69e2e;
        }

        .feature-text {
            font-size: 16px;
			color: #0E1550;
			font-weight: 700;
			line-height: 1.3;
			position: relative;
			padding-bottom: 10px;
        }
.feature-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;      
    height: 3px;      
    background-color: #3b82f6; 
    border-radius: 2px;
}

        .feature-text small {
            display: block;
            color: #718096;
            font-size: 12px;
            font-weight: 400;
            margin-top: 2px;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .shipping-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 1px solid #e2e8f0;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .shipping-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .card-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .card-title {
            font-size: 22px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.3;
        }

        /* Monday Card */
        .card-monday .card-icon { background: #e91e63; }
        .card-monday .card-title { color: #e91e63; }
        .card-monday { border-top: 4px solid #e91e63; }

        /* Tuesday Card */
        .card-tuesday .card-icon { background: #0066ff; }
        .card-tuesday .card-title { color: #0066ff; }
        .card-tuesday { border-top: 4px solid #0066ff; }

        /* Wednesday Card */
        .card-wednesday .card-icon { background: #289224; }
        .card-wednesday .card-title { color: #289224; }
        .card-wednesday { border-top: 4px solid #289224; }

        .timeframe-label {
            font-size: 13px;
            color: #4a5568;
            font-weight: 600;
            margin-bottom: 12px;
			text-align: center;
        }

        .timeframe-box {
            background: #f7fafc;
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .time-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

.time-icon img ,.ship-truck img{
	width: 100%;
}
.card-monday .timeframe-box {
	    background: #fce4ec;
}
.card-tuesday .timeframe-box {
	   background: #e6f2ff;
}
.card-wednesday .timeframe-box {
	   background: #e6f7ed;
}

        .card-monday .time-icon { background: #fce4ec; color: #e91e63; }
        .card-tuesday .time-icon { background: #e6f2ff; color: #0066ff; }
        .card-wednesday .time-icon { background: #e6f7ed; color: #289224; }

        .time-text {
            font-size: 14px;
            color: #2d3748;
            font-weight: 600;
            line-height: 1.5;
        }

        .arrow-down {
            text-align: center;
            margin: 12px 0;
            font-size: 20px;
        }

        .card-monday .arrow-down { color: #e91e63; }
        .card-tuesday .arrow-down { color: #0066ff; }
        .card-wednesday .arrow-down { color: #289224; }

        .ship-result {
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .card-monday .ship-result { background: #fce4ec; }
        .card-tuesday .ship-result { background: #e6f2ff; }
        .card-wednesday .ship-result { background: #e6f7ed; }

        .ship-truck {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

      

        .ship-truck svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .ship-text {
            display: flex;
            flex-direction: column;
        }

        .ship-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-monday .ship-label { color: #e91e63; }
        .card-tuesday .ship-label { color: #0066ff; }
        .card-wednesday .ship-label { color: #289224; }

        .ship-day {
            font-size: 24px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .card-monday .ship-day { color: #e91e63; }
        .card-tuesday .ship-day { color: #0066ff; }
        .card-wednesday .ship-day { color: #289224; }

        /* Responsive */
        @media (max-width: 968px) {
            .cards-grid {
              grid-template-columns: repeat(1, 100%);
            }

            .top-section {
                flex-direction: column;
            }

            .header-text h1 {
                font-size: 32px;
            }
        }

        @media (max-width: 640px) {
            .header-text h1 {
                font-size: 28px;
            }

            .truck-icon {
                width: 50px;
                height: 50px;
            }

            .truck-icon svg {
                width: 26px;
                height: 26px;
            }
        }

.truck-icon img ,.feature-icon img{
	width: 100%;
}