    /* Custom styles for the landing page */
    .hero-section {
        background: url('../images/winter_fishing_bg.jpg') no-repeat center center/cover;
        color: white;
        padding: 110px 0 100px 0; /* Increased top padding to shift content down */
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5); /* Dark overlay */
        z-index: 1;
    }
    .hero-content {
        position: relative;
        z-index: 2;
    }
    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 100px;
    }
    .hero-content p {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .product-showcase {
        padding: 60px 0;
        background-color: #f8f9fa;
    }
    .product-showcase img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .video-section {
        padding: 60px 0;
        background-color: #e9ecef;
    }
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .order-form-section {
        padding: 60px 0;
        background-color: #ffffff;
    }
    .form-container {
        background: white;
        padding: 25px 30px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        max-width: 600px; /* Wider for better layout */
        margin: 0 auto;
    }

    /* Existing styles, adapted for Bootstrap where necessary */
    .radio-line {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        padding: 8px;
        border: 1px solid transparent; /* Bootstrap's form-check handles this better */
        border-radius: 6px;
    }
    .shipping-options label {
        padding: 0;
        border: none;
        margin: 0;
        cursor: pointer;
        font-weight: normal;
    }
    .shipping-options input[type="radio"] {
        margin-right: 10px;
        cursor: pointer;
    }
    .radio-line:has(input[type="radio"]:checked) {
        background-color: #e9f5ff;
        border-color: #e9f5ff;
    }
    input[type="radio"]:checked + label {
        font-weight: bold;
    }
    #smartpost-country-selector, #location-selector-group, #pickup-payment-selector {
        display: none;
        padding-left: 20px;
        border-left: 2px solid #007bff;
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .search-results-list {
        list-style: none;
        padding: 0;
        margin: 0;
        border: 1px solid #ccc;
        border-top: none;
        max-height: 200px;
        overflow-y: auto;
        position: absolute;
        width: calc(100% - 40px); /* Adjusted for form-container padding */
        background-color: white;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .search-results-list li {
        padding: 10px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
    }
    .search-results-list li:hover {
        background-color: #f0f0f0;
    }
    .search-results-list li:last-child {
        border-bottom: none;
    }
    .search-results-list.hidden {
        display: none;
    }
    .total-price-display {
        text-align: right;
        font-size: 22px;
        font-weight: bold;
        margin-top: 20px;
        color: #2c3e50;
    }
    .search-icon {
      position: absolute;
      right: 10px; /* Adjust as needed */
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none; /* Make sure it doesn't interfere with input clicks */
      color: #888;
      font-size: 18px; /* Make the icon a bit larger */
    }
    #terminal-search-input {
      padding-right: 35px; /* Adjust based on icon size + padding */
    }
    
    footer {
        background-color: #343a40;
        color: white;
        padding: 30px 0;
        text-align: center;
    }