/* Global Styles */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5549c9;
    --secondary-color: #00cec9;
    --accent-color: #fd79a8;
    --light-color: #f8f9fa;
    --dark-color: #2d3436;
    --gray-color: #636e72;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #ff7675;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
  }
  h1{
      text-align:center;
  
    }
   .btn-yellow {
        background: #fcb812 !important;
        color: #000;
    }
  .accordion input {
      position: absolute;
      opacity: 0;
      z-index: -1;
  }
  .accordion-wrapper {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
      width: 800px;
      margin:0 auto;
  }
  .accordion {
      width: 100%;
      color: white;
      overflow: hidden;
      margin-bottom: 16px;
  }
  .accordion:last-child{
      margin-bottom: 0;
  }
  .accordion-label {
      display: flex;
      -webkit-box-pack: justify;
      justify-content: space-between;
      padding: 16px;
      background: #fcb812;
      font-weight: bold;
      cursor: pointer;
      font-size: 20px;
  }
  .accordion-label:hover {
    background: #fcb812;
}
  .accordion-label::after {
      content: "\276F";
      width: 16px;
      height: 16px;
      text-align: center;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
  }
  .accordion-content {
      max-height: 0;
      padding: 0 16px;
      color: rgba(4,57,94,1);
      background: white;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
  }
  .accordion-content p{
      margin: 0;
      color: rgba(4,57,94,.7);
      font-size: 18px;
  }
  input:checked + .accordion-label {
    background: #fcb812;
}
  input:checked + .accordion-label::after {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
  }
  input:checked ~ .accordion-content {
      max-height: 100vh;
      padding: 16px;
  }
    
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f0f2f5;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .btn-primary {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--primary-dark)
    );
    color: var(--white);
  }
  
  .btn-primary:hover {
    background: linear-gradient(
      135deg,
      var(--primary-dark),
      var(--primary-color)
    );
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    );
    margin: 0 auto;
    border-radius: 2px;
  }
  
  /* Order Tracking Styles */
  .order-tracking {
    padding: 80px 0;
    background-color: #f0f2f5;
    min-height: calc(100vh - 80px);
  }
  
  .tracking-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .tracking-header h1 {
    font-size: 2.8rem;

    margin-bottom: 15px;
  }
  
  .tracking-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .tracking-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto 40px;
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  
  .tracking-form:hover {
    transform: translateY(-5px);
  }
  
  .form-group {
    display: flex;
    gap: 15px;
  }
  
  .form-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e1e5eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
  }
  
  .tracking-results {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    max-width: 1000px;
    margin: 0 auto;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .tracking-results.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .order-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
  }
  
  .order-summary-item {
    flex: 1;
    min-width: 200px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .order-summary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .order-summary-item h4 {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .order-summary-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
  }
  
  .order-summary-item .status {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
  }
  
  .status-ordered {
    background-color: #fff4e6;
    color: #fd9644;
  }
  
  .status-processed {
    background-color: #e3f2fd;
    color: #2196f3;
  }
  
  .status-shipped {
    background-color: #e0f7fa;
    color: #00bcd4;
  }
  
  .status-out-for-delivery {
    background-color: #fff8e1;
    color: #ffc107;
  }
  
  .status-delivered {
    background-color: #e8f5e9;
    color: #4caf50;
  }
  
  .tracking-timeline {
    position: relative;
    padding: 20px 0 40px;
    margin-bottom: 40px;
  }
  
  .timeline-progress {
    height: 6px;
    background-color: #eee;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: 3px;
  }
  
  .timeline-progress-bar {
    height: 100%;
    background: linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    );
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 0;
  }
  
  .timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  
  .timeline-step {
    text-align: center;
    position: relative;
    flex: 1;
  }
  
  .timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: #eee;
    z-index: -1;
  }
  
  .timeline-step.completed:not(:last-child)::after {
    background: linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    );
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--gray-color);
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-step.completed .step-icon {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    color: var(--white);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  }
  
  .timeline-step.active .step-icon {
    background: linear-gradient(135deg, var(--accent-color), #e84393);
    color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(253, 121, 168, 0.4);
  }
  
  .step-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .step-date {
    font-size: 0.8rem;
    color: var(--gray-color);
    font-weight: 500;
  }
  
  .delivery-boy-animation {
    position: relative;
    height: 200px;
    margin-top: 40px;
    background: linear-gradient(to right, #f5f7fa, #c3cfe2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .delivery-route {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
  }
  
  .route-point {
    width: 20px;
    height: 20px;
    background-color: #ddd;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .route-point.active {
    background: linear-gradient(135deg, var(--accent-color), #e84393);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(253, 121, 168, 0.4);
  }
  
  .route-point.completed {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  }
  
  .route-point::after {
    content: attr(data-status);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--gray-color);
    white-space: nowrap;
    font-weight: 500;
  }
  
  .delivery-boy {
    position: absolute;
    bottom: 50px;
    left: 5%;
    z-index: 3;
    transition: left 3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
  }
  
  .delivery-boy img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
  }
  
  .package {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
  }
  
  .package img {
    width: 40px;
    height: auto;
  }
  
  @keyframes float {
    0% {
      transform: translate(-50%, 0px);
    }
    50% {
      transform: translate(-50%, -10px);
    }
    100% {
      transform: translate(-50%, 0px);
    }
  }
  
  .help-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    border-top: 1px solid #eee;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .help-section h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
  }
  
  .help-section p {
    color: var(--gray-color);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Order Items Styles */
  .order-items {
    width: 100%;
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  }
  
  .order-items h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
  }
  
  .order-items h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    );
    border-radius: 2px;
  }
  
  .items-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .item {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  .item-name {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
  }
  
  .item-quantity {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
  }
  
  .item-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
    font-size: 1.1rem;
  }
  
  /* Alert Styles */
  .alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .alert-error {
    background: linear-gradient(135deg, #ff7675, #d63031);
  }
  
  .alert-warning {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
  }
  
  .alert-success {
    background: linear-gradient(135deg, #00b894, #00cec9);
  }
  
  /* Confetti Animation */
  .confetti {
    position: absolute;
    width: 12px;
    height: 12px;
    bottom: 50px;
    animation: confetti-fall 3s ease-out forwards;
    border-radius: 2px;
  }
  
  @keyframes confetti-fall {
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(200px) rotate(360deg);
      opacity: 0;
    }
  }
  
  /* Package Bounce Animation */
  @keyframes bounce {
    0%,
    100% {
      transform: translate(-50%, 0);
    }
    50% {
      transform: translate(-50%, -20px);
    }
  }
  
  /* Loading Spinner */
  .loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .form-group {
      flex-direction: column;
    }
  
    .timeline-steps {
      flex-wrap: wrap;
      gap: 20px;
    }
  
    .timeline-step {
      flex: 0 0 calc(50% - 20px);
      text-align: left;
      display: flex;
      align-items: center;
      gap: 15px;
    }
  
    .timeline-step:not(:last-child)::after {
      display: none;
    }
  
    .step-icon {
      margin: 0;
    }
  
    .step-content {
      flex: 1;
    }
  
    .delivery-route {
      padding: 0 20px;
    }
  
    .route-point::after {
      top: auto;
      bottom: -25px;
    }
  
    .tracking-header h1 {
      font-size: 2.2rem;
    }
  
    .help-section {
      padding: 30px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .timeline-step {
      flex: 0 0 100%;
    }
  
    .order-summary-item {
      flex: 0 0 100%;
    }
  
    .tracking-form {
      padding: 20px;
    }
  
    .btn {
      padding: 10px 20px;
    }
  }
  /* Homepage Specific Styles */
  
  /* Announcement Bar */
  .announcement-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    margin-top: 80px;
  }
  
  .announcement-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .announcement-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-size: 13px;
    transition: var(--transition);
  }
  
  .announcement-links a:hover {
    color: var(--secondary-color);
  }
  
  .announcement-links a i {
    margin-right: 5px;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b3c 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .hero-content {
    flex: 1;
    max-width: 600px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .hero-buttons {
    display: flex;
    gap: 15px;
  }
  
  .btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
  }
  
  .hero-image {
    flex: 1;
    text-align: right;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  /* Trust Badges */
  .trust-badges {
    padding: 30px 0;
    background-color: var(--white);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  }
  
  .trust-badges .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .badge {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .badge img {
    height: 40px;
    width: auto;
  }
  
  .badge span {
    font-weight: 600;
    color: var(--dark-color);
  }
  
  /* Featured Categories */
  .featured-categories {
    padding: 80px 0;
  }
  
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .category-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark-color);
    display: block;
  }
  
  .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .category-image {
    height: 200px;
    overflow: hidden;
  }
  
  .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .category-card:hover .category-image img {
    transform: scale(1.1);
  }
  
  .category-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
  }
  
  .category-card p {
    padding: 0 20px;
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .shop-now {
    display: inline-block;
    padding: 15px 20px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
  }
  
  .category-card:hover .shop-now {
    color: var(--primary-color);
  }
  
  .shop-now i {
    margin-left: 5px;
    transition: var(--transition);
  }
  
  .category-card:hover .shop-now i {
    transform: translateX(5px);
  }
  
  /* Featured Products */
  .featured-products {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
  }
  
  .product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.1);
  }
  
  .quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
  }
  
  .product-card:hover .quick-view {
    bottom: 0;
    opacity: 1;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-category {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
  }
  
  .product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .stars {
    color: var(--warning-color);
    margin-right: 5px;
  }
  
  .rating-count {
    font-size: 13px;
    color: var(--gray-color);
  }
  
  .product-price {
    margin-bottom: 15px;
  }
  
  .original-price {
    font-size: 14px;
    color: var(--gray-color);
    text-decoration: line-through;
    margin-right: 8px;
  }
  
  .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
  }
  
  .add-to-cart:hover {
    background-color: #2980b9;
  }
  
  .view-all {
    text-align: center;
    margin-top: 40px;
  }
  
  /* Why Choose Us */
  .why-choose-us {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .why-choose-us .section-title {
    color: var(--white);
  }
  
  .why-choose-us .section-header p {
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
  }
  
  .feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  .feature-card p {
    opacity: 0.8;
    font-size: 14px;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .testimonial-card {
    min-width: 350px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    scroll-snap-align: start;
  }
  
  .testimonial-content .rating {
    color: var(--warning-color);
    margin-bottom: 20px;
  }
  
  .testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-info h4 {
    margin-bottom: 5px;
  }
  
  .author-info span {
    font-size: 14px;
    color: var(--gray-color);
  }
  
  /* Call to Action */
  .cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url("../images/cta-bg.jpg") no-repeat center center/cover;
    color: var(--white);
    text-align: center;
  }
  
  .cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  /* Brands */
  .brands {
    padding: 60px 0;
  }
  
  .brands-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }
  
  .brands-slider img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
  }
  
  .brands-slider img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }
  
  /* Footer */
  .footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
  }
  
  .footer-col p {
    opacity: 0.8;
    margin-bottom: 20px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
  }
  
  .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
  }
  
  .contact-info i {
    width: 20px;
    color: var(--secondary-color);
  }
  
  .footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--secondary-color);
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .hero .container {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-content {
      max-width: 100%;
      margin-bottom: 40px;
    }
  
    .hero-buttons {
      justify-content: center;
    }
  
    .hero-image {
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .announcement-bar .container {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  
    .announcement-links a {
      margin: 0 10px;
    }
  
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      gap: 10px;
    }
  
    .btn {
      width: 100%;
    }
  
    .testimonial-card {
      min-width: 280px;
    }
  
    .cta-buttons {
      flex-direction: column;
    }
  
    .brands-slider {
      justify-content: center;
    }
  
    .brands-slider img {
      height: 30px;
    }
  }
  
  @media (max-width: 576px) {
    .categories-grid,
    .products-grid,
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-links {
      justify-content: center;
    }
  }
  
  @media (max-width: 800px) and (min-width: 799px) {
    .announcement-bar .container {
      /* flex-direction: column;
            gap: 10px;
            text-align: center; */
      margin-top: 50px;
    }
  }
  
  /* Global Styles */
  :root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --gray-color: #95a5a6;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
  }
  
  /* Navigation Bar */
  .navbar {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .logo span {
    color: var(--secondary-color);
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 30px;
  }
  
  .nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-links a:hover {
    color: var(--secondary-color);
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  #cart-btn {
    position: relative;
  }
  
  .cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
  }
  
  .hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
  }
  
  .mobile-menu.active {
    left: 0;
  }
  
  .mobile-menu ul {
    list-style: none;
    padding: 20px;
  }
  
  .mobile-menu ul li {
    margin-bottom: 15px;
  }
  
  .mobile-menu ul li a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
  }
  
  .mobile-menu ul li a:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
  }
  
  /* Form Styles */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-color);
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
  }
  
  .form-row {
    display: flex;
    gap: 15px;
  }
  
  .form-row .form-group {
    flex: 1;
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow-y: auto;
  }
  
  .modal-content {
    background-color: var(--white);
    margin: 50px auto;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    animation: modalFadeIn 0.3s ease;
    position: relative;
  }
  
  .modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .close-modal {
    font-size: 1.8rem;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .close-modal:hover {
    color: var(--dark-color);
    transform: rotate(90deg);
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-footer {
    padding: 20px;
    border-top: 1px solid var(--light-color);
    text-align: center;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .hamburger {
      display: block;
    }
  
    .section-title h2 {
      font-size: 2rem;
    }
  
    .form-row {
      flex-direction: column;
      gap: 0;
    }
  }
  
  @media (max-width: 800px) and (min-width: 799px) {
    .announcement-bar .container {
      /* flex-direction: column;
            gap: 10px;
            text-align: center; */
      margin-top: 50px;
    }
  }
  
  @media (max-width: 800px) and (min-width: 799px) {
    .announcement-bar .container {
      /* flex-direction: column;
            gap: 10px;
            text-align: center; */
      margin-top: 50px;
    }
  }
  
  @media (max-width: 600px) and (min-width: 599px) {
    .announcement-bar .container {
      /* flex-direction: column;
            gap: 10px;
            text-align: center; */
      margin-top: 50px;
      width: 100%;
    }
  }
  /* Global Styles */
  :root {
    --primary-color: #6c5ce7;
    --primary-dark: #5549c9;
    --secondary-color: #00cec9;
    --accent-color: #fd79a8;
    --light-color: #f8f9fa;
    --dark-color: #2d3436;
    --gray-color: #636e72;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #ff7675;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f0f2f5;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .btn-yellow {
    background: #fcb812 !important;
    color: var(--white);
  }
  
  .btn-yellow {
    background: #fcb812 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    );
    margin: 0 auto;
    border-radius: 2px;
  }
  
  /* Order Tracking Styles */
  .order-tracking {
    padding: 80px 0;
    background-color: #f0f2f5;
    min-height: calc(100vh - 80px);
  }
  
  .tracking-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .tracking-header h1 {
    font-size: 2.8rem;

    margin-bottom: 15px;
  }
  
  .tracking-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .tracking-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto 40px;
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  
  .tracking-form:hover {
    transform: translateY(-5px);
  }
  
  .form-group {
    display: flex;
    gap: 15px;
  }
  
  .form-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e1e5eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
  }
  
  .tracking-results {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    max-width: 1000px;
    margin: 0 auto;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .tracking-results.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .order-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
  }
  
  .order-summary-item {
    flex: 1;
    min-width: 200px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .order-summary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .order-summary-item h4 {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .order-summary-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
  }
  
  .order-summary-item .status {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
  }
  
  .status-ordered {
    background-color: #fff4e6;
    color: #fd9644;
  }
  
  .status-processed {
    background-color: #e3f2fd;
    color: #2196f3;
  }
  
  .status-shipped {
    background-color: #e0f7fa;
    color: #00bcd4;
  }
  
  .status-out-for-delivery {
    background-color: #fff8e1;
    color: #ffc107;
  }
  
  .status-delivered {
    background-color: #e8f5e9;
    color: #4caf50;
  }
  
  .tracking-timeline {
    position: relative;
    padding: 20px 0 40px;
    margin-bottom: 40px;
  }
  
  .timeline-progress {
    height: 6px;
    background-color: #eee;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: 3px;
  }
  
  .timeline-progress-bar {
    height: 100%;
    background: linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    );
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 0;
  }
  
  .timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  
  .timeline-step {
    text-align: center;
    position: relative;
    flex: 1;
  }
  
  .timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: #eee;
    z-index: -1;
  }
  
  .timeline-step.completed:not(:last-child)::after {
    background: linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    );
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--gray-color);
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-step.completed .step-icon {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    color: var(--white);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  }
  
  .timeline-step.active .step-icon {
    background: linear-gradient(135deg, var(--accent-color), #e84393);
    color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(253, 121, 168, 0.4);
  }
  
  .step-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .step-date {
    font-size: 0.8rem;
    color: var(--gray-color);
    font-weight: 500;
  }
  
  .delivery-boy-animation {
    position: relative;
    height: 200px;
    margin-top: 40px;
    background: linear-gradient(to right, #f5f7fa, #c3cfe2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .delivery-route {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
  }
  
  .route-point {
    width: 20px;
    height: 20px;
    background-color: #ddd;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .route-point.active {
    background: linear-gradient(135deg, var(--accent-color), #e84393);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(253, 121, 168, 0.4);
  }
  
  .route-point.completed {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  }
  
  .route-point::after {
    content: attr(data-status);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--gray-color);
    white-space: nowrap;
    font-weight: 500;
  }
  
  /* CSS Delivery Boy */
  .delivery-boy {
    position: absolute;
    bottom: 50px;
    left: 5%;
    z-index: 3;
    transition: left 3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .delivery-boy-css {
    position: relative;
    width: 80px;
    height: 60px;
  }
  
  /* Bike */
  .bike {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 30px;
  }
  
  .wheel {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #333;
    border: 3px solid #666;
    bottom: 0;
    animation: wheel-spin 1s linear infinite;
  }
  
  .wheel-back {
    left: 5px;
  }
  
  .wheel-front {
    right: 5px;
  }
  
  @keyframes wheel-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .frame {
    position: absolute;
    width: 60px;
    height: 4px;
    background: #444;
    bottom: 10px;
    left: 10px;
    transform: rotate(-5deg);
  }
  
  .handlebar {
    position: absolute;
    width: 10px;
    height: 15px;
    background: #444;
    bottom: 14px;
    right: 10px;
    transform: rotate(-15deg);
  }
  
  /* Person */
  .person {
    position: absolute;
    bottom: 15px;
    left: 20px;
  }
  
  .head {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #ffb142;
    border-radius: 50%;
    bottom: 30px;
    left: 10px;
    z-index: 2;
  }
  
  .helmet {
    position: absolute;
    width: 22px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50% 50% 0 0;
    bottom: 36px;
    left: 8px;
    z-index: 1;
  }
  
  .face {
    position: absolute;
    width: 10px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    bottom: 5px;
    left: 4px;
  }
  
  .body {
    position: absolute;
    width: 20px;
    height: 25px;
    background: var(--secondary-color);
    border-radius: 5px 5px 0 0;
    bottom: 10px;
    left: 9px;
  }
  
  .arm {
    position: absolute;
    width: 15px;
    height: 4px;
    background: #ffb142;
    border-radius: 2px;
  }
  
  .arm-left {
    transform: rotate(30deg);
    bottom: 25px;
    left: 0;
  }
  
  .arm-right {
    transform: rotate(-20deg);
    bottom: 25px;
    right: -5px;
  }
  
  .leg {
    position: absolute;
    width: 15px;
    height: 4px;
    background: #2d3436;
    border-radius: 2px;
  }
  
  .leg-left {
    transform: rotate(45deg);
    bottom: 10px;
    left: 5px;
  }
  
  .leg-right {
    transform: rotate(-45deg);
    bottom: 10px;
    right: -5px;
  }
  
  /* Package */
  .package-container {
    position: absolute;
    top: -15px;
    left: 30px;
    animation: float 2s ease-in-out infinite;
  }
  
  .package-box {
    width: 20px;
    height: 20px;
    background: #e17055;
    border: 2px solid #d63031;
    border-radius: 3px;
    position: relative;
  }
  
  .package-box::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: #d63031;
    top: 9px;
    left: 0;
  }
  
  .package-box::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    background: #d63031;
    top: 0;
    left: 9px;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  /* Order Items Styles */
  .order-items {
    width: 100%;
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  }
  
  .order-items h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
  }
  
  .order-items h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    );
    border-radius: 2px;
  }
  
  .items-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .item {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  .item-name {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
  }
  
  .item-quantity {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
  }
  
  .item-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
    font-size: 1.1rem;
  }
  
  /* Alert Styles */
  .alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .alert-error {
    background: linear-gradient(135deg, #ff7675, #d63031);
  }
  
  .alert-warning {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
  }
  
  .alert-success {
    background: linear-gradient(135deg, #00b894, #00cec9);
  }
  
  /* Confetti Animation */
  .confetti {
    position: absolute;
    width: 12px;
    height: 12px;
    bottom: 50px;
    animation: confetti-fall 3s ease-out forwards;
    border-radius: 2px;
  }
  
  @keyframes confetti-fall {
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(200px) rotate(360deg);
      opacity: 0;
    }
  }
  
  /* Package Bounce Animation */
  @keyframes bounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  /* Loading Spinner */
  .loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .form-group {
      flex-direction: column;
    }
  
    .timeline-steps {
      flex-wrap: wrap;
      gap: 20px;
    }
  
    .timeline-step {
      flex: 0 0 calc(50% - 20px);
      text-align: left;
      display: flex;
      align-items: center;
      gap: 15px;
    }
  
    .timeline-step:not(:last-child)::after {
      display: none;
    }
  
    .step-icon {
      margin: 0;
    }
  
    .step-content {
      flex: 1;
    }
  
    .delivery-route {
      padding: 0 20px;
    }
  
    .route-point::after {
      top: auto;
      bottom: -25px;
    }
  
    .tracking-header h1 {
      font-size: 2.2rem;
    }
  
    .help-section {
      padding: 30px 20px;
    }
  
    .delivery-boy-css {
      transform: scale(0.8);
    }
  }
  
  @media (max-width: 480px) {
    .timeline-step {
      flex: 0 0 100%;
    }
  
    .order-summary-item {
      flex: 0 0 100%;
    }
  
    .tracking-form {
      padding: 20px;
    }
  
    .btn {
      padding: 10px 20px;
    }
  
    .delivery-boy-css {
      transform: scale(0.7);
    }
  }
  