.kit-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    padding-top: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

.kit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    min-height: 40px;
}

.kit-header h3 {
    align-self: flex-end;
    margin: 0;
}

.remove-kit {
    background: none;
    color: #666;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    font-family: inherit;
}

.remove-kit:hover {
    color: #ff4444;
    background: none;
}

#addKitBtn {
    background: none;
    color: #2c5282;
    padding: 0px 0;
    text-align: center;
    text-decoration: underline;
    display: inline-block;
    font-size: 16px;
    margin: 0px 0;
    margin-bottom: 10px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-weight: normal;
}

#addKitBtn:hover {
    color: #1a365d;
    background: none;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.color-preview {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 2px solid #ddd;
    cursor: pointer;
}

.color-preview.selected {
    border-color: #4CAF50;
}

[id^="black-"] { background-color: #000000; }
[id^="navy-"] { background-color: #000080; }
[id^="red-"] { background-color: #FF0000; }

#holePunchOption {
    margin: 20px 0;
}

#orderNowBtn {
    background-color: #2c5282;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px 0;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

#orderNowBtn:hover {
    background-color: #1a365d;
}

#orderNowBtn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.checkout-content {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.price-order-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
}

.price-shipping-container {
    display: flex;
    flex-direction: column;
}

#totalPrice {
    font-size: 1.2em;
}






